HeartMouseDlg.cpp
上传用户:f12e50
上传日期:2007-01-04
资源大小:21k
文件大小:9k
源码类别:

其他小程序

开发平台:

Visual C++

  1. // HeartMouseDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "HeartMouse.h"
  5. #include "HeartMouseDlg.h"
  6. #include "../heart/heart.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. #define MYTIMEID WM_USER+100
  15. class CAboutDlg : public CDialog
  16. {
  17. public:
  18. CAboutDlg();
  19. // Dialog Data
  20. //{{AFX_DATA(CAboutDlg)
  21. enum { IDD = IDD_ABOUTBOX };
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAboutDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. //{{AFX_MSG(CAboutDlg)
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  35. {
  36. //{{AFX_DATA_INIT(CAboutDlg)
  37. //}}AFX_DATA_INIT
  38. }
  39. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CAboutDlg)
  43. //}}AFX_DATA_MAP
  44. }
  45. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  46. //{{AFX_MSG_MAP(CAboutDlg)
  47. // No message handlers
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CHeartMouseDlg dialog
  52. CHeartMouseDlg::CHeartMouseDlg(CWnd* pParent /*=NULL*/)
  53. : CDialog(CHeartMouseDlg::IDD, pParent)
  54. {
  55. //{{AFX_DATA_INIT(CHeartMouseDlg)
  56. // NOTE: the ClassWizard will add member initialization here
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. for(int i = 0; i < HEARTNUM; i++) ha[i] = NULL;
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. }
  62. void CHeartMouseDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CHeartMouseDlg)
  66. // NOTE: the ClassWizard will add DDX and DDV calls here
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CHeartMouseDlg, CDialog)
  70. //{{AFX_MSG_MAP(CHeartMouseDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_WM_DESTROY()
  75. ON_WM_TIMER()
  76. ON_MESSAGE(WM_MYMOVE, OnMyMove)
  77. ON_MESSAGE(WM_MY_NOTIFY, OnMyNotify)
  78. ON_BN_CLICKED(IDC_HIDE, OnHide)
  79. ON_COMMAND(IDM_SHOW, OnShow)
  80. ON_BN_CLICKED(IDC_LOAD, OnLoad)
  81. ON_COMMAND(IDM_EXIT, OnOK)
  82. //}}AFX_MSG_MAP
  83. END_MESSAGE_MAP()
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CHeartMouseDlg message handlers
  86. BOOL CHeartMouseDlg::OnInitDialog()
  87. {
  88. CDialog::OnInitDialog();
  89. // Add "About..." menu item to system menu.
  90. // IDM_ABOUTBOX must be in the system command range.
  91. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  92. ASSERT(IDM_ABOUTBOX < 0xF000);
  93. CMenu* pSysMenu = GetSystemMenu(FALSE);
  94. if (pSysMenu != NULL)
  95. {
  96. CString strAboutMenu;
  97. strAboutMenu.LoadString(IDS_ABOUTBOX);
  98. if (!strAboutMenu.IsEmpty())
  99. {
  100. pSysMenu->AppendMenu(MF_SEPARATOR);
  101. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  102. }
  103. }
  104. // Set the icon for this dialog.  The framework does this automatically
  105. //  when the application's main window is not a dialog
  106. SetIcon(m_hIcon, TRUE); // Set big icon
  107. SetIcon(m_hIcon, FALSE); // Set small icon
  108. for(int i = 0; i < HEARTNUM; i ++) ha[i] =NULL;
  109. m_hIconbar = LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDI_HEART));
  110. m_hBitmap = NULL;
  111. Start();
  112. // TODO: Add extra initialization here
  113. return TRUE;  // return TRUE  unless you set the focus to a control
  114. }
  115. void CHeartMouseDlg::OnSysCommand(UINT nID, LPARAM lParam)
  116. {
  117. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  118. {
  119. CAboutDlg dlgAbout;
  120. dlgAbout.DoModal();
  121. }
  122. else if (nID == SC_MINIMIZE) {
  123. ShowWindow(SW_HIDE);
  124. } else
  125. {
  126. CDialog::OnSysCommand(nID, lParam);
  127. }
  128. }
  129. // If you add a minimize button to your dialog, you will need the code below
  130. //  to draw the icon.  For MFC applications using the document/view model,
  131. //  this is automatically done for you by the framework.
  132. void CHeartMouseDlg::OnPaint() 
  133. {
  134. if (IsIconic())
  135. {
  136. CPaintDC dc(this); // device context for painting
  137. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  138. // Center icon in client rectangle
  139. int cxIcon = GetSystemMetrics(SM_CXICON);
  140. int cyIcon = GetSystemMetrics(SM_CYICON);
  141. CRect rect;
  142. GetClientRect(&rect);
  143. int x = (rect.Width() - cxIcon + 1) / 2;
  144. int y = (rect.Height() - cyIcon + 1) / 2;
  145. // Draw the icon
  146. dc.DrawIcon(x, y, m_hIcon);
  147. }
  148. else
  149. {
  150. CDialog::OnPaint();
  151. }
  152. }
  153. // The system calls this to obtain the cursor to display while the user drags
  154. //  the minimized window.
  155. HCURSOR CHeartMouseDlg::OnQueryDragIcon()
  156. {
  157. return (HCURSOR) m_hIcon;
  158. }
  159. void CHeartMouseDlg::Start() 
  160. {
  161. // TODO: Add your control notification handler code here
  162. NOTIFYICONDATA nid;
  163. nid.cbSize = sizeof(nid);
  164. nid.hWnd = m_hWnd;
  165. nid.uID = IDI_HEART;
  166. nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP ;
  167. nid.uCallbackMessage = WM_MY_NOTIFY;
  168. nid.hIcon = m_hIconbar;
  169. strcpy(nid.szTip, "Heart Mouse");
  170. Shell_NotifyIcon(NIM_ADD, &nid);
  171. SetTimer(1, 180, NULL);
  172. for (int i = 0; i < POINTNUM; i++) points[i].x = points[i].y = 0;
  173. head = tail = 0;
  174. total = 0;
  175. if (ha[0]) return;
  176. for (i = HEARTNUM - 1; i >=0; i--) {
  177. CRect r;
  178. r.top = r.left = 0;
  179. r.right = (i+2) * 5;
  180. r.bottom = int((i+2) * 4.5);
  181. if (ha[i]) return;
  182. ha[i] = new HeartWindow();
  183. ha[i]->Create(r, m_hBitmap);
  184. }
  185. extern void SetHook();
  186. SetHook();
  187. extern void SetWindowsHandle(HWND);
  188. SetWindowsHandle(m_hWnd);
  189. OnHide();
  190. }
  191. void CHeartMouseDlg::Stop() 
  192. {
  193. // TODO: Add your control notification handler code here
  194. KillTimer(1);
  195. extern void UnHook();
  196. UnHook();
  197. for(int i = 0; i < HEARTNUM; i ++) {
  198. if (ha[i])
  199. {
  200. delete ha[i];
  201. ha[i] = NULL;
  202. }
  203. }
  204. NOTIFYICONDATA nid;
  205. nid.cbSize = sizeof(nid);
  206. nid.hWnd = m_hWnd;
  207. nid.uID = IDI_HEART;
  208. nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP ;
  209. nid.uCallbackMessage = WM_MY_NOTIFY;
  210. nid.hIcon = m_hIconbar;
  211. strcpy(nid.szTip, "Heart Mouse");
  212. Shell_NotifyIcon(NIM_DELETE, &nid);
  213. if(m_hBitmap) ::DeleteObject(m_hBitmap);
  214. m_hBitmap = NULL;
  215. }
  216. void CHeartMouseDlg::OnDestroy() 
  217. {
  218. CDialog::OnDestroy();
  219. // TODO: Add your message handler code here
  220. }
  221. void CHeartMouseDlg::OnTimer(UINT nIDEvent) 
  222. {
  223. // TODO: Add your message handler code here and/or call default
  224. if (nIDEvent != 1) return;
  225. total = head - tail;
  226. if (total == 0) return;
  227. if (total < 0) total += POINTNUM;
  228. int mi = max(total/(HEARTNUM + 2),1);
  229. int movepos = POINTNUM;
  230. for ( int i = 0; i < HEARTNUM; i++) {
  231. int ind = head - (total - mi) * (i + 1) / (HEARTNUM + 1) ;
  232. while (ind < 0 ) ind += POINTNUM;
  233. if (head > tail) {
  234. if (ind < tail) ind = tail + 1;
  235. if (ind > head) ind = head;
  236. if (movepos > ind - tail) movepos = ind - tail;
  237. } else {
  238. if (ind < tail && ind > head) ind = head;
  239. int j = ind - tail;
  240. if ( j < 0) j += POINTNUM;
  241. if (movepos > j) movepos = j;
  242. }
  243. int px = points[ind].x;
  244. int py = points[ind].y;
  245. ha[i]->SetWindowPos(NULL,px +5 + HEARTNUM - i , py + 5 + HEARTNUM - i, 0, 0, SWP_NOSIZE|SWP_NOZORDER|SWP_SHOWWINDOW|SWP_NOACTIVATE);
  246. if ( i == HEARTNUM -1) tail = ind;
  247. }
  248. CDialog::OnTimer(nIDEvent);
  249. }
  250. void CHeartMouseDlg::OnMyMove(WPARAM w, LPARAM l)
  251. {
  252. head ++;
  253. head = head % POINTNUM;
  254. if (head == tail) {
  255. tail ++;
  256. tail = tail % POINTNUM;
  257. }
  258. points[head].x = w;
  259. points[head].y = l;
  260. }
  261. void CHeartMouseDlg::OnOK() 
  262. {
  263. // TODO: Add extra validation here
  264. Stop();
  265. CDialog::OnOK();
  266. }
  267. void CHeartMouseDlg::OnMyNotify(WPARAM w, LPARAM l)
  268. {
  269. switch (l) {
  270. case WM_LBUTTONDBLCLK:
  271. ShowWindow(SW_SHOW);
  272. break;
  273. case WM_RBUTTONDOWN:
  274. {
  275. CMenu MyMenu;
  276. MyMenu.LoadMenu(IDR_MENU1);
  277. POINT curPos;
  278. GetCursorPos(& curPos);
  279. MyMenu.GetSubMenu(0)->TrackPopupMenu(TPM_LEFTALIGN|TPM_LEFTBUTTON, curPos.x, curPos.y, this);
  280. break;
  281. }
  282. default:
  283. return;
  284. }
  285. }
  286. void CHeartMouseDlg::OnHide() 
  287. {
  288. // TODO: Add your control notification handler code here
  289. ShowWindow(SW_HIDE);
  290. }
  291. void CHeartMouseDlg::OnShow() 
  292. {
  293. // TODO: Add your control notification handler code here
  294. ShowWindow(SW_SHOW);
  295. }
  296. void CHeartMouseDlg::OnLoad() 
  297. {
  298. // TODO: Add your control notification handler code here
  299. CFileDialog f(TRUE, "bmp", "*.bmp", OFN_FILEMUSTEXIST | OFN_HIDEREADONLY | OFN_LONGNAMES | OFN_PATHMUSTEXIST ,
  300. NULL, this);
  301. f.DoModal();
  302. CString s = f.GetFileName();
  303. for(int i = 0; i < HEARTNUM; i ++) {
  304. if (ha[i])
  305. {
  306. delete ha[i];
  307. ha[i] = NULL;
  308. }
  309. }
  310. m_hBitmap = (HBITMAP)::LoadImage(NULL, s, IMAGE_BITMAP, 0,0, LR_DEFAULTSIZE | LR_LOADFROMFILE | LR_CREATEDIBSECTION);
  311. for (i = HEARTNUM - 1; i >=0; i--) {
  312. CRect r;
  313. r.top = r.left = 0;
  314. r.right = (i+2) * 5;
  315. r.bottom = int((i+2) * 4.5);
  316. if (ha[i]) return;
  317. ha[i] = new HeartWindow();
  318. ha[i]->Create(r, m_hBitmap);
  319. }
  320. }
  321. void CHeartMouseDlg::OnCancel() 
  322. {
  323. // TODO: Add extra cleanup here
  324. Stop();
  325. CDialog::OnCancel();
  326. }