AutoCloseDlg.cpp
上传用户:zhuoli121
上传日期:2007-01-13
资源大小:43k
文件大小:11k
源码类别:

Shell编程

开发平台:

WINDOWS

  1. // AutoCloseDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "AutoClose.h"
  5. #include "AutoCloseDlg.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. // CAutoCloseDlg dialog
  50. CAutoCloseDlg::CAutoCloseDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CAutoCloseDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CAutoCloseDlg)
  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. void CAutoCloseDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CAutoCloseDlg)
  63. //}}AFX_DATA_MAP
  64. }
  65. BEGIN_MESSAGE_MAP(CAutoCloseDlg, CDialog)
  66. //{{AFX_MSG_MAP(CAutoCloseDlg)
  67. ON_WM_SYSCOMMAND()
  68. ON_WM_PAINT()
  69. ON_WM_QUERYDRAGICON()
  70. ON_WM_TIMER()
  71. ON_CBN_SELCHANGE(IDC_HOUR, OnSelchangeHour)
  72. ON_CBN_SELCHANGE(IDC_MIN, OnSelchangeMin)
  73. ON_BN_CLICKED(IDC_BUTTON2, OnStart)
  74. ON_WM_DESTROY()
  75. ON_COMMAND(ID_ABOUT, OnAbout)
  76. ON_COMMAND(ID_STOP, OnStop)
  77. ON_COMMAND(ID_DISPLAY, OnDisplay)
  78. ON_COMMAND(ID_QUIT, OnQuit)
  79. ON_WM_LBUTTONDOWN()
  80. //}}AFX_MSG_MAP
  81. END_MESSAGE_MAP()
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CAutoCloseDlg message handlers
  84. BOOL CAutoCloseDlg::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. // TODO: Add extra initialization here
  107. SetWindowPos(&CWnd::wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
  108. CenterWindow(GetDesktopWindow());    //让窗口处于屏幕中间
  109. SetWindowText("MFC自动关机程序!");
  110.     SetTimer(10,100,NULL);              //调用OnTimer函数,并使之没隔一秒发送一次 WM_TIMER 消息
  111.     CComboBox *hour;
  112. CComboBox *min;
  113. hour=(CComboBox*)GetDlgItem(IDC_HOUR);
  114. min=(CComboBox*)GetDlgItem(IDC_MIN);
  115. ////////////添加24小时///////////////////
  116. for(int i=0;i<=23;i++)         
  117. {
  118. if(i<10)
  119. {
  120.     CString s;
  121.     s.Format("0%d",i);
  122. hour->AddString(s);
  123. }
  124. else
  125. {
  126. CString ss;
  127. ss.Format("%d",i);
  128.     hour->AddString(ss);
  129. }
  130. }
  131.     /////////////添加60分钟////////////////
  132. for(i=0;i<=59;i++)
  133. {
  134. if(i<10)
  135. {
  136.     CString s;
  137.     s.Format("0%d",i);
  138. min->AddString(s);
  139. }
  140. else
  141. {
  142. CString ss;
  143. ss.Format("%d",i);
  144.     min->AddString(ss);
  145. }
  146. }
  147. return TRUE;  // return TRUE  unless you set the focus to a control
  148. }
  149. void CAutoCloseDlg::OnSysCommand(UINT nID, LPARAM lParam)
  150. {
  151. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  152. {
  153. CAboutDlg dlgAbout;
  154. dlgAbout.DoModal();
  155. }
  156. else
  157. {
  158. CDialog::OnSysCommand(nID, lParam);
  159. }
  160. }
  161. // If you add a minimize button to your dialog, you will need the code below
  162. //  to draw the icon.  For MFC applications using the document/view model,
  163. //  this is automatically done for you by the framework.
  164. void CAutoCloseDlg::OnPaint() 
  165. {
  166. if (IsIconic())
  167. {
  168. CPaintDC dc(this); // device context for painting
  169. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  170. // Center icon in client rectangle
  171. int cxIcon = GetSystemMetrics(SM_CXICON);
  172. int cyIcon = GetSystemMetrics(SM_CYICON);
  173. CRect rect;
  174. GetClientRect(&rect);
  175. int x = (rect.Width() - cxIcon + 1) / 2;
  176. int y = (rect.Height() - cyIcon + 1) / 2;
  177. // Draw the icon
  178. dc.DrawIcon(x, y, m_hIcon);
  179. }
  180. else
  181. {
  182. CDialog::OnPaint();
  183. }
  184. }
  185. // The system calls this to obtain the cursor to display while the user drags
  186. //  the minimized window.
  187. HCURSOR CAutoCloseDlg::OnQueryDragIcon()
  188. {
  189. return (HCURSOR) m_hIcon;
  190. }
  191. void CAutoCloseDlg::OnTimer(UINT nIDEvent) 
  192. {
  193. CTime t=CTime::GetCurrentTime();   //取出当前时间
  194.     int y=t.GetYear();
  195. int d=t.GetDay();
  196. int m=t.GetMonth();
  197. int h=t.GetHour();
  198. int min=t.GetMinute();
  199. int s=t.GetSecond();
  200. CString yy,dd,mm,hh,mins,ss,total;
  201. yy.Format("%d",y);
  202. dd.Format("%d",d);
  203. mm.Format("%d",m);
  204. if(h<10)
  205.     hh.Format("0%d",h);
  206. else
  207. hh.Format("%d",h);
  208. if(min<10)
  209.         mins.Format("0%d",min);
  210. else
  211.     mins.Format("%d",min);
  212. if(s<10)
  213.     ss.Format("0%d",s);
  214. else
  215. ss.Format("%d",s);
  216.     total=yy+"-"+mm+"-"+dd+"  "+hh+":"+mins+":"+ss;
  217. CStatic *displaytime;
  218. displaytime=(CStatic*)GetDlgItem(IDC_STATIC);
  219. displaytime->SetWindowText(total);                     //在静态文本框中显示出当前时间
  220. /////////////////准备关机//////////////////////
  221. if(begin && close_hour.CompareNoCase(hh)==0 && close_min.CompareNoCase(mins)==0)
  222. {
  223. KillTimer(10);
  224. /////////首先声明3个全局变量///////////BOOL fResult;TOKEN_PRIVILEGES tkp;HANDLE hToken;
  225.         if (!OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) 
  226. {
  227.     MessageBox("OpenProcessToken failed!");
  228. }
  229.     LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME,&tkp.Privileges[0].Luid); //获得本地机唯一的标识
  230.     tkp.PrivilegeCount = 1;  
  231.     tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 
  232.         AdjustTokenPrivileges(hToken, FALSE, &tkp, 0,(PTOKEN_PRIVILEGES) NULL, 0); //调整获得的权限
  233.     
  234.     if (GetLastError() != ERROR_SUCCESS) 
  235. {
  236.             MessageBox("AdjustTokenPrivileges enable failed!");
  237. }
  238.     fResult =InitiateSystemShutdown( 
  239.              NULL,                                  // 要关的计算机用户名
  240.              "由于系统不稳定,WINDOWS将在上面的时间内关机,请做好保存工作!",  // 显示的消息
  241.              10,                                    // 关机所需的时间
  242.              TRUE,                                 // ask user to close apps 
  243.              TRUE);                               //设为TRUE为重起,设为FALSE为关机
  244.     if(!fResult) 
  245.              MessageBox("InitiateSystemShutdown failed."); 
  246.     tkp.Privileges[0].Attributes = 0; 
  247.         AdjustTokenPrivileges(hToken, FALSE, &tkp, 0,(PTOKEN_PRIVILEGES) NULL, 0); 
  248.     if (GetLastError() != ERROR_SUCCESS) 
  249. {
  250.              MessageBox("AdjustTokenPrivileges disable failed."); 
  251.     ExitWindowsEx(EWX_SHUTDOWN,0);
  252. }
  253.     CDialog::OnTimer(nIDEvent);
  254. }
  255. /////////////////准备关机//////////////////////
  256. //////////////取出 Combo Box 中的值////////////////////
  257. void CAutoCloseDlg::OnSelchangeHour() 
  258. {
  259.     CComboBox *hour;
  260. hour=(CComboBox*)GetDlgItem(IDC_HOUR);
  261. hour->GetWindowText(close_hour);        
  262. }
  263. void CAutoCloseDlg::OnSelchangeMin() 
  264. {
  265. CComboBox *min;
  266. min=(CComboBox*)GetDlgItem(IDC_MIN);
  267. min->GetWindowText(close_min);
  268. }
  269. //////////////取出 Combo Box 中的值////////////////////
  270. void CAutoCloseDlg::OnStart() 
  271. {
  272.     begin=true;
  273.     ShowWindow(SW_HIDE);
  274. //////////////////定义系统托盘///////////////////////////
  275. m_tnid.cbSize=sizeof(NOTIFYICONDATA);//设置结构大小//
  276. m_tnid.hWnd=this->m_hWnd;//设置图标对应的窗口
  277.     m_tnid.uFlags=NIF_MESSAGE|NIF_ICON|NIF_TIP;//图标属性
  278.     m_tnid.uCallbackMessage=MYWM_NOTIFYICON;//应用程序定义的回调消息ID
  279. ////////////设置NOTIFYICONDATA结构///////////
  280. CString szToolTip;
  281.     szToolTip=_T("MFC自动关机程序");
  282.     _tcscpy(m_tnid.szTip, szToolTip);//帮助信息
  283.     m_tnid.uID=IDR_MAINFRAME;//应用程序图标
  284.     HICON hIcon;
  285.     hIcon=AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  286.     m_tnid.hIcon=hIcon;//图标句柄
  287. PNOTIFYICONDATA m_ptnid=&m_tnid;
  288. ::Shell_NotifyIcon(NIM_ADD,m_ptnid);//增加图标到系统盘
  289.     if(hIcon)::DestroyIcon(hIcon);
  290. //////////////////定义系统托盘///////////////////////////
  291. }
  292. ///////////////////处理系统托盘的消息///////////////////////
  293. LRESULT CAutoCloseDlg::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  294. {
  295. switch(message)
  296. {
  297.         case MYWM_NOTIFYICON:
  298.     //如果是用户定义的消息
  299.         if(lParam==WM_LBUTTONDBLCLK)
  300. {
  301.         //鼠标双击时主窗口出现
  302.     AfxGetApp()->m_pMainWnd->ShowWindow(SW_SHOW);
  303. }
  304.         else if(lParam==WM_RBUTTONDOWN)    //鼠标右键单击弹出选单
  305.             CMenu menu;
  306.             menu.LoadMenu(IDR_MENU1); //载入事先定义的选单
  307.             CMenu *pMenu=menu.GetSubMenu(0);
  308.             CPoint pos;
  309.         GetCursorPos(&pos);
  310.             pMenu->TrackPopupMenu(TPM_LEFTALIGN|TPM_RIGHTBUTTON,pos.x,pos.y,AfxGetMainWnd());
  311. }
  312.         break;
  313.         case WM_SYSCOMMAND:
  314.         //如果是系统消息
  315.         if(wParam==SC_MINIMIZE)
  316. {
  317.             //接收到最小化消息时主窗口隐藏
  318.             AfxGetApp()->m_pMainWnd->ShowWindow(SW_HIDE);
  319.             return 0;
  320. }
  321.         break;
  322. }
  323. return CDialog::WindowProc(message, wParam, lParam);
  324. }
  325. ///////////////////处理系统托盘的消息///////////////////////
  326. void CAutoCloseDlg::OnDestroy() 
  327. {
  328. CDialog::OnDestroy();
  329. ::Shell_NotifyIcon(NIM_DELETE,&m_tnid);
  330. }
  331. void CAutoCloseDlg::OnAbout() 
  332. {
  333. MessageBox("闵 尖 :nminjian_ken@21cn.com","MFC自动关机程序");
  334. }
  335. void CAutoCloseDlg::OnStop() 
  336. {
  337. begin=false;
  338. ShowWindow(1);
  339. ::Shell_NotifyIcon(NIM_DELETE,&m_tnid);
  340. }
  341. void CAutoCloseDlg::OnDisplay() 
  342. {
  343. ShowWindow(1);
  344. ::Shell_NotifyIcon(NIM_DELETE,&m_tnid);
  345. }
  346. void CAutoCloseDlg::OnQuit() 
  347. {
  348. PostQuitMessage(0);
  349. }
  350. void CAutoCloseDlg::OnLButtonDown(UINT nFlags, CPoint point) 
  351. {
  352.     CDialog::OnLButtonDown(nFlags, point); 
  353.     // 发送WM_NCLBUTTONDOWN消息 
  354.     // 使Windows认为鼠标在标题条上 
  355.     PostMessage(WM_NCLBUTTONDOWN,HTCAPTION,MAKELPARAM(point.x, point.y)); 
  356. CDialog::OnLButtonDown(nFlags, point);
  357. }