TaskBarDemoDlg.cpp
上传用户:sdpcwz
上传日期:2009-12-14
资源大小:1237k
文件大小:5k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // TaskBarDemoDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TaskBarDemo.h"
  5. #include "TaskBarDemoDlg.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. // CTaskBarDemoDlg dialog
  50. CTaskBarDemoDlg::CTaskBarDemoDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CTaskBarDemoDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CTaskBarDemoDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. //初始化变量
  59. m_bCreated = FALSE;
  60. m_nIndex = 0;
  61. }
  62. void CTaskBarDemoDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CTaskBarDemoDlg)
  66. // NOTE: the ClassWizard will add DDX and DDV calls here
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CTaskBarDemoDlg, CDialog)
  70. //{{AFX_MSG_MAP(CTaskBarDemoDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_BN_CLICKED(IDC_ADD_MFC, OnAddMfc)
  75. ON_BN_CLICKED(IDC_ADD_LOGO, OnAddLogo)
  76. ON_BN_CLICKED(IDC_REMOVE, OnRemove)
  77. ON_WM_SIZE()
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CTaskBarDemoDlg message handlers
  82. BOOL CTaskBarDemoDlg::OnInitDialog()
  83. {
  84. CDialog::OnInitDialog();
  85. // Add "About..." menu item to system menu.
  86. // IDM_ABOUTBOX must be in the system command range.
  87. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  88. ASSERT(IDM_ABOUTBOX < 0xF000);
  89. CMenu* pSysMenu = GetSystemMenu(FALSE);
  90. if (pSysMenu != NULL)
  91. {
  92. CString strAboutMenu;
  93. strAboutMenu.LoadString(IDS_ABOUTBOX);
  94. if (!strAboutMenu.IsEmpty())
  95. {
  96. pSysMenu->AppendMenu(MF_SEPARATOR);
  97. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  98. }
  99. }
  100. // Set the icon for this dialog.  The framework does this automatically
  101. //  when the application's main window is not a dialog
  102. SetIcon(m_hIcon, TRUE); // Set big icon
  103. SetIcon(m_hIcon, FALSE); // Set small icon
  104. // TODO: Add extra initialization here
  105. //创建任务栏
  106. m_bCreated = TRUE;
  107. CRect rect;
  108. GetClientRect(&rect);
  109. m_wndSwitcher.DoCreate(this, 0, rect.bottom-25, rect.Width());
  110. //增加一个MFC图标的按钮
  111. m_wndSwitcher.AddButton("MFC", m_hIcon);
  112. m_nIndex ++;
  113. return TRUE;  // return TRUE  unless you set the focus to a control
  114. }
  115. void CTaskBarDemoDlg::OnSysCommand(UINT nID, LPARAM lParam)
  116. {
  117. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  118. {
  119. CAboutDlg dlgAbout;
  120. dlgAbout.DoModal();
  121. }
  122. else
  123. {
  124. CDialog::OnSysCommand(nID, lParam);
  125. }
  126. }
  127. // If you add a minimize button to your dialog, you will need the code below
  128. //  to draw the icon.  For MFC applications using the document/view model,
  129. //  this is automatically done for you by the framework.
  130. void CTaskBarDemoDlg::OnPaint() 
  131. {
  132. if (IsIconic())
  133. {
  134. CPaintDC dc(this); // device context for painting
  135. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  136. // Center icon in client rectangle
  137. int cxIcon = GetSystemMetrics(SM_CXICON);
  138. int cyIcon = GetSystemMetrics(SM_CYICON);
  139. CRect rect;
  140. GetClientRect(&rect);
  141. int x = (rect.Width() - cxIcon + 1) / 2;
  142. int y = (rect.Height() - cyIcon + 1) / 2;
  143. // Draw the icon
  144. dc.DrawIcon(x, y, m_hIcon);
  145. }
  146. else
  147. {
  148. CDialog::OnPaint();
  149. }
  150. }
  151. // The system calls this to obtain the cursor to display while the user drags
  152. //  the minimized window.
  153. HCURSOR CTaskBarDemoDlg::OnQueryDragIcon()
  154. {
  155. return (HCURSOR) m_hIcon;
  156. }
  157. //增加MFC图标的按钮
  158. void CTaskBarDemoDlg::OnAddMfc() 
  159. {
  160. m_nIndex++;
  161. BOOL ret = m_wndSwitcher.AddButton("MFC", m_hIcon);
  162. }
  163. //增加Windows Logo图标的按钮
  164. void CTaskBarDemoDlg::OnAddLogo() 
  165. {
  166. m_nIndex++;
  167. BOOL ret = m_wndSwitcher.AddButton("Windows Logo", LoadIcon(NULL, IDI_WINLOGO));
  168. }
  169. //删除最后一个按钮
  170. void CTaskBarDemoDlg::OnRemove() 
  171. {
  172. if(m_nIndex==0)
  173. return;
  174. m_nIndex--;
  175. BOOL ret = m_wndSwitcher.RemoveButton(m_nIndex);
  176. }
  177. void CTaskBarDemoDlg::OnSize(UINT nType, int cx, int cy) 
  178. {
  179. CDialog::OnSize(nType, cx, cy);
  180. if (m_bCreated == TRUE)
  181. m_wndSwitcher.SetWindowPos(NULL, 0, cy-25, cx, 25, SWP_NOZORDER|SWP_NOCOPYBITS);
  182. }