-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSetExactViewSheet.h
More file actions
63 lines (52 loc) · 1.56 KB
/
Copy pathSetExactViewSheet.h
File metadata and controls
63 lines (52 loc) · 1.56 KB
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
// SetExactViewSheet.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSetExactViewSheet
class COnStationView;
#include "viewanglepage.h"
#include "centerpage.h"
#include "viewscalePage.h"
class COnStationDoc;
class CSetExactViewSheet : public CPropertySheet
{
DECLARE_DYNAMIC(CSetExactViewSheet)
private:
// Construction
float m_fClockwise;
float m_fTilt;
float m_fDx;
float m_fDy;
float m_fDz;
float m_fScaling;
// CSizePage m_SizePage;
// CMovementPage m_MovementPage;
// Construction
public:
//Don't use this constructor
CSetExactViewSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
//Use this one instead
CSetExactViewSheet(COnStationView *view,LPCTSTR pszCaption,float fClock,float fTilt,float fScale,
float fDx,float fDy,float fDz, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
//Put these here since the will contain the final data.
CViewAnglePage m_ViewPage;
CCenterPage m_ViewCenter;
CViewScalePage m_ViewScale;
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSetExactViewSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CSetExactViewSheet();
// Generated message map functions
protected:
//{{AFX_MSG(CSetExactViewSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////