This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ClassesListDockingForms.dfm
103 lines (103 loc) · 2.59 KB
/
ClassesListDockingForms.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
inherited ClassesListDockingForm: TClassesListDockingForm
BorderIcons = [biSystemMenu]
BorderStyle = bsSizeToolWin
Caption = 'PHP Class Inspector'
ClientHeight = 632
ClientWidth = 385
OnCreate = FormCreate
OnHide = FormHide
OnKeyPress = FormKeyPress
OnShow = FormShow
ExplicitWidth = 401
ExplicitHeight = 666
PixelsPerInch = 96
TextHeight = 13
object StatusBar: TStatusBar
Left = 0
Top = 613
Width = 385
Height = 19
Panels = <>
SimplePanel = True
SizeGrip = False
end
object edtSearch: TLabeledEdit
Left = 4
Top = 18
Width = 373
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 37
EditLabel.Height = 13
EditLabel.Caption = 'Search:'
TabOrder = 1
OnChange = edtSearchChange
end
object cbxShowPrivateProtected: TCheckBox
Left = 4
Top = 551
Width = 373
Height = 17
Anchors = [akLeft, akRight, akBottom]
Caption = 'Show private && protected'
TabOrder = 2
OnClick = cbxShowPrivateProtectedClick
end
object cbxShowSeparately: TCheckBox
Left = 4
Top = 568
Width = 373
Height = 17
Anchors = [akLeft, akRight, akBottom]
Caption = 'Show attributes && methods separately'
Checked = True
State = cbChecked
TabOrder = 3
OnClick = cbxShowSeparatelyClick
end
object ClassListTreeView: TVirtualStringTree
Left = 4
Top = 44
Width = 373
Height = 501
Anchors = [akLeft, akTop, akRight, akBottom]
EmptyListMessage = 'No classes found'
Header.AutoSizeIndex = 0
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'Tahoma'
Header.Font.Style = []
Header.MainColumn = -1
Images = TreeViewImageList
Margin = 2
TabOrder = 4
OnDrawText = ClassListTreeViewDrawText
OnGetText = ClassListTreeViewGetText
OnGetImageIndex = ClassListTreeViewGetImageIndex
OnNodeDblClick = ClassListTreeViewNodeDblClick
Columns = <>
end
object cbxShowMethodParameters: TCheckBox
Left = 4
Top = 585
Width = 373
Height = 17
Anchors = [akLeft, akRight, akBottom]
Caption = 'Show method parameters'
Checked = True
State = cbChecked
TabOrder = 5
OnClick = cbxShowMethodParametersClick
end
object TreeViewImageList: TImageList
Left = 240
Top = 384
end
object ClassLinkingListStartTimer: TTimer
Interval = 200
OnTimer = ClassLinkingListStartTimerTimer
Left = 240
Top = 336
end
end