@@ -37,14 +37,15 @@ class DialogAFConstraint;
37
37
38
38
// DialogAF dialog
39
39
40
- class DialogAF : public CDialog {
40
+ class DialogAF : public CDialog
41
+ {
41
42
42
- DECLARE_DYNAMIC (DialogAF)
43
+ DECLARE_DYNAMIC ( DialogAF )
43
44
44
45
public:
45
- DialogAF ( CWnd* pParent = NULL ); // standard constructor
46
+ DialogAF ( CWnd* pParent = NULL ); // standard constructor
46
47
virtual ~DialogAF ();
47
- void LoadFile ( idDeclAF * af );
48
+ void LoadFile ( idDeclAF* af );
48
49
void SaveFile ( void );
49
50
void ReloadFile ( void );
50
51
void SetFileModified ( void );
@@ -54,12 +55,12 @@ class DialogAF : public CDialog {
54
55
protected:
55
56
virtual BOOL OnInitDialog ();
56
57
virtual void DoDataExchange ( CDataExchange* pDX ); // DDX/DDV support
57
- afx_msg BOOL OnToolTipNotify ( UINT id, NMHDR * pNMHDR, LRESULT * pResult );
58
- afx_msg void OnSetFocus ( CWnd * pOldWnd );
58
+ afx_msg BOOL OnToolTipNotify ( UINT id, NMHDR* pNMHDR, LRESULT* pResult );
59
+ afx_msg void OnSetFocus ( CWnd* pOldWnd );
59
60
afx_msg void OnDestroy ();
60
- afx_msg void OnActivate (UINT nState, CWnd* pWndOther, BOOL bMinimized);
61
+ afx_msg void OnActivate ( UINT nState, CWnd* pWndOther, BOOL bMinimized );
61
62
afx_msg void OnMove ( int x, int y );
62
- afx_msg void OnTcnSelchangeTabMode ( NMHDR * pNMHDR, LRESULT * pResult );
63
+ afx_msg void OnTcnSelchangeTabMode ( NMHDR* pNMHDR, LRESULT* pResult );
63
64
afx_msg void OnCbnSelchangeComboAf ();
64
65
afx_msg void OnBnClickedButtonAfNew ();
65
66
afx_msg void OnBnClickedButtonAfDelete ();
@@ -72,14 +73,14 @@ class DialogAF : public CDialog {
72
73
DECLARE_MESSAGE_MAP ()
73
74
74
75
private:
75
- CTabCtrl * wndTabs;
76
- CWnd * wndTabDisplay;
77
- DialogAFView * viewDlg;
78
- DialogAFProperties * propertiesDlg;
79
- DialogAFBody * bodyDlg;
80
- DialogAFConstraint * constraintDlg;
76
+ CTabCtrl* wndTabs;
77
+ CWnd* wndTabDisplay;
78
+ DialogAFView* viewDlg;
79
+ DialogAFProperties* propertiesDlg;
80
+ DialogAFBody* bodyDlg;
81
+ DialogAFConstraint* constraintDlg;
81
82
82
- idDeclAF * file; // file being edited
83
+ idDeclAF* file; // file being edited
83
84
84
85
// {{AFX_DATA(DialogAF)
85
86
CComboBox AFList; // list with .af files
@@ -89,7 +90,7 @@ class DialogAF : public CDialog {
89
90
90
91
private:
91
92
void InitAFList ( void );
92
- void AddTabItem ( int id, const char * name );
93
+ void AddTabItem ( int id, const char * name );
93
94
void SetTab ( int id );
94
95
void SetTabChildPos ( void );
95
96
};
0 commit comments