forked from tmcdos/IDR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditFieldsDlg.dfm
198 lines (198 loc) · 4.82 KB
/
EditFieldsDlg.dfm
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
object FEditFieldsDlg: TFEditFieldsDlg
Left = 239
Top = 263
BorderStyle = bsToolWindow
ClientHeight = 331
ClientWidth = 650
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 290
Width = 650
Height = 41
Align = alBottom
TabOrder = 0
object bAdd: TButton
Left = 288
Top = 8
Width = 74
Height = 25
Caption = 'Add'
TabOrder = 1
OnClick = bAddClick
end
object bRemove: TButton
Left = 384
Top = 8
Width = 74
Height = 25
Caption = 'Remove'
TabOrder = 2
OnClick = bRemoveClick
end
object bEdit: TButton
Left = 192
Top = 8
Width = 75
Height = 25
Caption = 'Edit'
Enabled = False
TabOrder = 0
OnClick = bEditClick
end
end
object panel2: TPanel
Left = 0
Top = 0
Width = 523
Height = 290
Align = alClient
Caption = 'panel2'
TabOrder = 1
object lbFields: TListBox
Left = 1
Top = 1
Width = 521
Height = 182
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ItemHeight = 16
ParentFont = False
TabOrder = 0
OnClick = lbFieldsClick
end
object edtPanel: TPanel
Left = 1
Top = 183
Width = 521
Height = 106
Align = alBottom
TabOrder = 1
object edtName: TLabeledEdit
Left = 104
Top = 40
Width = 306
Height = 24
EditLabel.Width = 40
EditLabel.Height = 16
EditLabel.Caption = 'Name:'
EditLabel.Font.Charset = RUSSIAN_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = -12
EditLabel.Font.Name = 'Fixedsys'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
LabelPosition = lpLeft
ParentFont = False
TabOrder = 1
OnChange = edtNameChange
end
object edtType: TLabeledEdit
Left = 104
Top = 72
Width = 306
Height = 24
EditLabel.Width = 40
EditLabel.Height = 16
EditLabel.Caption = 'Type:'
EditLabel.Font.Charset = RUSSIAN_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = -12
EditLabel.Font.Name = 'Fixedsys'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
LabelPosition = lpLeft
ParentFont = False
TabOrder = 2
OnChange = edtTypeChange
end
object bApply: TButton
Left = 428
Top = 24
Width = 75
Height = 25
Caption = 'Apply'
Default = True
TabOrder = 3
OnClick = bApplyClick
end
object bClose: TButton
Left = 428
Top = 56
Width = 75
Height = 25
Caption = 'Close'
Default = True
TabOrder = 4
OnClick = bCloseClick
end
object edtOffset: TLabeledEdit
Left = 104
Top = 8
Width = 306
Height = 24
EditLabel.Width = 80
EditLabel.Height = 16
EditLabel.Caption = 'HexOffset:'
EditLabel.Font.Charset = RUSSIAN_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = -12
EditLabel.Font.Name = 'Fixedsys'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
LabelPosition = lpLeft
ParentFont = False
TabOrder = 0
OnChange = edtNameChange
end
end
end
object lbFXrefs: TListBox
Left = 523
Top = 0
Width = 127
Height = 290
Align = alRight
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ItemHeight = 16
ParentFont = False
TabOrder = 2
OnDblClick = lbFXrefsDblClick
end
end