Wdm2NotifyDlg.cpp
上传用户:shebeicn
上传日期:2007-01-04
资源大小:1029k
文件大小:6k
源码类别:

驱动编程

开发平台:

Visual C++

  1. // Wdm2NotifyDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Wdm2Notify.h"
  5. #include "Wdm2NotifyDlg.h"
  6. #include "objbase.h"
  7. #include "initguid.h"
  8. #include "....GUIDs.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CAboutDlg dialog used for App About
  16. class CAboutDlg : public CDialog
  17. {
  18. public:
  19. CAboutDlg();
  20. // Dialog Data
  21. //{{AFX_DATA(CAboutDlg)
  22. enum { IDD = IDD_ABOUTBOX };
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CAboutDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. //{{AFX_MSG(CAboutDlg)
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  36. {
  37. //{{AFX_DATA_INIT(CAboutDlg)
  38. //}}AFX_DATA_INIT
  39. }
  40. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CDialog::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CAboutDlg)
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  47. //{{AFX_MSG_MAP(CAboutDlg)
  48. // No message handlers
  49. //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CWdm2NotifyDlg dialog
  53. CWdm2NotifyDlg::CWdm2NotifyDlg(CWnd* pParent /*=NULL*/)
  54. : CDialog(CWdm2NotifyDlg::IDD, pParent)
  55. {
  56. //{{AFX_DATA_INIT(CWdm2NotifyDlg)
  57. // NOTE: the ClassWizard will add member initialization here
  58. //}}AFX_DATA_INIT
  59. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. WdmNotificationHandle = NULL;
  62. }
  63. void CWdm2NotifyDlg::DoDataExchange(CDataExchange* pDX)
  64. {
  65. CDialog::DoDataExchange(pDX);
  66. //{{AFX_DATA_MAP(CWdm2NotifyDlg)
  67. // NOTE: the ClassWizard will add DDX and DDV calls here
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CWdm2NotifyDlg, CDialog)
  71. //{{AFX_MSG_MAP(CWdm2NotifyDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. //}}AFX_MSG_MAP
  76. ON_WM_DEVICECHANGE()
  77. END_MESSAGE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CWdm2NotifyDlg message handlers
  80. BOOL CWdm2NotifyDlg::OnInitDialog()
  81. {
  82. CDialog::OnInitDialog();
  83. // Add "About..." menu item to system menu.
  84. // IDM_ABOUTBOX must be in the system command range.
  85. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  86. ASSERT(IDM_ABOUTBOX < 0xF000);
  87. CMenu* pSysMenu = GetSystemMenu(FALSE);
  88. if (pSysMenu != NULL)
  89. {
  90. CString strAboutMenu;
  91. strAboutMenu.LoadString(IDS_ABOUTBOX);
  92. if (!strAboutMenu.IsEmpty())
  93. {
  94. pSysMenu->AppendMenu(MF_SEPARATOR);
  95. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  96. }
  97. }
  98. // Set the icon for this dialog.  The framework does this automatically
  99. //  when the application's main window is not a dialog
  100. SetIcon(m_hIcon, TRUE); // Set big icon
  101. SetIcon(m_hIcon, FALSE); // Set small icon
  102. // TODO: Add extra initialization here
  103. // Register for Wdm2 device interface changes
  104. DEV_BROADCAST_DEVICEINTERFACE dbch;
  105. dbch.dbcc_size = sizeof(dbch);
  106. dbch.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE;
  107. dbch.dbcc_classguid = WDM2_GUID;
  108. dbch.dbcc_name[0] = '';
  109. WdmNotificationHandle = RegisterDeviceNotification( GetSafeHwnd(), &dbch, DEVICE_NOTIFY_WINDOW_HANDLE);
  110. if( WdmNotificationHandle==NULL)
  111. GetDlgItem(IDC_STATUS)->SetWindowText("Cannot register for Wdm2 class device notification");
  112. return TRUE;  // return TRUE  unless you set the focus to a control
  113. }
  114. void CWdm2NotifyDlg::OnSysCommand(UINT nID, LPARAM lParam)
  115. {
  116. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  117. {
  118. CAboutDlg dlgAbout;
  119. dlgAbout.DoModal();
  120. }
  121. else
  122. {
  123. CDialog::OnSysCommand(nID, lParam);
  124. }
  125. }
  126. // If you add a minimize button to your dialog, you will need the code below
  127. //  to draw the icon.  For MFC applications using the document/view model,
  128. //  this is automatically done for you by the framework.
  129. void CWdm2NotifyDlg::OnPaint() 
  130. {
  131. if (IsIconic())
  132. {
  133. CPaintDC dc(this); // device context for painting
  134. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  135. // Center icon in client rectangle
  136. int cxIcon = GetSystemMetrics(SM_CXICON);
  137. int cyIcon = GetSystemMetrics(SM_CYICON);
  138. CRect rect;
  139. GetClientRect(&rect);
  140. int x = (rect.Width() - cxIcon + 1) / 2;
  141. int y = (rect.Height() - cyIcon + 1) / 2;
  142. // Draw the icon
  143. dc.DrawIcon(x, y, m_hIcon);
  144. }
  145. else
  146. {
  147. CDialog::OnPaint();
  148. }
  149. }
  150. // The system calls this to obtain the cursor to display while the user drags
  151. //  the minimized window.
  152. HCURSOR CWdm2NotifyDlg::OnQueryDragIcon()
  153. {
  154. return (HCURSOR) m_hIcon;
  155. }
  156. /////////////////////////////////////////////////////////////////////////////
  157. BOOL CWdm2NotifyDlg::DestroyWindow() 
  158. {
  159. if( WdmNotificationHandle!=NULL)
  160. {
  161. UnregisterDeviceNotification(WdmNotificationHandle);
  162. WdmNotificationHandle = NULL;
  163. }
  164. return CDialog::DestroyWindow();
  165. }
  166. BOOL CWdm2NotifyDlg::OnDeviceChange( UINT nEventType, DWORD dwData )
  167. {
  168. CString Msg = "duh";
  169. switch( nEventType)
  170. {
  171. case DBT_CONFIGCHANGECANCELED:
  172. Msg.Format("DBT_CONFIGCHANGECANCELED");
  173. break;
  174. case DBT_CONFIGCHANGED:
  175. Msg.Format("DBT_CONFIGCHANGED");
  176. break;
  177. case DBT_CUSTOMEVENT:
  178. Msg.Format("DBT_CUSTOMEVENT");
  179. break;
  180. case DBT_DEVICEARRIVAL:
  181. Msg.Format("DBT_DEVICEARRIVAL");
  182. break;
  183. case DBT_DEVICEQUERYREMOVE:
  184. Msg.Format("DBT_DEVICEQUERYREMOVE");
  185. break;
  186. case DBT_DEVICEQUERYREMOVEFAILED:
  187. Msg.Format("DBT_DEVICEQUERYREMOVEFAILED");
  188. break;
  189. case DBT_DEVICEREMOVEPENDING:
  190. Msg.Format("DBT_DEVICEREMOVEPENDING");
  191. break;
  192. case DBT_DEVICEREMOVECOMPLETE:
  193. Msg.Format("DBT_DEVICEREMOVECOMPLETE");
  194. break;
  195. case DBT_DEVICETYPESPECIFIC:
  196. Msg.Format("DBT_DEVICETYPESPECIFIC");
  197. break;
  198. case DBT_QUERYCHANGECONFIG:
  199. Msg.Format("DBT_QUERYCHANGECONFIG");
  200. break;
  201. case DBT_DEVNODES_CHANGED:
  202. Msg.Format("DBT_DEVNODES_CHANGED");
  203. break;
  204. case DBT_USERDEFINED:
  205. Msg.Format("DBT_USERDEFINED");
  206. break;
  207. default:
  208. Msg.Format("Event type %d",nEventType);
  209. }
  210. PDEV_BROADCAST_DEVICEINTERFACE pdbch = (PDEV_BROADCAST_DEVICEINTERFACE)dwData;
  211. if( pdbch!=NULL && pdbch->dbcc_devicetype==DBT_DEVTYP_DEVICEINTERFACE)
  212. {
  213. CString Msg2;
  214. Msg2.Format("%s: %s",Msg,pdbch->dbcc_name);
  215. Msg = Msg2;
  216. }
  217. CListBox* EventList = (CListBox*)GetDlgItem(IDC_EVENT_LIST);
  218. EventList->AddString(Msg);
  219. return TRUE; // or BROADCAST_QUERY_DENY to deny a query remove
  220. }