-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPoint3DDataValue.h
More file actions
executable file
·56 lines (47 loc) · 1.2 KB
/
Copy pathPoint3DDataValue.h
File metadata and controls
executable file
·56 lines (47 loc) · 1.2 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
// Point3DDataValue.h : header file
//
class Object3D;
/////////////////////////////////////////////////////////////////////////////
// CPoint3DDataValue dialog
class CPoint3DDataValue : public CDialog
{
// Construction
public:
CPoint3DDataValue(Object3D *obj,CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CPoint3DDataValue)
enum { IDD = IDD_DIALOG1 };
CComboBox m_ScaleYCombo;
CComboBox m_ScaleXCombo;
int m_X;
int m_Y;
int m_Z;
int m_OY;
int m_OX;
CString m_XScale;
CString m_YScale;
BOOL m_XSign;
BOOL m_YSign;
//}}AFX_DATA
Object3D *obj;
void UpdateXY();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPoint3DDataValue)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CPoint3DDataValue)
virtual BOOL OnInitDialog();
afx_msg void OnXSign();
afx_msg void OnYSign();
afx_msg void OnChangeEdit4();
afx_msg void OnChangeEdit5();
afx_msg void OnSelchangeCombo3();
afx_msg void OnSelchangeCombo4();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};