| 26 | | // LoadPortalFileDialog.h : header file |
|---|
| 27 | | // |
|---|
| 28 | | |
|---|
| 29 | | ///////////////////////////////////////////////////////////////////////////// |
|---|
| 30 | | // CLoadPortalFileDialog dialog |
|---|
| 31 | | |
|---|
| 32 | | #ifdef GTK_PLUGIN |
|---|
| 33 | | |
|---|
| 34 | | int DoLoadPortalFileDialog (); |
|---|
| 35 | | |
|---|
| 36 | | #else |
|---|
| 37 | | |
|---|
| 38 | | class CLoadPortalFileDialog : public CDialog |
|---|
| 39 | | { |
|---|
| 40 | | // Construction |
|---|
| 41 | | public: |
|---|
| 42 | | CLoadPortalFileDialog(CWnd* pParent = NULL); // standard constructor |
|---|
| 43 | | |
|---|
| 44 | | // Dialog Data |
|---|
| 45 | | //{{AFX_DATA(CLoadPortalFileDialog) |
|---|
| 46 | | enum { IDD = IDD_LOAD }; |
|---|
| 47 | | CButton m_3d_ctrl; |
|---|
| 48 | | CButton m_2d_ctrl; |
|---|
| 49 | | CStatic m_fn_ctrl; |
|---|
| 50 | | //}}AFX_DATA |
|---|
| 51 | | |
|---|
| 52 | | |
|---|
| 53 | | // Overrides |
|---|
| 54 | | // ClassWizard generated virtual function overrides |
|---|
| 55 | | //{{AFX_VIRTUAL(CLoadPortalFileDialog) |
|---|
| 56 | | protected: |
|---|
| 57 | | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support |
|---|
| 58 | | //}}AFX_VIRTUAL |
|---|
| 59 | | |
|---|
| 60 | | // Implementation |
|---|
| 61 | | protected: |
|---|
| 62 | | |
|---|
| 63 | | // Generated message map functions |
|---|
| 64 | | //{{AFX_MSG(CLoadPortalFileDialog) |
|---|
| 65 | | virtual qboolean OnInitDialog(); |
|---|
| 66 | | virtual void OnOK(); |
|---|
| 67 | | afx_msg void OnLoadOther(); |
|---|
| 68 | | //}}AFX_MSG |
|---|
| 69 | | DECLARE_MESSAGE_MAP() |
|---|
| 70 | | }; |
|---|
| 71 | | |
|---|
| 72 | | #endif // GTK_PLUGIN |
|---|
| 73 | | |
|---|
| 74 | | //{{AFX_INSERT_LOCATION}} |
|---|
| 75 | | // Microsoft Developer Studio will insert additional declarations immediately before the previous line. |
|---|