root/trunk/ThemesPage.h

Revision 5, 1.4 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_THEMESPAGE_H__06BE0FC3_AE2E_4303_8CEA_E71AE62F541E__INCLUDED_)
2 #define AFX_THEMESPAGE_H__06BE0FC3_AE2E_4303_8CEA_E71AE62F541E__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // ThemesPage.h : header file
8 //
9 #include "resource.h"
10 #include "GUIComponents/GenericChildDialog.h"
11 /////////////////////////////////////////////////////////////////////////////
12 // CThemesPage dialog
13
14 class CThemesPage : public CRHGenericChildDialog
15 {
16 // Construction
17 public:
18     CThemesPage(CWnd* pParent = NULL);   // standard constructor
19     virtual int CRHGetDialogID() { return IDD;
20     }
21 // Dialog Data
22     //{{AFX_DATA(CThemesPage)
23     enum { IDD = IDD_THEMES_PAGE };
24     CXTButton   m_activateTheme;
25     CXTButton   m_saveAsTheme;
26
27     CListCtrl   m_listCtrl;
28     //}}AFX_DATA
29     void Save () {}
30
31 // Overrides
32     // ClassWizard generated virtual function overrides
33     //{{AFX_VIRTUAL(CThemesPage)
34     protected:
35     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
36     //}}AFX_VIRTUAL
37
38 // Implementation
39 protected:
40
41     // Generated message map functions
42     //{{AFX_MSG(CThemesPage)
43     virtual BOOL OnInitDialog();
44     afx_msg void OnSaveAsTheme();
45     afx_msg void OnActivateTheme();
46     //}}AFX_MSG
47     DECLARE_MESSAGE_MAP()
48 };
49
50 //{{AFX_INSERT_LOCATION}}
51 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
52
53 #endif // !defined(AFX_THEMESPAGE_H__06BE0FC3_AE2E_4303_8CEA_E71AE62F541E__INCLUDED_)
Note: See TracBrowser for help on using the browser.