FS2_Open
Open source remastering of the Freespace 2 engine
initialships.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) Volition, Inc. 1999. All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell
5  * or otherwise commercially exploit the source or things you created based on the
6  * source.
7  *
8 */
9 
10 // InitialShips.h : header file
11 //
12 
14 // InitialShips dialog
15 
16 #define INITIAL_SHIPS 1
17 #define INITIAL_WEAPONS 2
18 
19 #define MAX_INITIAL_CHECKBOXES 30
20 
21 class InitialShips : public CDialog
22 {
23 // Construction
24 public:
26  InitialShips(CWnd* pParent = NULL); // standard constructor
27 
28 // Dialog Data
29  //{{AFX_DATA(InitialShips)
30  enum { IDD = IDD_INITIAL_SHIPS };
31  CCheckListBox m_initial_list;
32  //}}AFX_DATA
33 
34 
35 // Overrides
36  // ClassWizard generated virtual function overrides
37  //{{AFX_VIRTUAL(InitialShips)
38  protected:
39  virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
40  //}}AFX_VIRTUAL
41 
42 // Implementation
43 protected:
44 
45  // Generated message map functions
46  //{{AFX_MSG(InitialShips)
47  virtual BOOL OnInitDialog();
48  virtual void OnOK();
49  //}}AFX_MSG
50  DECLARE_MESSAGE_MAP()
51 private:
52  int m_list_count;
53 };
#define IDD_INITIAL_SHIPS
Definition: resource.h:83
virtual void DoDataExchange(CDataExchange *pDX)
InitialShips(CWnd *pParent=NULL)
virtual BOOL OnInitDialog()
int m_initial_items
Definition: initialships.h:25
int BOOL
Definition: config.h:80
CCheckListBox m_initial_list
Definition: initialships.h:31
virtual void OnOK()