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

对话框与窗口

开发平台:

Visual C++

  1. // ButtonDlg.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_BUTTONDLG_H__7838AF65_FBA8_45D4_B811_4979E8FE9761__INCLUDED_)
  21. #define AFX_BUTTONDLG_H__7838AF65_FBA8_45D4_B811_4979E8FE9761__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CButtonPage dialog
  27. class CButtonPage : public CXTResizePropertyPage
  28. {
  29. // Construction
  30. public:
  31. CButtonPage();   // standard constructor
  32. // Dialog Data
  33. //{{AFX_DATA(CButtonPage)
  34. enum { IDD = IDD_PAGE_SIMPLEBUTTONS };
  35. int m_nTheme;
  36. BOOL m_bFlatStyle;
  37. BOOL m_bUseVisualStyle;
  38. BOOL m_bEnable;
  39. BOOL m_bAlphaIcons;
  40. BOOL m_bToggleButtons;
  41. BOOL m_bShowFocus;
  42. int m_nRelation;
  43. int m_nPushButtonStyle;
  44. int m_nImageAlignment;
  45. int m_nTextAlignment;
  46. //}}AFX_DATA
  47. // ClassWizard generated virtual function overrides
  48. //{{AFX_VIRTUAL(CButtonPage)
  49. protected:
  50. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  51. //}}AFX_VIRTUAL
  52. // Implementation
  53. protected:
  54. HICON m_hIcon;
  55. CBitmap m_bitmap;
  56. CImageList m_imageList;
  57. CXTPButton m_btnRun;
  58. CXTPButton m_btnSettings;
  59. CXTPButton m_btnHelp;
  60. CXTPButton m_btnFind;
  61. CXTPButton m_btnState1;
  62. CXTPButton m_btnState2;
  63. CXTPButton m_btnOption1;
  64. CXTPButton m_btnOption2;
  65. CXTPButton m_frmRegular;
  66. CXTPButton m_frmTwoRows;
  67. CXTPButton m_frmCheckboxes;
  68. CXTPButton m_frmRadio;
  69. CXTPButton m_frmJustification;
  70. CXTPButton m_frmTheme;
  71. CXTPButton m_frmOptions;
  72. void UpdateIcons(BOOL bAlpha);
  73. // Generated message map functions
  74. //{{AFX_MSG(CButtonPage)
  75. virtual BOOL OnInitDialog();
  76. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  77. afx_msg void OnPaint();
  78. afx_msg void OnDestroy();
  79. afx_msg HCURSOR OnQueryDragIcon();
  80. afx_msg void OnRadTheme();
  81. afx_msg void OnCheckFlatstyle();
  82. afx_msg void OnCheckWinxpThemes();
  83. afx_msg void OnCheckEnabled();
  84. afx_msg void OnCheckAlpha();
  85. afx_msg void OnCheckToggle();
  86. afx_msg void OnCheckFocus();
  87. afx_msg void OnSelchangeComboRelation();
  88. afx_msg void OnSelchangeComboStyle();
  89. afx_msg void OnSelchangeComboImagealignment();
  90. afx_msg void OnSelchangeComboTextalignment();
  91. //}}AFX_MSG
  92. afx_msg void OnButtonClicked(UINT nID);
  93. afx_msg void OnButtonDropDown(UINT nID);
  94. DECLARE_MESSAGE_MAP()
  95. };
  96. //{{AFX_INSERT_LOCATION}}
  97. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  98. #endif // !defined(AFX_BUTTONDLG_H__7838AF65_FBA8_45D4_B811_4979E8FE9761__INCLUDED_)