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