]> icculus.org git repositories - taylor/freespace2.git/blob - include/prefsdlg.h
fix issue with looping audio streams
[taylor/freespace2.git] / include / prefsdlg.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/PrefsDlg.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Fred Preferences dialog box handling code
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:14  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 2     10/07/98 6:28p Dave
26  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
27  * Fred. Globalized mission and campaign file extensions. Removed Silent
28  * Threat specific code.
29  * 
30  * 1     10/07/98 3:01p Dave
31  * 
32  * 1     10/07/98 3:00p Dave
33  * 
34  * 2     2/17/97 5:28p Hoffoss
35  * Checked RCS headers, added them were missing, changing description to
36  * something better, etc where needed.
37  *
38  * $NoKeywords: $
39  */
40
41 /////////////////////////////////////////////////////////////////////////////
42 // CPrefsDlg dialog
43
44 class CPrefsDlg : public CDialog
45 {
46 // Construction
47 public:
48         CPrefsDlg(CWnd* pParent = NULL);   // standard constructor
49
50 // Dialog Data
51         //{{AFX_DATA(CPrefsDlg)
52         enum { IDD = IDD_PREFERENCES };
53         BOOL    m_ConfirmDeleting;
54         BOOL    m_ShowCapitalShips;
55         BOOL    m_ShowElevations;
56         BOOL    m_ShowFighters;
57         BOOL    m_ShowGrid;
58         BOOL    m_ShowMiscObjects;
59         BOOL    m_ShowPlanets;
60         BOOL    m_ShowWaypoints;
61         BOOL    m_ShowStarfield;
62         //}}AFX_DATA
63
64
65 // Overrides
66         // ClassWizard generated virtual function overrides
67         //{{AFX_VIRTUAL(CPrefsDlg)
68         public:
69         virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
70         protected:
71         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
72         //}}AFX_VIRTUAL
73
74 // Implementation
75 protected:
76
77         // Generated message map functions
78         //{{AFX_MSG(CPrefsDlg)
79         afx_msg void OnSaveDefaultPrefs();
80         afx_msg void OnClose();
81         //}}AFX_MSG
82         DECLARE_MESSAGE_MAP()
83 };
84