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