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

对话框与窗口

开发平台:

Visual C++

  1. // ColorPickerDlg.h : header file
  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_ColorPickerDLG_H__13DCC50F_7B0D_47BC_9FD4_B36DE8D69963__INCLUDED_)
  21. #define AFX_ColorPickerDLG_H__13DCC50F_7B0D_47BC_9FD4_B36DE8D69963__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CColorPickerDlg dialog
  27. class CColorPickerDlg : public CXTResizeDialog
  28. {
  29. // Construction
  30. public:
  31. CColorPickerDlg(CWnd* pParent = NULL);  // standard constructor
  32. // Dialog Data
  33. //{{AFX_DATA(CColorPickerDlg)
  34. enum { IDD = IDD_COLORPICKER_DIALOG };
  35. CXTResizeGroupBox m_gboxButton;
  36. CXTResizeGroupBox m_gboxPopup;
  37. CXTResizeGroupBox m_gboxDialog;
  38. CXTResizeGroupBox m_gboxTheme;
  39. CComboBox   m_comboBox;
  40. CXTColorPicker  m_cpTextColor;
  41. CXTColorPicker  m_cpBackColor;
  42. BOOL    m_bExtended;
  43. BOOL    m_bMoreColors;
  44. BOOL    m_bNoFill;
  45. BOOL    m_3DBorder;
  46. BOOL    m_bDisable;
  47. BOOL    m_bDisplayHex;
  48. BOOL    m_bColorText;
  49. BOOL    m_bShowText;
  50. int m_iTheme;
  51. //}}AFX_DATA
  52. COLORREF m_clrText;
  53. COLORREF m_clrBack;
  54. // ClassWizard generated virtual function overrides
  55. //{{AFX_VIRTUAL(CColorPickerDlg)
  56. protected:
  57. virtual BOOL OnInitDialog();
  58. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  59. //}}AFX_VIRTUAL
  60. // Implementation
  61. protected:
  62. HICON m_hIcon;
  63. // Generated message map functions
  64. //{{AFX_MSG(CColorPickerDlg)
  65. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  66. afx_msg void OnPaint();
  67. afx_msg HCURSOR OnQueryDragIcon();
  68. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  69. afx_msg void OnSelEndOkTextClr();
  70. afx_msg void OnSelEndOkBackClr();
  71. afx_msg void OnChkNofill();
  72. afx_msg void OnChkExtended();
  73. afx_msg void OnChkMorecolors();
  74. afx_msg void OnSetfocusComboDemo();
  75. afx_msg void OnChk3dborder();
  76. afx_msg void OnChkDisplayHex();
  77. afx_msg void OnChkDisable();
  78. afx_msg void OnDestroy();
  79. afx_msg void OnChkNoText();
  80. afx_msg void OnChkColorText();
  81. afx_msg void OnRadioDefault();
  82. afx_msg void OnRadioOfficeXP();
  83. afx_msg void OnRadioOffice2003();
  84. //}}AFX_MSG
  85. DECLARE_MESSAGE_MAP()
  86. };
  87. //{{AFX_INSERT_LOCATION}}
  88. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  89. #endif // !defined(AFX_ColorPickerDLG_H__13DCC50F_7B0D_47BC_9FD4_B36DE8D69963__INCLUDED_)