]> icculus.org git repositories - taylor/freespace2.git/blob - include/initialships.h
Initial revision
[taylor/freespace2.git] / include / initialships.h
1 // InitialShips.h : header file
2 //
3
4 /////////////////////////////////////////////////////////////////////////////
5 // InitialShips dialog
6
7 #define INITIAL_SHIPS   1
8 #define INITIAL_WEAPONS 2
9
10 #define MAX_INITIAL_CHECKBOXES  30
11
12 class InitialShips : public CDialog
13 {
14 // Construction
15 public:
16         int m_initial_items;
17         InitialShips(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20         //{{AFX_DATA(InitialShips)
21         enum { IDD = IDD_INITIAL_SHIPS };
22         CCheckListBox   m_initial_list;
23         //}}AFX_DATA
24
25
26 // Overrides
27         // ClassWizard generated virtual function overrides
28         //{{AFX_VIRTUAL(InitialShips)
29         protected:
30         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
31         //}}AFX_VIRTUAL
32
33 // Implementation
34 protected:
35
36         // Generated message map functions
37         //{{AFX_MSG(InitialShips)
38         virtual BOOL OnInitDialog();
39         virtual void OnOK();
40         //}}AFX_MSG
41         DECLARE_MESSAGE_MAP()
42 private:
43         int m_list_count;
44 };
45