forked from uesp/skyedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SrGlobView.cpp
157 lines (129 loc) · 4.95 KB
/
SrGlobView.cpp
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*===========================================================================
*
* File: SrKywdView.CPP
* Author: Dave Humphrey ([email protected])
* Created On: 27 November 2011
*
* Description
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "sredit.h"
#include "srglobview.h"
#include "dialogs/sreditdlghandler.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
//#ifdef _DEBUG
// #define new DEBUG_NEW
// #undef THIS_FILE
// static char THIS_FILE[] = __FILE__;
//#endif
IMPLEMENT_DYNCREATE(CSrGlobView, CSrRecordDialog);
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CSrGlobView Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CSrGlobView, CSrRecordDialog)
//{{AFX_MSG_MAP(CSrGlobView)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CSrGlobView Message Map
*=========================================================================*/
/*===========================================================================
*
* Begin UI Field Map
*
*=========================================================================*/
BEGIN_SRRECUIFIELDS(CSrGlobView)
ADD_SRRECUIFIELDS( SR_FIELD_EDITORID, IDC_EDITORID, 128, IDS_TT_EDITORID)
ADD_SRRECUIFIELDS( SR_FIELD_FORMID, IDC_FORMID, 128, IDS_TT_FORMID)
ADD_SRRECUIFIELDS( SR_FIELD_VALUE, IDC_VALUE, 32, IDS_TT_VALUE)
ADD_SRRECUIFIELDS( SR_FIELD_TYPE, IDC_TYPELIST, 32, IDS_TT_TYPE)
END_SRRECUIFIELDS()
/*===========================================================================
* End of UI Field Map
*=========================================================================*/
/*===========================================================================
*
* Class CSrGlobView Constructor
*
*=========================================================================*/
CSrGlobView::CSrGlobView() : CSrRecordDialog(CSrGlobView::IDD)
{
//{{AFX_DATA_INIT(CSrGlobView)
//}}AFX_DATA_INIT
m_InitialSetData = false;
}
/*===========================================================================
* End of Class CSrGlobView Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrGlobView Destructor
*
*=========================================================================*/
CSrGlobView::~CSrGlobView()
{
}
/*===========================================================================
* End of Class CSrGlobView Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrGlobView Method - void DoDataExchange (pDX);
*
*=========================================================================*/
void CSrGlobView::DoDataExchange (CDataExchange* pDX)
{
CSrRecordDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSrGlobView)
DDX_Control(pDX, IDC_VALUE, m_Value);
DDX_Control(pDX, IDC_TYPELIST, m_Type);
DDX_Control(pDX, IDC_EDITORID, m_EditorID);
DDX_Control(pDX, IDC_FORMID, m_FormID);
//}}AFX_DATA_MAP
}
/*===========================================================================
* End of Class Method CSrGlobView::DoDataExchange()
*=========================================================================*/
/*===========================================================================
*
* Begin CSrGlobView Diagnostics
*
*=========================================================================*/
#ifdef _DEBUG
void CSrGlobView::AssertValid() const {
CSrRecordDialog::AssertValid();
}
void CSrGlobView::Dump(CDumpContext& dc) const {
CSrRecordDialog::Dump(dc);
}
#endif
/*===========================================================================
* End of CSrGlobView Diagnostics
*=========================================================================*/
/*===========================================================================
*
* Class CSrGlobView Event - void OnInitialUpdate (void);
*
*=========================================================================*/
void CSrGlobView::OnInitialUpdate (void)
{
CSrRecordDialog::OnInitialUpdate();
m_Type.AddString("long");
m_Type.AddString("float");
m_Type.AddString("short");
SetControlData();
}
/*===========================================================================
* End of Class Event CSrGlobView::OnInitialUpdate()
*=========================================================================*/