-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmEditors.dfm
104 lines (104 loc) · 2.08 KB
/
frmEditors.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
object wndEditors: TwndEditors
Left = 0
Top = 0
BorderIcons = [biMinimize, biMaximize]
BorderStyle = bsToolWindow
Caption = 'Editor'
ClientHeight = 150
ClientWidth = 329
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
StyleElements = [seFont, seClient]
OnClose = FormClose
OnCreate = FormCreate
TextHeight = 13
object edImage: TImage
Left = 270
Top = 3
Width = 32
Height = 32
Stretch = True
end
object edName: TLabeledEdit
Left = 64
Top = 10
Width = 200
Height = 21
EditLabel.Width = 31
EditLabel.Height = 21
EditLabel.Caption = 'Name:'
LabelPosition = lpLeft
TabOrder = 0
Text = ''
end
object edPath: TLabeledEdit
Left = 64
Top = 39
Width = 200
Height = 21
EditLabel.Width = 26
EditLabel.Height = 21
EditLabel.Caption = 'Path:'
LabelPosition = lpLeft
TabOrder = 1
Text = ''
OnChange = edPathChange
end
object edParam: TLabeledEdit
Left = 64
Top = 66
Width = 200
Height = 21
EditLabel.Width = 39
EditLabel.Height = 21
EditLabel.Caption = 'Params:'
LabelPosition = lpLeft
TabOrder = 2
Text = '{folder}'
OnChange = edPathChange
end
object btnFindExecutable: TButton
Left = 270
Top = 37
Width = 34
Height = 25
Caption = '...'
TabOrder = 3
OnClick = btnFindExecutableClick
end
object btnAdd: TButton
Left = 148
Top = 120
Width = 75
Height = 25
Caption = '&Add'
TabOrder = 4
OnClick = btnAddClick
end
object btnCancel: TButton
Left = 229
Top = 120
Width = 75
Height = 25
Caption = '&Cancel'
TabOrder = 5
OnClick = btnCancelClick
end
object egParams: TEdit
Left = 8
Top = 93
Width = 313
Height = 21
Color = clBtnFace
ReadOnly = True
TabOrder = 6
end
object odEditor: TOpenDialog
Left = 272
Top = 64
end
end