forked from uesp/skyedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SrKywdView.cpp
147 lines (121 loc) · 4.72 KB
/
SrKywdView.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
/*===========================================================================
*
* File: SrKywdView.CPP
* Author: Dave Humphrey ([email protected])
* Created On: 27 November 2011
*
* Description
*
*=========================================================================*/
/* Include Files */
#include "stdafx.h"
#include "sredit.h"
#include "srkywdview.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(CSrKywdView, CSrRecordDialog);
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin CSrKywdView Message Map
*
*=========================================================================*/
BEGIN_MESSAGE_MAP(CSrKywdView, CSrRecordDialog)
//{{AFX_MSG_MAP(CSrKywdView)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/*===========================================================================
* End of CSrKywdView Message Map
*=========================================================================*/
/*===========================================================================
*
* Begin UI Field Map
*
*=========================================================================*/
BEGIN_SRRECUIFIELDS(CSrKywdView)
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_CNAM, IDC_CNAME, 256, IDS_TT_CNAME)
END_SRRECUIFIELDS()
/*===========================================================================
* End of UI Field Map
*=========================================================================*/
/*===========================================================================
*
* Class CSrKywdView Constructor
*
*=========================================================================*/
CSrKywdView::CSrKywdView() : CSrRecordDialog(CSrKywdView::IDD)
{
m_EnchantType = 0;
m_InitialSetData = false;
}
/*===========================================================================
* End of Class CSrKywdView Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrKywdView Destructor
*
*=========================================================================*/
CSrKywdView::~CSrKywdView()
{
}
/*===========================================================================
* End of Class CSrKywdView Destructor
*=========================================================================*/
/*===========================================================================
*
* Class CSrKywdView Method - void DoDataExchange (pDX);
*
*=========================================================================*/
void CSrKywdView::DoDataExchange (CDataExchange* pDX) {
CSrRecordDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSrKywdView)
DDX_Control(pDX, IDC_CNAME, m_CName);
DDX_Control(pDX, IDC_EDITORID, m_EditorID);
DDX_Control(pDX, IDC_FORMID, m_FormID);
//}}AFX_DATA_MAP
}
/*===========================================================================
* End of Class Method CSrKywdView::DoDataExchange()
*=========================================================================*/
/*===========================================================================
*
* Begin CSrKywdView Diagnostics
*
*=========================================================================*/
#ifdef _DEBUG
void CSrKywdView::AssertValid() const {
CSrRecordDialog::AssertValid();
}
void CSrKywdView::Dump(CDumpContext& dc) const {
CSrRecordDialog::Dump(dc);
}
#endif
/*===========================================================================
* End of CSrKywdView Diagnostics
*=========================================================================*/
/*===========================================================================
*
* Class CSrKywdView Event - void OnInitialUpdate (void);
*
*=========================================================================*/
void CSrKywdView::OnInitialUpdate (void) {
CSrRecordDialog::OnInitialUpdate();
SetControlData();
}
/*===========================================================================
* End of Class Event CSrKywdView::OnInitialUpdate()
*=========================================================================*/