TestClndDlg.cpp
上传用户:shlb123
上传日期:2007-01-01
资源大小:73k
文件大小:5k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // TestClndDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TestClnd.h"
  5. #include "TestClndDlg.h"
  6. #include "datecal.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CTestClndDlg dialog
  51. CTestClndDlg::CTestClndDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CTestClndDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CTestClndDlg)
  55. m_sDate = _T("");
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDI_BUTDATE);
  59. }
  60. void CTestClndDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CTestClndDlg)
  64. DDX_Control(pDX, IDC_BUTTON, m_button);
  65. DDX_Text(pDX, IDC_DATE, m_sDate);
  66. DDV_MaxChars(pDX, m_sDate, 10);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CTestClndDlg, CDialog)
  70. //{{AFX_MSG_MAP(CTestClndDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_BN_CLICKED(IDC_BUTTON, OnButton)
  75. ON_BN_DOUBLECLICKED(IDC_BUTTON, OnDoubleclickedButton)
  76. //}}AFX_MSG_MAP
  77. END_MESSAGE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CTestClndDlg message handlers
  80. BOOL CTestClndDlg::OnInitDialog()
  81. {
  82. CDialog::OnInitDialog();
  83. // Add "About..." menu item to system menu.
  84. // IDM_ABOUTBOX must be in the system command range.
  85. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  86. ASSERT(IDM_ABOUTBOX < 0xF000);
  87. CMenu* pSysMenu = GetSystemMenu(FALSE);
  88. if (pSysMenu != NULL)
  89. {
  90. CString strAboutMenu;
  91. strAboutMenu.LoadString(IDS_ABOUTBOX);
  92. if (!strAboutMenu.IsEmpty())
  93. {
  94. pSysMenu->AppendMenu(MF_SEPARATOR);
  95. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  96. }
  97. }
  98. // Set the icon for this dialog.  The framework does this automatically
  99. //  when the application's main window is not a dialog
  100. SetIcon(m_hIcon, TRUE); // Set big icon
  101. SetIcon(m_hIcon, FALSE); // Set small icon
  102. // set icon for ctrlButton
  103. m_button.ModifyStyle(0, BS_ICON);
  104. m_button.SetIcon(m_hIcon);
  105. return TRUE;  // return TRUE  unless you set the focus to a control
  106. }
  107. void CTestClndDlg::OnSysCommand(UINT nID, LPARAM lParam)
  108. {
  109. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  110. {
  111. CAboutDlg dlgAbout;
  112. dlgAbout.DoModal();
  113. }
  114. else
  115. {
  116. CDialog::OnSysCommand(nID, lParam);
  117. }
  118. }
  119. // If you add a minimize button to your dialog, you will need the code below
  120. //  to draw the icon.  For MFC applications using the document/view model,
  121. //  this is automatically done for you by the framework.
  122. void CTestClndDlg::OnPaint() 
  123. {
  124. if (IsIconic())
  125. {
  126. CPaintDC dc(this); // device context for painting
  127. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  128. // Center icon in client rectangle
  129. int cxIcon = GetSystemMetrics(SM_CXICON);
  130. int cyIcon = GetSystemMetrics(SM_CYICON);
  131. CRect rect;
  132. GetClientRect(&rect);
  133. int x = (rect.Width() - cxIcon + 1) / 2;
  134. int y = (rect.Height() - cyIcon + 1) / 2;
  135. // Draw the icon
  136. dc.DrawIcon(x, y, m_hIcon);
  137. }
  138. else
  139. {
  140. CDialog::OnPaint();
  141. }
  142. }
  143. // The system calls this to obtain the cursor to display while the user drags
  144. //  the minimized window.
  145. HCURSOR CTestClndDlg::OnQueryDragIcon()
  146. {
  147. return (HCURSOR) m_hIcon;
  148. }
  149. void CTestClndDlg::OnButton() 
  150. {
  151. // TODO: Add your control notification handler code here
  152. CDateCal Calendar;
  153. // Kill Focus in edit ctrl,so retrieve 
  154. //the text associated with a control 
  155. GetDlgItemText(IDC_DATE, m_sDate);
  156. //set date in calendar control
  157. if((Calendar.m_nYear = 
  158. (short)_ttoi((LPCTSTR)m_sDate.Mid(6,4))) > 2100 ||
  159. Calendar.m_nYear <1900) {
  160. AfxMessageBox("Error Year");
  161. return;
  162. }
  163. if( (Calendar.m_nMonth = 
  164. (short)_ttoi((LPCTSTR)m_sDate.Left(2))) > 12 ||
  165. Calendar.m_nMonth < 1) {
  166. AfxMessageBox("Error month");
  167. return;
  168. }
  169. if( (Calendar.m_nDay = 
  170. (short)_ttoi((LPCTSTR)m_sDate.Mid(3,2))) > 31 ||
  171. Calendar.m_nDay < 1) {
  172. AfxMessageBox("Error day");
  173. return;
  174. }
  175. if(Calendar.DoModal() != IDOK)
  176. return;
  177. //Set Focus in edit ctrl, so set date in edit control.
  178.  m_sDate.Format("%02d/%02d/%0004d",Calendar.m_nMonth, 
  179. Calendar.m_nDay, Calendar.m_nYear);    
  180.  SetDlgItemText(IDC_DATE, (LPCTSTR) m_sDate);
  181. }
  182. void CTestClndDlg::OnDoubleclickedButton() 
  183. {
  184. // TODO: Add your control notification handler code here
  185. OnButton();
  186. }