]> icculus.org git repositories - taylor/freespace2.git/blob - include/shipchecklistbox.h
Initial revision
[taylor/freespace2.git] / include / shipchecklistbox.h
1 /*
2  * $Logfile: /Freespace2/code/FRED2/ShipCheckListBox.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * A custom check list box class that allows space bar to toggle the state of all
8  * the selected checkboxes.
9  *
10  * $Log$
11  * Revision 1.1  2002/05/03 03:28:12  root
12  * Initial revision
13  *
14  * 
15  * 2     10/07/98 6:28p Dave
16  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
17  * Fred. Globalized mission and campaign file extensions. Removed Silent
18  * Threat specific code.
19  * 
20  * 1     10/07/98 3:01p Dave
21  * 
22  * 1     10/07/98 3:00p Dave
23  * 
24  * 5     2/17/97 5:28p Hoffoss
25  * Checked RCS headers, added them were missing, changing description to
26  * something better, etc where needed.
27  *
28  * $NoKeywords: $
29  */
30
31 #ifndef _SHIPCHECKLISTBOX_H
32 #define _SHIPCHECKLISTBOX_H
33
34 class ShipCheckListBox : public CCheckListBox
35 {
36 public:
37         BOOL Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID);
38
39 protected:
40         //{{AFX_MSG(CCheckListBox)
41         afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
42         //}}AFX_MSG
43
44         DECLARE_MESSAGE_MAP()
45 };
46
47 #endif
48