smileydg.cpp
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:7k
源码类别:

DNA

开发平台:

Visual C++

  1. // SmileyDg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "Smiley.h"
  14. #include "SmileyDg.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CAboutDlg dialog used for App About
  22. class CAboutDlg : public CDialog
  23. {
  24. public:
  25. CAboutDlg();
  26. // Dialog Data
  27. //{{AFX_DATA(CAboutDlg)
  28. enum { IDD = IDD_ABOUTBOX };
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CAboutDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. //{{AFX_MSG(CAboutDlg)
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  42. {
  43. //{{AFX_DATA_INIT(CAboutDlg)
  44. //}}AFX_DATA_INIT
  45. }
  46. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  47. {
  48. CDialog::DoDataExchange(pDX);
  49. //{{AFX_DATA_MAP(CAboutDlg)
  50. //}}AFX_DATA_MAP
  51. }
  52. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  53. //{{AFX_MSG_MAP(CAboutDlg)
  54. // No message handlers
  55. //}}AFX_MSG_MAP
  56. END_MESSAGE_MAP()
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CSmileyDlg dialog
  59. CSmileyDlg::CSmileyDlg(CWnd* pParent /*=NULL*/)
  60. : CDialog(CSmileyDlg::IDD, pParent)
  61. {
  62. //{{AFX_DATA_INIT(CSmileyDlg)
  63. // NOTE: the ClassWizard will add member initialization here
  64. //}}AFX_DATA_INIT
  65. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  66. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  67. }
  68. void CSmileyDlg::DoDataExchange(CDataExchange* pDX)
  69. {
  70. CDialog::DoDataExchange(pDX);
  71. //{{AFX_DATA_MAP(CSmileyDlg)
  72. DDX_Control(pDX, IDC_SAD, m_ctlSad);
  73. DDX_Control(pDX, IDC_SMILECTRL1, m_ctlSmile);
  74. //}}AFX_DATA_MAP
  75. }
  76. BEGIN_MESSAGE_MAP(CSmileyDlg, CDialog)
  77. //{{AFX_MSG_MAP(CSmileyDlg)
  78. ON_WM_SYSCOMMAND()
  79. ON_WM_PAINT()
  80. ON_WM_QUERYDRAGICON()
  81. ON_WM_LBUTTONDBLCLK()
  82. ON_CONTROL(BN_CLICKED, IDC_SAD, OnSad)
  83. //}}AFX_MSG_MAP
  84. END_MESSAGE_MAP()
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CSmileyDlg Event Map
  87. BEGIN_EVENTSINK_MAP(CSmileyDlg, CDialog)
  88. ON_EVENT(CSmileyDlg, IDC_SMILECTRL1, DISPID_CLICKIN, OnClickIn, VTS_XPOS_PIXELS VTS_YPOS_PIXELS)
  89. ON_EVENT(CSmileyDlg, IDC_SMILECTRL1, DISPID_CLICKOUT, OnClickOut, VTS_NONE)
  90. END_EVENTSINK_MAP()
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CSmileyDlg message handlers
  93. BOOL CSmileyDlg::OnInitDialog()
  94. {
  95. CDialog::OnInitDialog();
  96. // Add "About..." menu item to system menu.
  97. // IDM_ABOUTBOX must be in the system command range.
  98. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  99. ASSERT(IDM_ABOUTBOX < 0xF000);
  100. CMenu* pSysMenu = GetSystemMenu(FALSE);
  101. CString strAboutMenu;
  102. strAboutMenu.LoadString(IDS_ABOUTBOX);
  103. if (!strAboutMenu.IsEmpty())
  104. {
  105. pSysMenu->AppendMenu(MF_SEPARATOR);
  106. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  107. }
  108. // Set the icon for this dialog.  The framework does this automatically
  109. //  when the application's main window is not a dialog
  110. SetIcon(m_hIcon, TRUE);         // Set big icon
  111. SetIcon(m_hIcon, FALSE);        // Set small icon
  112. // Set the 'Caption' Property in the CSmileCtl OLE Control.  The
  113. // SetWindowText API will take care of this for us.
  114. m_ctlSmile.SetWindowText(_T("Smile!"));
  115. // Set the Value of the Sad Check Button based upon the value of
  116. // the 'Sad' property in the CSmileCtl OLE Control.
  117. m_ctlSad.SetCheck(m_ctlSmile.GetSad());
  118. // Use the Control's BorderStyle stock property to put a border around
  119. // the control using the CWnd::ModifyStyle API.
  120. m_ctlSmile.ModifyStyle(0, WS_BORDER);
  121. return TRUE;  // return TRUE  unless you set the focus to a control
  122. }
  123. void CSmileyDlg::OnSysCommand(UINT nID, LPARAM lParam)
  124. {
  125. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  126. {
  127. CAboutDlg dlgAbout;
  128. dlgAbout.DoModal();
  129. }
  130. else
  131. {
  132. CDialog::OnSysCommand(nID, lParam);
  133. }
  134. }
  135. // If you add a minimize button to your dialog, you will need the code below
  136. //  to draw the icon.  For MFC applications using the document/view model,
  137. //  this is automatically done for you by the framework.
  138. void CSmileyDlg::OnPaint()
  139. {
  140. if (IsIconic())
  141. {
  142. CPaintDC dc(this); // device context for painting
  143. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  144. // Center icon in client rectangle
  145. int cxIcon = GetSystemMetrics(SM_CXICON);
  146. int cyIcon = GetSystemMetrics(SM_CYICON);
  147. CRect rect;
  148. GetClientRect(&rect);
  149. int x = (rect.Width() - cxIcon + 1) / 2;
  150. int y = (rect.Height() - cyIcon + 1) / 2;
  151. // Draw the icon
  152. dc.DrawIcon(x, y, m_hIcon);
  153. }
  154. else
  155. {
  156. CDialog::OnPaint();
  157. }
  158. }
  159. // The system calls this to obtain the cursor to display while the user drags
  160. //  the minimized window.
  161. HCURSOR CSmileyDlg::OnQueryDragIcon()
  162. {
  163. return (HCURSOR) m_hIcon;
  164. }
  165. void CSmileyDlg::OnLButtonDblClk(UINT, CPoint)
  166. {
  167. // Here the Container handles the WM_LBUTTONDBLCLK message where it can
  168. // do its own processing.  In this case, it sets the BackColor and
  169. // ForeColor properties in the control.  This handler is only called
  170. // when double clicks occur OUTSIDE the control.  To handle double
  171. // clicks inside the control, have the control fire the stock DblClk
  172. // event and then process it in the CSmileyDlg EVENTSINK map.
  173. OLE_COLOR backClr = m_ctlSmile.GetBackColor();
  174. OLE_COLOR foreClr = m_ctlSmile.GetForeColor();
  175. // Reverse the Colors!
  176. m_ctlSmile.SetBackColor(foreClr);
  177. m_ctlSmile.SetForeColor(backClr);
  178. }
  179. /////////////////////////////////////////////////////////////////////////////
  180. // CSmileyDlg Command Handlers
  181. void CSmileyDlg::OnSad()
  182. {
  183. m_ctlSmile.SetSad((m_ctlSad.GetCheck() != 0));
  184. }
  185. /////////////////////////////////////////////////////////////////////////////
  186. // CSmileyDlg Event Handlers
  187. // These handlers are called when the user clicks with the mouse inside and
  188. // outside the 'face' on the CSmileyCtl OLE Control.
  189. BOOL CSmileyDlg::OnClickIn(OLE_XPOS_PIXELS, OLE_YPOS_PIXELS)
  190. {
  191. // We don't make use of the X and Y coordinates of the mouse click
  192. // passed to us by the event so we don't declare parameter variables
  193. // for them.
  194. // Call the 'Wink' Method in the CSmileCtl OLE Control
  195. m_ctlSmile.Wink(TRUE);
  196. return TRUE;    // We handled the event.  No need for futher processing
  197. }
  198. BOOL CSmileyDlg::OnClickOut()
  199. {
  200. // Call the 'Wink' Method in the CSmileCtl OLE Control
  201. m_ctlSmile.Wink(FALSE);
  202. return TRUE;    // We handled the event.  No need for futher processing
  203. }