MySphereButtonDlg.cpp
上传用户:linpin
上传日期:2007-01-01
资源大小:46k
文件大小:9k
源码类别:

按钮控件

开发平台:

Visual C++

  1. // MySphereButtonDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MySphereButton.h"
  5. #include "MySphereButtonDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMySphereButtonDlg dialog
  13. CMySphereButtonDlg::CMySphereButtonDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CMySphereButtonDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CMySphereButtonDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  20. }
  21. void CMySphereButtonDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CMySphereButtonDlg)
  25. // NOTE: the ClassWizard will add DDX and DDV calls here
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CMySphereButtonDlg, CDialog)
  29. //{{AFX_MSG_MAP(CMySphereButtonDlg)
  30. ON_WM_PAINT()
  31. ON_WM_QUERYDRAGICON()
  32. ON_BN_CLICKED(MY_BTN1, OnButton)
  33. ON_BN_CLICKED(MY_BTN2, OnButton)
  34. ON_BN_CLICKED(MY_BTN3, OnButton)
  35. ON_BN_CLICKED(MY_BTN4, OnButton)
  36. ON_BN_CLICKED(MY_BTN5, OnButton)
  37. ON_BN_CLICKED(MY_BTN6, OnButton)
  38. ON_BN_CLICKED(MY_BTN7, OnButton)
  39. ON_BN_CLICKED(MY_BTN8, OnButton)
  40. ON_BN_CLICKED(MY_BTN9, OnButton)
  41. ON_BN_CLICKED(MY_BTN10, OnButton)
  42. ON_BN_CLICKED(MY_BTN11, OnButton)
  43. ON_BN_CLICKED(MY_BTN12, OnButton)
  44. ON_BN_CLICKED(MY_BTN13, OnButton)
  45. ON_BN_CLICKED(MY_BTN14, OnButton)
  46. ON_BN_CLICKED(MY_BTN15, OnButton)
  47. ON_BN_CLICKED(MY_BTN16, OnButton)
  48. ON_BN_CLICKED(MY_BTN17, OnButton)
  49. ON_BN_CLICKED(MY_BTN18, OnButton)
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMySphereButtonDlg message handlers
  54. BOOL CMySphereButtonDlg::OnInitDialog()
  55. {
  56. CDialog::OnInitDialog();
  57. SetIcon(m_hIcon, TRUE); // Set big icon
  58. SetIcon(m_hIcon, FALSE); // Set small icon
  59. // create shapes for button
  60. // make sure that region is in button client coordinates
  61. HRGN r; 
  62. // RECTANGULAR BUTTONS
  63. r = CreateRectRgn(0, 0, 63, 31);
  64. m_Btn1.Create("Btn 1", WS_CHILD | WS_VISIBLE, CPoint(15, 15), r, this, MY_BTN1, RGB(255, 255, 0));
  65. DeleteObject(r);
  66. // ELLIPTIC BUTTON
  67. r = CreateEllipticRgn(0, 0, 63, 31);
  68. m_Btn2.Create("Btn 2", WS_CHILD | WS_VISIBLE, CPoint(95, 15), r, this, MY_BTN2, 2, GetSysColor(COLOR_BTNFACE), RGB(0, 255, 0), RGB(0, 255, 0), GetSysColor(COLOR_BTNFACE)); 
  69. DeleteObject(r);
  70. // HELF_ELLIPSE: create left and right buttons splitting ellipse in half
  71. HRGN rgnR = CreateRectRgn(0, 0, 127, 31);
  72. HRGN rgnE = CreateEllipticRgn(0, 0, 127, 31);
  73. OffsetRgn(rgnR, 63, 0);
  74. CombineRgn(rgnE, rgnE, rgnR, RGN_DIFF);
  75. m_Btn3.Create("  Btn 3", WS_CHILD | WS_VISIBLE, CPoint(175, 15), rgnE, this, MY_BTN3, 2, GetSysColor(COLOR_BTNFACE), RGB(156, 175, 194), RGB(237, 175, 71), GetSysColor(COLOR_BTNFACE)); 
  76. rgnR = CreateRectRgn(0, 0, 127, 31);
  77. rgnE = CreateEllipticRgn(0, 0, 127, 31);
  78. OffsetRgn(rgnR, -63, 0);
  79. CombineRgn(rgnE, rgnE, rgnR, RGN_DIFF);
  80. OffsetRgn(rgnE, -64, 0);
  81. m_Btn4.Create("Btn 4  ", WS_CHILD | WS_VISIBLE | WS_DISABLED, CPoint(175 + 64, 15), rgnE, this, MY_BTN4, 2, GetSysColor(COLOR_BTNFACE), RGB(156, 175, 194), RGB(237, 175, 71), GetSysColor(COLOR_BTNFACE)); 
  82. DeleteObject(rgnE);
  83. DeleteObject(rgnR);
  84. // BUTTONS from text regions
  85. HDC hDC = CreateCompatibleDC(GetDC() -> GetSafeHdc());
  86. HRGN c;
  87. LOGFONT lf;
  88. GetFont() -> GetLogFont(&lf);
  89. lf.lfHeight = -128;
  90. lf.lfWeight = 1000;
  91. HFONT hFont = CreateFontIndirect(&lf);
  92. HFONT hOldFont = (HFONT) SelectObject(hDC, hFont);
  93. c = CreateRectRgn(0, 0, 0, 0);
  94. int mode = SetBkMode(hDC, TRANSPARENT);
  95. BeginPath(hDC);
  96. TextOut(hDC, 0, 0, "$", 1);
  97. EndPath(hDC);
  98. c = PathToRegion(hDC);
  99. SetBkMode(hDC, mode);
  100. m_Btn5.Create("", WS_CHILD | WS_VISIBLE, CPoint(15, 63), c, this, MY_BTN5, RGB(255, 255, 0)); 
  101. mode = SetBkMode(hDC, TRANSPARENT);
  102. BeginPath(hDC);
  103. TextOut(hDC, 0, 0, "@", 1);
  104. EndPath(hDC);
  105. c = PathToRegion(hDC);
  106. SetBkMode(hDC, mode);
  107. m_Btn6.Create("", WS_CHILD | WS_VISIBLE, CPoint(15 + 64, 63), c, this, MY_BTN6, RGB(255, 0, 255)); 
  108. SelectObject(hDC, hOldFont);
  109. DeleteObject(hFont);
  110. DeleteObject(c);
  111. HRGN cr; 
  112. BeginPath(hDC);
  113. MoveToEx(hDC, 0, 0, NULL);
  114. LineTo(hDC, 64, 0);
  115. LineTo(hDC, 64, 16);
  116. LineTo(hDC, 48, 32);
  117. LineTo(hDC, 0, 32);
  118. LineTo(hDC, 0, 0);
  119. EndPath(hDC);
  120. cr = CreateRectRgn(0, 0, 63, 63);
  121. cr = PathToRegion(hDC);
  122. m_Btn7.Create("Save  ", WS_CHILD | WS_VISIBLE, CPoint(15 + 64 + 128, 63), cr, this, MY_BTN7, 1, RGB(254, 247, 211), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE)); 
  123. BeginPath(hDC);
  124. MoveToEx(hDC, 64, 16, NULL);
  125. LineTo(hDC, 64, 32);
  126. LineTo(hDC, 48, 32);
  127. LineTo(hDC, 64, 16);
  128. EndPath(hDC);
  129. cr = PathToRegion(hDC);
  130. m_Btn8.Create("", WS_CHILD | WS_VISIBLE, CPoint(15 + 64 + 128 + 48, 63 + 16), cr, this, MY_BTN8, 1, RGB(247, 211, 254), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE)); 
  131. DeleteObject(cr);
  132. // SIMPLE POLYLINE REGION button
  133. HRGN r1;
  134. HRGN r2;
  135. BeginPath(hDC);
  136. MoveToEx(hDC, 0, 32, NULL);
  137. LineTo(hDC, 48, 32);
  138. LineTo(hDC, 48, 16);
  139. LineTo(hDC, 96, 48);
  140. LineTo(hDC, 48, 80);
  141. LineTo(hDC, 48, 64);
  142. LineTo(hDC, 0, 64);
  143. LineTo(hDC, 0, 32);
  144. EndPath(hDC);
  145. cr = CreateRectRgn(0, 0, 63, 63);
  146. cr = PathToRegion(hDC);
  147. m_Btn9.Create("Btn 9", WS_CHILD | WS_VISIBLE, CPoint(32 + 64 + 96, 63 + 16 + 128), cr, this, MY_BTN9, 2, RGB(250, 207, 194), RGB(255, 0, 0), RGB(255, 0, 0), GetSysColor(COLOR_BTNFACE)); 
  148. DeleteObject(cr);
  149. DeleteObject(hDC);
  150. // COMPLEX region
  151. hDC = CreateCompatibleDC(GetDC() -> GetSafeHdc());
  152. BeginPath(hDC);
  153. MoveToEx(hDC, 31, 15, NULL);
  154. CPoint p[7];
  155. p[ 0] = CPoint(5, 0);
  156. p[ 1] = CPoint(0, 55);
  157. p[ 2] = CPoint(0, 28);
  158. p[ 3] = CPoint(31, 64);
  159. p[ 4] = CPoint(59, 55);
  160. p[ 5] = CPoint(59, 0);
  161. p[ 6] = CPoint(31, 15);
  162. PolyBezier(hDC, &p[0], 7);
  163. EndPath(hDC);
  164. cr = CreateRectRgn(0, 0, 63, 63);
  165. cr = PathToRegion(hDC);
  166. m_Btn10.Create("Btn 10", WS_CHILD | WS_VISIBLE, CPoint(15, 63 + 16 + 64 + 64), cr, this, MY_BTN10, 2, RGB(151, 244, 219), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE)); 
  167. DeleteObject(cr);
  168. DeleteObject(hDC);
  169. // STRECHED BUTTON
  170. c = CreateRectRgn(16, 0, 80, 31);
  171. r1 = CreateEllipticRgn(0, 0, 32, 32);
  172. r2 = CreateEllipticRgn(64, 0, 96, 32);
  173. CombineRgn(c, c, r1, RGN_OR);
  174. CombineRgn(c, c, r2, RGN_OR);
  175. m_Btn11.Create("Btn 11", WS_CHILD | WS_VISIBLE, CPoint(15 + 64, 63 + 32 + 64 + 64), c, this, MY_BTN11, 2, GetSysColor(COLOR_BTNFACE), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE)); 
  176. DeleteObject(c);
  177. DeleteObject(r1);
  178. DeleteObject(r2);
  179. // MERGED BUTTONS
  180. c = CreateRectRgn(8, 0, 55, 31);
  181. r1 = CreateEllipticRgn(48, 8, 15 + 48, 15 + 8);
  182. CombineRgn(c, c, r1, RGN_OR);
  183. m_Btn12.Create("File", WS_CHILD | WS_VISIBLE, CPoint(16, 63 + 32 + 64 + 128), c, this, MY_BTN12, 1, RGB(151, 219, 244), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE)); 
  184. r1 = CreateEllipticRgn(0, 8, 15, 15 + 8);
  185. CombineRgn(c, c, r1, RGN_DIFF);
  186. m_Btn13.Create("Edit", WS_CHILD | WS_VISIBLE, CPoint(16 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN13, 1, RGB(151, 219, 244), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  187. m_Btn14.Create("View", WS_CHILD | WS_VISIBLE, CPoint(16 + 48 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN14, 1, RGB(151, 219, 244), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  188. m_Btn15.Create("Insert",WS_CHILD |WS_VISIBLE, CPoint(16 + 48 + 48 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN15, 1, RGB(151, 219, 244), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  189. m_Btn16.Create("Tools", WS_CHILD |WS_VISIBLE, CPoint(16 + 48 + 48 + 48 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN16, 1, RGB(151, 219, 244), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  190. m_Btn17.Create("Help",  WS_CHILD |WS_VISIBLE, CPoint(16 + 48 + 48 + 48 + 48 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN17, 1, RGB(151, 244, 219), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  191. c = CreateRectRgn(8, 0, 63, 31);
  192. r1 = CreateEllipticRgn(0, 8, 15, 15 + 8);
  193. CombineRgn(c, c, r1, RGN_DIFF);
  194. m_Btn18.Create("Exit",  WS_CHILD |WS_VISIBLE, CPoint(16 + 48 + 48 + 48 + 48 + 48 + 48, 63 + 32 + 64 + 128), c, this, MY_BTN18, 1, RGB(244, 151, 219), RGB(211, 247, 254), RGB(211, 247, 254), GetSysColor(COLOR_BTNFACE));
  195. DeleteObject(c);
  196. DeleteObject(r1);
  197. return TRUE;  // return TRUE  unless you set the focus to a control
  198. }
  199. // If you add a minimize button to your dialog, you will need the code below
  200. //  to draw the icon.  For MFC applications using the document/view model,
  201. //  this is automatically done for you by the framework.
  202. void CMySphereButtonDlg::OnPaint() 
  203. {
  204. if (IsIconic())
  205. {
  206. CPaintDC dc(this); // device context for painting
  207. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  208. // Center icon in client rectangle
  209. int cxIcon = GetSystemMetrics(SM_CXICON);
  210. int cyIcon = GetSystemMetrics(SM_CYICON);
  211. CRect rect;
  212. GetClientRect(&rect);
  213. int x = (rect.Width() - cxIcon + 1) / 2;
  214. int y = (rect.Height() - cyIcon + 1) / 2;
  215. // Draw the icon
  216. dc.DrawIcon(x, y, m_hIcon);
  217. }
  218. else
  219. {
  220. CDialog::OnPaint();
  221. }
  222. }
  223. HCURSOR CMySphereButtonDlg::OnQueryDragIcon()
  224. {
  225. return (HCURSOR) m_hIcon;
  226. }
  227. void CMySphereButtonDlg::OnButton() 
  228. {
  229. MessageBeep(0xFFFFFFFF);
  230. }