-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmphpsettings.dfm
183 lines (183 loc) · 5.54 KB
/
frmphpsettings.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
object Form1: TForm1
Left = 0
Top = 0
BorderStyle = bsSingle
Caption = 'PHP Settings'
ClientHeight = 440
ClientWidth = 457
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
StyleElements = [seFont, seClient]
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
TextHeight = 13
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 457
Height = 382
ActivePage = tbsVisual
Align = alClient
TabOrder = 0
object tbsVisual: TTabSheet
Caption = 'Visual'
object vstPHP: TVirtualStringTree
Left = 0
Top = 0
Width = 449
Height = 354
Align = alClient
Colors.BorderColor = 15987699
Colors.DisabledColor = clGray
Colors.DropMarkColor = 15385233
Colors.DropTargetColor = 15385233
Colors.DropTargetBorderColor = 15385233
Colors.FocusedSelectionColor = 15385233
Colors.FocusedSelectionBorderColor = 15385233
Colors.GridLineColor = 15987699
Colors.HeaderHotColor = clWhite
Colors.HotColor = clBlack
Colors.SelectionRectangleBlendColor = 15385233
Colors.SelectionRectangleBorderColor = 15385233
Colors.SelectionTextColor = clWhite
Colors.TreeLineColor = 9471874
Colors.UnfocusedColor = clGray
Colors.UnfocusedSelectionColor = clWhite
Colors.UnfocusedSelectionBorderColor = clWhite
Header.AutoSizeIndex = 0
Header.Height = 13
Header.Options = [hoColumnResize, hoDrag, hoShowSortGlyphs, hoVisible]
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScroll, toAutoTristateTracking]
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toEditable, toInitOnSave, toWheelPanning, toEditOnDblClick]
TreeOptions.PaintOptions = [toHideFocusRect, toShowBackground, toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware, toUseBlendedImages, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toExtendedFocus, toFullRowSelect, toRightClickSelect]
OnBeforeCellPaint = vstPHPBeforeCellPaint
OnChecked = vstPHPChecked
OnEditing = vstPHPEditing
OnFreeNode = vstPHPFreeNode
OnGetText = vstPHPGetText
OnInitChildren = vstPHPInitChildren
OnInitNode = vstPHPInitNode
OnNewText = vstPHPNewText
OnNodeDblClick = vstPHPNodeDblClick
Touch.InteractiveGestures = [igPan, igPressAndTap]
Touch.InteractiveGestureOptions = [igoPanSingleFingerHorizontal, igoPanSingleFingerVertical, igoPanInertia, igoPanGutter, igoParentPassthrough]
Columns = <
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus]
Position = 0
Text = 'Key'
Width = 197
end
item
Position = 1
Text = 'Value'
Width = 231
end
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coAllowFocus, coEditable]
Position = 2
Text = 'Description'
Width = 244
end>
end
end
object tbsSourceCode: TTabSheet
Caption = 'SourceCode'
ImageIndex = 1
object SynMemo1: TSynEdit
Left = 0
Top = 0
Width = 449
Height = 354
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
Font.Quality = fqClearTypeNatural
TabOrder = 0
UseCodeFolding = False
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Courier New'
Gutter.Font.Style = []
Gutter.Font.Quality = fqClearTypeNatural
Gutter.Bands = <
item
Kind = gbkMarks
Width = 13
end
item
Kind = gbkLineNumbers
end
item
Kind = gbkFold
end
item
Kind = gbkTrackChanges
end
item
Kind = gbkMargin
Width = 3
end>
Highlighter = SynIniSyn1
Lines.Strings = (
'SynMemo1')
ReadOnly = True
SelectedColor.Alpha = 0.400000005960464500
OnChange = SynMemo1Change
end
end
end
object Panel1: TPanel
Left = 0
Top = 382
Width = 457
Height = 58
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object btnSave: TButton
Left = 287
Top = 16
Width = 75
Height = 25
Caption = 'Save'
Enabled = False
TabOrder = 0
OnClick = btnSaveClick
end
object btnCancel: TButton
Left = 368
Top = 17
Width = 75
Height = 25
Caption = 'Cancel'
TabOrder = 1
OnClick = btnCancelClick
end
object btnEditMode: TButton
Left = 4
Top = 16
Width = 93
Height = 25
Caption = 'Enable editing'
TabOrder = 2
OnClick = btnEditModeClick
end
end
object SynIniSyn1: TSynIniSyn
Left = 316
Top = 232
end
end