-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuBDSLauncherMainForm.dfm
More file actions
227 lines (227 loc) · 5.32 KB
/
uBDSLauncherMainForm.dfm
File metadata and controls
227 lines (227 loc) · 5.32 KB
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
object BDSLauncherMainForm: TBDSLauncherMainForm
Left = 0
Top = 0
Caption = 'AE BDSLauncher'
ClientHeight = 386
ClientWidth = 601
Color = clBtnFace
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Menu = MainMenu
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
TextHeight = 15
object Splitter: TSplitter
Left = 250
Top = 0
Width = 5
Height = 386
OnMoved = SplitterMoved
end
object RulesTreeView: TTreeView
Left = 0
Top = 0
Width = 250
Height = 386
Align = alLeft
BorderStyle = bsNone
DragMode = dmAutomatic
HideSelection = False
Indent = 19
ReadOnly = True
RowSelect = True
ShowLines = False
ShowRoot = False
TabOrder = 0
OnAdvancedCustomDrawItem = RulesTreeViewAdvancedCustomDrawItem
OnChange = RulesTreeViewChange
OnChanging = RulesTreeViewChanging
OnCollapsing = RulesTreeViewCollapsing
OnDragDrop = RulesTreeViewDragDrop
OnDragOver = RulesTreeViewDragOver
end
object ScrollBox: TScrollBox
Left = 255
Top = 0
Width = 346
Height = 386
Align = alClient
BorderStyle = bsNone
Color = clWindow
ParentColor = False
TabOrder = 1
DesignSize = (
346
386)
object FileMaskLabel: TLabel
Left = 8
Top = 16
Width = 57
Height = 15
Caption = 'File masks:'
end
object DelphiVersionLabel: TLabel
Left = 8
Top = 160
Width = 78
Height = 15
Caption = 'Delphi version:'
end
object CaptionContainsLabel: TLabel
Left = 28
Top = 278
Width = 172
Height = 15
Caption = 'Instance caption should contain:'
end
object InstanceParamsLabel: TLabel
Left = 8
Top = 342
Width = 136
Height = 15
Caption = 'New instance parameters:'
end
object FileMasksMemo: TMemo
Left = 8
Top = 37
Width = 332
Height = 100
Anchors = [akLeft, akTop, akRight]
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
OnChange = FileMasksMemoChange
end
object DelphiVersionComboBox: TComboBox
Left = 8
Top = 181
Width = 332
Height = 22
Style = csOwnerDrawFixed
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = DelphiVersionComboBoxChange
end
object AlwaysNewInstanceRadioButton: TRadioButton
Left = 8
Top = 232
Width = 332
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Always start in a new instance'
TabOrder = 2
OnClick = InstanceRadioClick
end
object SelectedInstanceRadioButton: TRadioButton
Left = 8
Top = 255
Width = 332
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Use an existing instance'
Checked = True
TabOrder = 3
TabStop = True
OnClick = InstanceRadioClick
end
object InstanceContainsEdit: TEdit
Left = 28
Top = 299
Width = 312
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
OnChange = InstanceContainsEditChange
end
object InstanceParamsEdit: TEdit
Left = 8
Top = 363
Width = 332
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 5
OnChange = InstanceParamsEditChange
end
end
object MainMenu: TMainMenu
AutoHotkeys = maManual
Left = 48
Top = 8
object File1: TMenuItem
Caption = '&File'
object Enablelogging1: TMenuItem
Caption = '&Enable logging'
OnClick = Enablelogging1Click
end
object Savesettings1: TMenuItem
Caption = '&Save settings'
ShortCut = 16467
OnClick = Savesettings1Click
end
object N1: TMenuItem
Caption = '-'
end
object OpenDelphisourcefile1: TMenuItem
Caption = 'Open Delphi source file...'
ShortCut = 16463
OnClick = OpenDelphisourcefile1Click
end
object N3: TMenuItem
Caption = '-'
end
object Exit1: TMenuItem
Caption = 'E&xit'
ShortCut = 32883
OnClick = Exit1Click
end
end
object Rules1: TMenuItem
Caption = '&Rules'
object Newrule1: TMenuItem
Caption = '&New rule...'
ShortCut = 16462
OnClick = Newrule1Click
end
object Deleterule1: TMenuItem
Caption = '&Delete rule...'
ShortCut = 16452
OnClick = Deleterule1Click
end
object Renamerule1: TMenuItem
Caption = 'Rename rule...'
ShortCut = 16466
OnClick = Renamerule1Click
end
object N2: TMenuItem
Caption = '-'
end
object Moveup1: TMenuItem
Caption = 'Move &up'
ShortCut = 16469
OnClick = MoveRuleClick
end
object Movedown1: TMenuItem
Caption = 'Move do&wn'
ShortCut = 16471
OnClick = MoveRuleClick
end
end
object Fileassociations1: TMenuItem
Caption = 'File &associations'
object akeover1: TMenuItem
Caption = '&Take over'
OnClick = akeover1Click
end
object Giveback1: TMenuItem
Caption = '&Give back...'
OnClick = Giveback1Click
end
end
end
end