]> icculus.org git repositories - taylor/freespace2.git/blob - include/operatorargtypeselect.h
Initial revision
[taylor/freespace2.git] / include / operatorargtypeselect.h
1 /*
2  * $Logfile: /Freespace2/code/FRED2/OperatorArgTypeSelect.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Dialog box handling code for selecting an argument return type of an SEXP.
8  * Changes to SEXPs made this no longer needed, but just in case more changes
9  * cause it to be needed again, it's still around.
10  *
11  * $Log$
12  * Revision 1.1  2002/05/03 03:28:12  root
13  * Initial revision
14  *
15  * 
16  * 2     10/07/98 6:28p Dave
17  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
18  * Fred. Globalized mission and campaign file extensions. Removed Silent
19  * Threat specific code.
20  * 
21  * 1     10/07/98 3:01p Dave
22  * 
23  * 1     10/07/98 3:00p Dave
24  * 
25  * 3     2/17/97 5:28p Hoffoss
26  * Checked RCS headers, added them were missing, changing description to
27  * something better, etc where needed.
28  *
29  * $NoKeywords: $
30  */
31
32 /////////////////////////////////////////////////////////////////////////////
33 // OperatorArgTypeSelect dialog
34
35 class OperatorArgTypeSelect : public CDialog
36 {
37 // Construction
38 public:
39         OperatorArgTypeSelect(CWnd* pParent = NULL);   // standard constructor
40
41 // Dialog Data
42         //{{AFX_DATA(OperatorArgTypeSelect)
43         enum { IDD = IDD_OPERATOR_ARGUMENT_TYPES };
44                 // NOTE: the ClassWizard will add data members here
45         //}}AFX_DATA
46
47
48 // Overrides
49         // ClassWizard generated virtual function overrides
50         //{{AFX_VIRTUAL(OperatorArgTypeSelect)
51         protected:
52         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
53         //}}AFX_VIRTUAL
54
55 // Implementation
56 protected:
57
58         // Generated message map functions
59         //{{AFX_MSG(OperatorArgTypeSelect)
60         afx_msg void OnBoolean();
61         afx_msg void OnNumbers();
62         afx_msg void OnShips();
63         afx_msg void OnWings();
64         //}}AFX_MSG
65         DECLARE_MESSAGE_MAP()
66 };
67