clrzwind.h
上传用户:kittypts
上传日期:2018-02-11
资源大小:241k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2. Windows Live Messenger Plugin Demo
  3. Copyright (C) 2008  Hern醤 Di Pietro
  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 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  14. /*****************************************************************************/
  15. #ifndef CLRZWIND_H
  16. #define CLRZWIND_H
  17. #include <windows.h>
  18. // Message to update base color
  19. //
  20. #define WM_UPDATEBASECOLOR WM_USER+1
  21. // Colorized window class name
  22. //
  23. const WCHAR wszColorizedWndClass[] = L"NKT_COLORIZED_WINDOW_CLASS";
  24. // Interface elements constants
  25. //
  26. const UINT CX_RR_ELLIPSE = 14;
  27. const UINT CY_RR_ELLIPSE = CX_RR_ELLIPSE;
  28. const UINT CX_TEXT_PADDING = 10;
  29. const COLORREF CR_OUTERBORDERCOLOR = RGB(64,64,64);
  30. inline COLORREF CR_INNERBORDERCOLOR (COLORREF c) 
  31. {
  32. return RGB (max(255,GetRValue(c)+0x8000),  
  33. max(255,GetGValue(c)+0x8000),
  34. max(255,GetBValue(c)+0x8000));
  35. }
  36. // Position of color sample pixel in the WLM client area
  37. //
  38. const UINT COLORSAMPLE_X = 70;
  39. const UINT COLORSAMPLE_Y = 3;
  40. // Function Prototypes
  41. //
  42. ATOM RegisterColorizedWndClass();
  43. COLORREF GetClrzBaseColor(HWND hwnd);
  44. void SetClrzBaseColor (HWND hwnd, COLORREF crBase);
  45. LRESULT ColorizedWndProc (HWND, UINT, WPARAM, LPARAM);
  46. #endif //CLRZWIND_H