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

对话框与窗口

开发平台:

Visual C++

  1. // PropertiesView.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_PROPERTIESVIEW_H__7D1C72CB_5118_4583_AB59_CFFB96189CE1__INCLUDED_)
  21. #define AFX_PROPERTIESVIEW_H__7D1C72CB_5118_4583_AB59_CFFB96189CE1__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPropertiesView form view
  27. #ifndef __AFXEXT_H__
  28. #include <afxext.h>
  29. #endif
  30. class CPropertiesView : public CFormView
  31. {
  32. protected:
  33. CPropertiesView();           // protected constructor used by dynamic creation
  34. DECLARE_DYNCREATE(CPropertiesView)
  35. // Form Data
  36. public:
  37. //{{AFX_DATA(CPropertiesView)
  38. enum { IDD = IDD_PROPERTIES_VIEW };
  39. // NOTE: the ClassWizard will add data members here
  40. //}}AFX_DATA
  41. CComboBox   m_comboAppearance;
  42. CComboBox   m_comboPosition;
  43. CComboBox   m_comboColor;
  44. int     m_nAppearance;
  45. int     m_nColor;
  46. int     m_nLayout;
  47. int     m_nPosition;
  48. BOOL m_bLunaColors;
  49. BOOL m_bOneNoteColors;
  50. void Update();
  51. // Attributes
  52. public:
  53. // Operations
  54. public:
  55. virtual CXTPTabPaintManager* GetPaintManager();
  56. void UpdateControls();
  57. void Reposition();
  58. // Overrides
  59. // ClassWizard generated virtual function overrides
  60. //{{AFX_VIRTUAL(CPropertiesView)
  61. public:
  62. virtual void OnInitialUpdate();
  63. protected:
  64. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  65. //}}AFX_VIRTUAL
  66. // Implementation
  67. protected:
  68. virtual ~CPropertiesView();
  69. #ifdef _DEBUG
  70. virtual void AssertValid() const;
  71. virtual void Dump(CDumpContext& dc) const;
  72. #endif
  73. afx_msg void OnSelchangeComboColor();
  74. afx_msg void OnSelchangeComboPosition();
  75. afx_msg void OnSelchangeComboAppearance();
  76. afx_msg void OnCheckLunaColors();
  77. afx_msg void OnCheckOnenoteColors();
  78. afx_msg void OnSelchangeComboLayout();
  79. // Generated message map functions
  80. //{{AFX_MSG(CPropertiesView)
  81. // NOTE - the ClassWizard will add and remove member functions here.
  82. //}}AFX_MSG
  83. DECLARE_MESSAGE_MAP()
  84. };
  85. /////////////////////////////////////////////////////////////////////////////
  86. //{{AFX_INSERT_LOCATION}}
  87. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  88. #endif // !defined(AFX_PROPERTIESVIEW_H__7D1C72CB_5118_4583_AB59_CFFB96189CE1__INCLUDED_)