ColrButnDlg.cpp
上传用户:ledshipin
上传日期:2022-07-26
资源大小:29k
文件大小:6k
源码类别:

按钮控件

开发平台:

Visual C++

  1. // ColrButnDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ColrButn.h"
  5. #include "ColrButnDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CColrButnDlg dialog
  50. CColrButnDlg::CColrButnDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CColrButnDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CColrButnDlg)
  54. m_nColor = 0;
  55. m_bRed = FALSE;
  56. m_bGreen = FALSE;
  57. m_bBlue = FALSE;
  58. //}}AFX_DATA_INIT
  59. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. }
  62. void CColrButnDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CColrButnDlg)
  66. DDX_Radio(pDX, IDC_RADIOCLR, m_nColor);
  67. DDX_Check(pDX, IDC_CHECKRED, m_bRed);
  68. DDX_Check(pDX, IDC_CHECKGREEN, m_bGreen);
  69. DDX_Check(pDX, IDC_CHECKBLUE, m_bBlue);
  70. //}}AFX_DATA_MAP
  71. }
  72. BEGIN_MESSAGE_MAP(CColrButnDlg, CDialog)
  73. //{{AFX_MSG_MAP(CColrButnDlg)
  74. ON_WM_SYSCOMMAND()
  75. ON_WM_PAINT()
  76. ON_WM_QUERYDRAGICON()
  77. ON_BN_CLICKED(IDC_RADIOBLK, OnRadioblk)
  78. ON_BN_CLICKED(IDC_RADIOCLR, OnRadioclr)
  79. ON_BN_CLICKED(IDC_BUTTONAPPLY, OnButtonapply)
  80. ON_WM_DRAWITEM()
  81. //}}AFX_MSG_MAP
  82. END_MESSAGE_MAP()
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CColrButnDlg message handlers
  85. BOOL CColrButnDlg::OnInitDialog()
  86. {
  87. CDialog::OnInitDialog();
  88. // Add "About..." menu item to system menu.
  89. // IDM_ABOUTBOX must be in the system command range.
  90. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  91. ASSERT(IDM_ABOUTBOX < 0xF000);
  92. CMenu* pSysMenu = GetSystemMenu(FALSE);
  93. if (pSysMenu != NULL)
  94. {
  95. CString strAboutMenu;
  96. strAboutMenu.LoadString(IDS_ABOUTBOX);
  97. if (!strAboutMenu.IsEmpty())
  98. {
  99. pSysMenu->AppendMenu(MF_SEPARATOR);
  100. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  101. }
  102. }
  103. // Set the icon for this dialog.  The framework does this automatically
  104. //  when the application's main window is not a dialog
  105. SetIcon(m_hIcon, TRUE); // Set big icon
  106. SetIcon(m_hIcon, FALSE); // Set small icon
  107. // TODO: Add extra initialization here
  108. return TRUE;  // return TRUE  unless you set the focus to a control
  109. }
  110. void CColrButnDlg::OnSysCommand(UINT nID, LPARAM lParam)
  111. {
  112. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  113. {
  114. CAboutDlg dlgAbout;
  115. dlgAbout.DoModal();
  116. }
  117. else
  118. {
  119. CDialog::OnSysCommand(nID, lParam);
  120. }
  121. }
  122. // If you add a minimize button to your dialog, you will need the code below
  123. //  to draw the icon.  For MFC applications using the document/view model,
  124. //  this is automatically done for you by the framework.
  125. void CColrButnDlg::OnPaint() 
  126. {
  127. if (IsIconic())
  128. {
  129. CPaintDC dc(this); // device context for painting
  130. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  131. // Center icon in client rectangle
  132. int cxIcon = GetSystemMetrics(SM_CXICON);
  133. int cyIcon = GetSystemMetrics(SM_CYICON);
  134. CRect rect;
  135. GetClientRect(&rect);
  136. int x = (rect.Width() - cxIcon + 1) / 2;
  137. int y = (rect.Height() - cyIcon + 1) / 2;
  138. // Draw the icon
  139. dc.DrawIcon(x, y, m_hIcon);
  140. }
  141. else
  142. {
  143. CDialog::OnPaint();
  144. }
  145. }
  146. // The system calls this to obtain the cursor to display while the user drags
  147. //  the minimized window.
  148. HCURSOR CColrButnDlg::OnQueryDragIcon()
  149. {
  150. return (HCURSOR) m_hIcon;
  151. }
  152. void CColrButnDlg::OnRadioblk() 
  153. {
  154. // TODO: Add your control notification handler code here
  155. CWnd*pWndButn;
  156. pWndButn=GetDlgItem(IDC_CHECKRED);
  157. pWndButn->EnableWindow(FALSE);
  158. pWndButn=GetDlgItem(IDC_CHECKGREEN);
  159. pWndButn->EnableWindow(FALSE);
  160. pWndButn=GetDlgItem(IDC_CHECKBLUE);
  161. pWndButn->EnableWindow(FALSE);
  162. }
  163. void CColrButnDlg::OnRadioclr() 
  164. {
  165. // TODO: Add your control notification handler code here
  166. CWnd*pWndButn;
  167. pWndButn=GetDlgItem(IDC_CHECKRED);
  168. pWndButn->EnableWindow();
  169. pWndButn=GetDlgItem(IDC_CHECKGREEN);
  170. pWndButn->EnableWindow();
  171. pWndButn=GetDlgItem(IDC_CHECKBLUE);
  172. pWndButn->EnableWindow();
  173. }
  174. void CColrButnDlg::OnButtonapply() 
  175. {
  176. // TODO: Add your control notification handler code here
  177. CWnd*pWndButn=GetDlgItem(IDC_BUTNDRAW);
  178. pWndButn->Invalidate();
  179. pWndButn->UpdateWindow();
  180. }
  181. void CColrButnDlg::OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct) 
  182. {
  183. // TODO: Add your message handler code here and/or call default
  184. UpdateData();
  185. COLORREF clrButn;
  186. if(m_nColor==0)
  187. clrButn=RGB(m_bRed?255:0,m_bGreen?255:0,m_bBlue?255:0);
  188. else
  189. clrButn=RGB(0,0,0);
  190. CDC dc;
  191. dc.Attach(lpDrawItemStruct->hDC);
  192. if(nIDCtl==IDC_BUTNDRAW)
  193. {
  194. CWnd*pWndButn=GetDlgItem(IDC_BUTNDRAW);
  195. CRect rectButn;
  196. pWndButn->GetClientRect(&rectButn);
  197. dc.FillSolidRect(&rectButn,clrButn);
  198. }
  199. dc.Detach();
  200. CDialog::OnDrawItem(nIDCtl, lpDrawItemStruct);
  201. }