MSDEVCMDDLG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:6k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // msdevcmdDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "msdevcmd.h"
  5. #include "msdevcmdDlg.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. // CMsdevcmdDlg dialog
  50. CMsdevcmdDlg::CMsdevcmdDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CMsdevcmdDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CMsdevcmdDlg)
  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. m_bmPinned.LoadBitmap(IDB_BM_PINNED);
  59. m_bmNotPinned.LoadBitmap(IDB_BM_NOTPINNED);
  60. }
  61. CMsdevcmdDlg::~CMsdevcmdDlg()
  62. {
  63. }
  64. void CMsdevcmdDlg::DoDataExchange(CDataExchange* pDX)
  65. {
  66. CDialog::DoDataExchange(pDX);
  67. //{{AFX_DATA_MAP(CMsdevcmdDlg)
  68. DDX_Control(pDX, IDC_BTN_PIN, m_ctlBtnPinned);
  69. DDX_Control(pDX, IDC_EDITCMD, m_ctlEditCmd);
  70. //}}AFX_DATA_MAP
  71. }
  72. BEGIN_MESSAGE_MAP(CMsdevcmdDlg, CDialog)
  73. //{{AFX_MSG_MAP(CMsdevcmdDlg)
  74. ON_WM_SYSCOMMAND()
  75. ON_WM_PAINT()
  76. ON_WM_QUERYDRAGICON()
  77. ON_WM_CHAR()
  78. ON_WM_SIZE()
  79. ON_BN_CLICKED(IDC_BTN_PIN, OnBtnPin)
  80. //}}AFX_MSG_MAP
  81. END_MESSAGE_MAP()
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CMsdevcmdDlg message handlers
  84. BOOL CMsdevcmdDlg::OnInitDialog()
  85. {
  86. CDialog::OnInitDialog();
  87. // Add "About..." menu item to system menu.
  88. // IDM_ABOUTBOX must be in the system command range.
  89. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  90. ASSERT(IDM_ABOUTBOX < 0xF000);
  91. CMenu* pSysMenu = GetSystemMenu(FALSE);
  92. if (pSysMenu != NULL)
  93. {
  94. CString strAboutMenu;
  95. strAboutMenu.LoadString(IDS_ABOUTBOX);
  96. if (!strAboutMenu.IsEmpty())
  97. {
  98. pSysMenu->AppendMenu(MF_SEPARATOR);
  99. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  100. }
  101. }
  102. // Set the icon for this dialog.  The framework does this automatically
  103. //  when the application's main window is not a dialog
  104. SetIcon(m_hIcon, TRUE); // Set big icon
  105. SetIcon(m_hIcon, FALSE); // Set small icon
  106. m_fTopMost = FALSE;
  107. m_ctlBtnPinned.SetBitmap(m_bmNotPinned);
  108. m_ctlEditCmd.SetParent(this);
  109. m_ctlEditCmd.LimitText();
  110. return TRUE;  // return TRUE  unless you set the focus to a control
  111. }
  112. void CMsdevcmdDlg::OnSysCommand(UINT nID, LPARAM lParam)
  113. {
  114. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  115. {
  116. CAboutDlg dlgAbout;
  117. dlgAbout.DoModal();
  118. }
  119. else
  120. {
  121. CDialog::OnSysCommand(nID, lParam);
  122. }
  123. }
  124. // If you add a minimize button to your dialog, you will need the code below
  125. //  to draw the icon.  For MFC applications using the document/view model,
  126. //  this is automatically done for you by the framework.
  127. void CMsdevcmdDlg::OnPaint() 
  128. {
  129. if (IsIconic())
  130. {
  131. CPaintDC dc(this); // device context for painting
  132. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  133. // Center icon in client rectangle
  134. int cxIcon = GetSystemMetrics(SM_CXICON);
  135. int cyIcon = GetSystemMetrics(SM_CYICON);
  136. CRect rect;
  137. GetClientRect(&rect);
  138. int x = (rect.Width() - cxIcon + 1) / 2;
  139. int y = (rect.Height() - cyIcon + 1) / 2;
  140. // Draw the icon
  141. dc.DrawIcon(x, y, m_hIcon);
  142. }
  143. else
  144. {
  145. CDialog::OnPaint();
  146. }
  147. }
  148. // The system calls this to obtain the cursor to display while the user drags
  149. //  the minimized window.
  150. HCURSOR CMsdevcmdDlg::OnQueryDragIcon()
  151. {
  152. return (HCURSOR) m_hIcon;
  153. }
  154. void CMsdevcmdDlg::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
  155. {
  156. if (nChar == _T('n'))
  157. {
  158. //process command.
  159. }
  160. CDialog::OnChar(nChar, nRepCnt, nFlags);
  161. }
  162. void CMsdevcmdDlg::OnSize(UINT nType, int cx, int cy) 
  163. {
  164. CRect rect, rectButton;
  165. if (m_ctlBtnPinned.GetSafeHwnd())
  166. {
  167. m_ctlBtnPinned.GetClientRect(rectButton);
  168. if (cx > rectButton.Width() * 3 && cy > rectButton.Height() * 3)
  169. {
  170. CDialog::OnSize(nType, cx, cy);
  171. m_ctlEditCmd.GetClientRect(rect);
  172. rect.top += rectButton.Height() + 5;
  173. m_ctlEditCmd.MoveWindow(rect.left, rect.top, cx, cy - 5 - 2);
  174. }
  175. else
  176. {
  177. GetWindowRect(rect);
  178. if (cy < rectButton.Height() * 3)
  179. rect.bottom = rect.top + rectButton.Height() * 3;
  180. if (cx < rectButton.Width() * 3)
  181. rect.right = rect.left + rectButton.Width() * 3;
  182. MoveWindow(rect);
  183. }
  184. }
  185. }
  186. void CMsdevcmdDlg::Pin(BOOL fPin, BOOL fShow /* = TRUE*/) 
  187. {
  188. if (fPin)
  189. {
  190. SetWindowPos(&wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOREDRAW);
  191. if (fShow)
  192. m_ctlBtnPinned.SetBitmap(m_bmPinned);
  193. }
  194. else
  195. SetWindowPos(&wndNoTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOREDRAW);
  196. if (fShow)
  197. m_ctlBtnPinned.SetBitmap(m_bmNotPinned);
  198. }
  199. m_fTopMost = fPin;
  200. }
  201. void CMsdevcmdDlg::OnBtnPin() 
  202. {
  203. Pin(~m_fTopMost);
  204. }