blob: 62d497ea1074a7e312df81971e02a36c3505e94c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
// OptionProperties.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// COptionProperties
#include "OPTGeneral.h"
#include "OPTView2D.h"
#include "OPTView3D.h"
#include "OPTTextures.h"
#include "OPTConfigs.h"
#include "OPTBuild.h"
class COptionProperties : public CPropertySheet
{
DECLARE_DYNAMIC(COptionProperties)
// Construction
public:
COptionProperties(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
COptionProperties(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
COPTGeneral General;
COPTView2D View2D;
COPTView3D View3D;
COPTTextures Textures;
COPTConfigs Configs;
COPTBuild Build;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(COptionProperties)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~COptionProperties();
void DoStandardInit();
// Generated message map functions
protected:
//{{AFX_MSG(COptionProperties)
afx_msg void OnClose();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
|