root/DraftSendDlg.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CDraftSendDlg
  2. DoDataExchange
  3. BEGIN_MESSAGE_MAP

/*
 * Copyright (C) 2002-2003 chik, s.hiranaka
 * For license terms, see the file COPYING in this directory.
 */

// DraftSendDlg.cpp : インプリメンテーション ファイル
//

#include "stdafx.h"
#include "pochy.h"
#include "DraftSendDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDraftSendDlg ダイアログ


CDraftSendDlg::CDraftSendDlg(CWnd* pParent /*=NULL*/)
        : CDialog(CDraftSendDlg::IDD, pParent)
{
        //{{AFX_DATA_INIT(CDraftSendDlg)
                // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
        //}}AFX_DATA_INIT
}


void CDraftSendDlg::DoDataExchange(CDataExchange* pDX)
{
        CDialog::DoDataExchange(pDX);
        //{{AFX_DATA_MAP(CDraftSendDlg)
        DDX_Control(pDX, IDC_DRAFT_SEND_STATUS, m_status);
        DDX_Control(pDX, IDC_DRAFT_SEND_PROGRESS, m_progress);
        //}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDraftSendDlg, CDialog)
        //{{AFX_MSG_MAP(CDraftSendDlg)
                // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
        //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDraftSendDlg メッセージ ハンドラ

void CDraftSendDlg::PostNcDestroy() 
{
        // TODO: この位置に固有の処理を追加するか、または基本クラスを呼び出してください
        delete this;    
        CDialog::PostNcDestroy();
}

/* [<][>][^][v][top][bottom][index][help] */