GnomeTheme.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // GnomeTheme.h: interface for the CGnomeTheme class.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_GNOMETHEME_H__7001C63A_D7DB_40D4_93B5_2FFE7FD846DA__INCLUDED_)
  21. #define AFX_GNOMETHEME_H__7001C63A_D7DB_40D4_93B5_2FFE7FD846DA__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #define GNOMECOLOR_3DFACE RGB(230, 230, 230)
  26. #define GNOMECOLOR_3DSHADOW RGB(153, 153, 153)
  27. #define GNOMECOLOR_BTNHIGHLIGHT RGB(255, 255, 255)
  28. class CGnomeTheme : public CXTPDefaultTheme
  29. {
  30. public:
  31. CGnomeTheme();
  32. virtual ~CGnomeTheme();
  33. virtual void FillStatusBar(CDC* pDC, CXTPStatusBar* pBar);
  34. virtual void FillDockBar(CDC* pDC, CXTPDockBar* pBar);
  35. virtual void DrawStatusBarGripper(CDC* pDC, CRect rcClient);
  36. virtual void DrawStatusBarPane(CDC* pDC, CRect& rc, DWORD dwStyle, CString str);
  37. virtual void FillCommandBarEntry(CDC* pDC, CXTPCommandBar* pBar);
  38. CSize DrawCommandBarGripper(CDC* pDC, CXTPCommandBar* pBar, BOOL bDraw);
  39. CSize DrawCommandBarSeparator(CDC* pDC, CXTPCommandBar* pBar, CXTPControl* pControl, BOOL bDraw);
  40. void DrawRectangle(CDC* pDC, CRect rc, BOOL bSelected, BOOL bPressed, BOOL bEnabled, BOOL bChecked, BOOL bPopuped, BOOL bToolBar, XTPBarPosition barPosition = xtpBarPopup);
  41. void AdjustExcludeRect(CRect& rc, CXTPControl* pControl);
  42. };
  43. #endif // !defined(AFX_GNOMETHEME_H__7001C63A_D7DB_40D4_93B5_2FFE7FD846DA__INCLUDED_)