TrayIconPosition.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:3k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #ifndef __TRAYICONPOSITION_H_
  20. #define __TRAYICONPOSITION_H_
  21. #include <TIME.H>
  22. #include <commctrl.h>
  23. #include <shellapi.h>
  24. class CTrayIconPosition  
  25. {
  26. public:
  27. typedef enum Precision { Default=0,Low,Medium,High };
  28. typedef enum TrackType { UseBothTechniquesDirectPrefered, 
  29.  UseBothTechniquesVisualScanPrefered,
  30.  UseDirectOnly,
  31.  UseVisualScanOnly};
  32. //Second tracking method: it detects a tray icon scaning tray area pixel by pixel
  33. void InitializePositionTracking(HWND a_hwndOfIconOwner, int a_iIconID);
  34. BOOL GetTrayIconPosition(POINT& a_ptPoint, TrackType a_eTrackType = UseBothTechniquesDirectPrefered, Precision a_ePrec = Default);
  35. void RestoreTrayIcon(HICON a_hIcon);
  36. //Those functions are for use with second tracking method - will cache tracking results
  37. void Invalidate();
  38. void SetPrecisionTimeOuts(int iLowSec, int iMedSec, int iHighSec);
  39. void SetDefaultPrecision(Precision newPrecision) { m_prDefaultPrecision = newPrecision; };
  40. Precision GetDefaultPrecision(void) { return m_prDefaultPrecision; };
  41. CTrayIconPosition();
  42. virtual ~CTrayIconPosition();
  43. protected:
  44. HICON m_hIconTemp;
  45. RECT m_rtRectangleOfTheTray;
  46. Precision m_prDefaultPrecision;
  47. time_t m_tLastUpdate;
  48. POINT m_ptPosition;
  49. int m_iTrayIconID;
  50. HWND m_hWndOfIconOwner;
  51. int m_iPrecisions[3];  //This is table of time outs in seconds of low,med and high precision modes.
  52. OSVERSIONINFO m_osVer;
  53. //Tracking method: attaches to Tray process and reads data directly, is fast and reliable but will fail if user uses non standard tray software
  54. static BOOL FindOutPositionOfIconDirectly(const HWND a_hWndOwner, const int a_iButtonID, RECT& a_rcIcon);
  55. BOOL FindOutPositionOfIcon(HICON icon);
  56. inline BOOL CheckIfColorIsBlackOrNearBlack(COLORREF crColor);
  57. BOOL GetTrayIconPositionVisualScan(POINT& a_ptPoint, Precision a_ePrec);
  58. static RECT GetTrayWndRect();
  59. static HWND  GetTrayNotifyWnd(BOOL a_bSeekForEmbedToolbar);
  60. static BOOL CALLBACK FindTrayWnd(HWND hwnd, LPARAM lParam);
  61. static BOOL CALLBACK FindToolBarInTrayWnd(HWND hwnd, LPARAM lParam);
  62. };
  63. #endif