-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrushAttributesDialog.h
101 lines (90 loc) · 3.63 KB
/
BrushAttributesDialog.h
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/****************************************************************************************/
/* BrushAttributesDialog.h */
/* */
/* Author: Jim Mischel, Ken Baird, Jeff Lomax */
/* Description: Genesis world editor header file */
/* */
/* The contents of this file are subject to the Genesis3D Public License */
/* Version 1.01 (the "License"); you may not use this file except in */
/* compliance with the License. You may obtain a copy of the License at */
/* http://www.genesis3d.com */
/* */
/* Software distributed under the License is distributed on an "AS IS" */
/* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See */
/* the License for the specific language governing rights and limitations */
/* under the License. */
/* */
/* The Original Code is Genesis3D, released March 25, 1999. */
/* Genesis3D Version 1.1 released November 15, 1999 */
/* Copyright (C) 1999 WildTangent, Inc. All Rights Reserved */
/* */
/****************************************************************************************/
#ifndef BRUSHATTRIBUTESDIALOG_H
#define BRUSHATTRIBUTESDIALOG_H
#include "brush.h"
#include "resource.h"
class CFusionDoc;
class CBrushAttributesDialog : public CDialog
{
public:
void UpdateBrushFocus ();
CBrushAttributesDialog(CFusionDoc *pDoc, CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CBrushAttributesDialog)
enum { IDD = IDD_BRUSHDIALOG };
CCheckListBox m_ContentsList;
CEdit m_EditHullsize;
CStatic m_LblHullsize;
CString m_Name;
geFloat m_HullSize;
BOOL m_Wavy;
BOOL m_Area;
BOOL m_Translucent;
int m_BrushType;
BOOL m_Detail;
BOOL m_Hollow;
BOOL m_Flocking;
BOOL m_Sheet;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CBrushAttributesDialog)
protected:
virtual BOOL OnInitDialog();
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void PostNcDestroy();
//}}AFX_VIRTUAL
// Implementation
protected:
uint16 m_OldFlags ;
// Generated message map functions
//{{AFX_MSG(CBrushAttributesDialog)
afx_msg void OnApply();
virtual void OnCancel();
afx_msg void OnBrushsolid();
afx_msg void OnBrushclip();
afx_msg void OnBrushwindow();
afx_msg void OnBrushhint();
afx_msg void OnBrushsubtract();
afx_msg void OnBrushhollow();
afx_msg void OnBrushempty();
afx_msg void OnBrushtranslucent();
afx_msg void OnBrushflocking();
afx_msg void OnBrushsheet();
afx_msg void OnKillfocusName();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
int BrushColor;
CFusionDoc *m_pDoc;
void OnRadioButton( void ) ;
void EnableTranslucency (void);
void EnableHullsize (void);
void SetDialogFields (void);
int BrushFlagsToIndex( void ) ;
void BrushOptionsFromType( void ) ;
void SetFlagsToBrushType( void ) ;
void AssignCurrentToValues();
void AssignCurrentToViews();
};
#endif