forked from NeeeeB/GameList_Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathF_AdvNameEditor.dfm
165 lines (165 loc) · 3.08 KB
/
F_AdvNameEditor.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
object Frm_AdvNameEditor: TFrm_AdvNameEditor
Left = 0
Top = 0
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Advanced Name Editor'
ClientHeight = 320
ClientWidth = 442
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Lbl_Characters: TLabel
Left = 55
Top = 34
Width = 136
Height = 13
Caption = 'characters at the beginning.'
Enabled = False
end
object Lbl_EndChars: TLabel
Left = 55
Top = 61
Width = 108
Height = 13
Caption = 'characters at the end.'
Enabled = False
end
object Lbl_Beginning: TLabel
Left = 343
Top = 34
Width = 82
Height = 13
Caption = 'at the beginning.'
Enabled = False
end
object Lbl_End: TLabel
Left = 343
Top = 61
Width = 54
Height = 13
Caption = 'at the end.'
Enabled = False
end
object Lbl_Preview: TLabel
Left = 33
Top = 227
Width = 38
Height = 13
Alignment = taCenter
Caption = 'Preview'
end
object Btn_Apply: TButton
Left = 130
Top = 280
Width = 75
Height = 25
Caption = 'Apply'
ModalResult = 1
TabOrder = 0
end
object Btn_Cancel: TButton
Left = 226
Top = 280
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object Chk_DeleteChars: TCheckBox
Left = 8
Top = 8
Width = 97
Height = 17
Caption = 'Delete'
TabOrder = 2
OnClick = Chk_DeleteCharsClick
end
object Edt_NbChars: TEdit
Left = 8
Top = 31
Width = 41
Height = 21
Enabled = False
NumbersOnly = True
TabOrder = 3
OnChange = Edt_NbCharsChange
end
object Edt_NbCharsEnd: TEdit
Left = 8
Top = 58
Width = 41
Height = 21
Enabled = False
NumbersOnly = True
TabOrder = 4
OnChange = Edt_NbCharsEndChange
end
object Chk_Add: TCheckBox
Left = 232
Top = 8
Width = 97
Height = 17
Caption = 'Add'
TabOrder = 5
OnClick = Chk_AddClick
end
object Edt_StartString: TEdit
Left = 232
Top = 31
Width = 105
Height = 21
Enabled = False
TabOrder = 6
OnChange = Edt_StartStringChange
end
object Edt_EndString: TEdit
Left = 232
Top = 58
Width = 105
Height = 21
Enabled = False
TabOrder = 7
OnChange = Edt_EndStringChange
end
object Edt_Preview: TEdit
Left = 33
Top = 246
Width = 365
Height = 21
Alignment = taCenter
Enabled = False
TabOrder = 8
end
object Rdg_Case: TRadioGroup
Left = 8
Top = 102
Width = 416
Height = 105
Caption = ' Case'
Enabled = False
Items.Strings = (
'Capitalize the first character'
'Convert to Uppercase'
'Convert to Lowercase')
TabOrder = 9
OnClick = Rdg_CaseClick
end
object Chk_Case: TCheckBox
Left = 14
Top = 101
Width = 17
Height = 17
TabOrder = 10
OnClick = Chk_CaseClick
end
end