root/trunk/PreviewPage.h

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

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_PREVIEWPAGE_H__C25B1E55_A2F2_4197_8344_B221AD1C5803__INCLUDED_)
2 #define AFX_PREVIEWPAGE_H__C25B1E55_A2F2_4197_8344_B221AD1C5803__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // PreviewPage.h : header file
8 //
9 #include "resource.h"
10 /////////////////////////////////////////////////////////////////////////////
11 // CPreviewPage dialog
12
13 class CPreviewPage : public CRHGenericChildDialog
14 {
15 // Construction
16 public:
17     CPreviewPage(CWnd* pParent = NULL);   // standard constructor
18     virtual int CRHGetDialogID() { return IDD; }
19     void Save () {}
20     void UpdatePage ()
21     {}
22 // Dialog Data
23     //{{AFX_DATA(CPreviewPage)
24     enum { IDD = IDD_PROJECT_PREVIEW_PAGE };
25     CXTButton   m_generate;
26     CXTButton   m_clear;
27     CString m_text;
28     //}}AFX_DATA
29
30
31 // Overrides
32     // ClassWizard generated virtual function overrides
33     //{{AFX_VIRTUAL(CPreviewPage)
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(CPreviewPage)
43     virtual BOOL OnInitDialog();
44     afx_msg void OnGenerate();
45     afx_msg void OnClear();
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_PREVIEWPAGE_H__C25B1E55_A2F2_4197_8344_B221AD1C5803__INCLUDED_)
Note: See TracBrowser for help on using the browser.