home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / sswitchxp152.exe / source / SpeedswitchXP / TrayIconManager.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-14  |  1.0 KB  |  34 lines

  1. /*
  2.    SpeedswitchXP V1.5
  3.    Copyright(c) 2002-2006 Christian Diefer
  4.  
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License version 2 as 
  7.    published by the Free Software Foundation.
  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18.  
  19. #ifndef __TRAYICONMANAGER_H
  20. #define __TRAYICONMANAGER_H
  21.  
  22. extern HWND glb_hWnd;
  23. extern TOptions options;
  24.  
  25. class TTrayIconManager {
  26. public:
  27.   HICON createIcon( bool upperStatus, int upperValue, bool lowerStatus, int lowerValue );
  28.  
  29. private:
  30.   void createTempIcon( int temp, int where, BYTE* and );
  31. };
  32.  
  33. #endif
  34.