-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreationWizard.h
executable file
·75 lines (58 loc) · 1.91 KB
/
CreationWizard.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// CreationWizard.h : header file
//
// This class defines custom modal property sheet
// CCreationWizard.
#ifndef __CREATIONWIZARD_H__
#define __CREATIONWIZARD_H__
#include "CdCoverCreator2.h"
#include "CreationWizardPages.h"
#include "CWDataCDPage.h"
#include "TracksInfo.h" // Added by ClassView
#include "DataCDInfo.h"
/////////////////////////////////////////////////////////////////////////////
// CCreationWizard
class CCreationWizard : public CPropertySheet
{
DECLARE_DYNAMIC(CCreationWizard)
// Construction
public:
CCreationWizard (NewDocMode mode, CWnd* pWndParent = NULL);
// Attributes
public:
CCWArrangePage m_Page1;
CCWBkImgPage m_Page2a, m_Page2b, m_Page2c, m_Page2d;
CCWFormatPage m_Page3;
CCWDataCDPage m_PageDataCD;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCreationWizard)
//}}AFX_VIRTUAL
// Implementation
public:
CBackgroundInfo** GetBackgroundInfo();
void SetStyleTemplate (CStyleTemplate& style);
CStyleTemplate& GetStyleTemplate();
void SetBackgroundInfo (CBackgroundInfo& bkgrnd, RenderType rt);
CBackgroundInfo& GetBackgroundInfo(RenderType rt);
void SetTracksInfo (CTracksInfo& tracks);
CTracksInfo& GetTracksInfo();
void SetDataCDInfo (CDataCDInfo& info);
CDataCDInfo& GetDataCDInfo ();
virtual ~CCreationWizard();
CTracksInfo* m_pTracks;
CDataCDInfo* m_pDataCDInfo;
CBackgroundInfo* m_pBackground[NUM_RENDER_TYPES];
CStyleTemplate* m_pStyle;
// Generated message map functions
protected:
//{{AFX_MSG(CCreationWizard)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
afx_msg LRESULT OnCommandHelp(WPARAM wParam, LPARAM lParam);
virtual BOOL PreTranslateMessage(MSG *pMsg);
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __CREATIONWIZARD_H__