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
|
object IDEOptionsDialog: TIDEOptionsDialog
Left = 372
Height = 500
Top = 202
Width = 800
ActiveControl = FilterEdit
BorderIcons = [biSystemMenu]
Caption = 'IDEOptionsDialog'
ClientHeight = 500
ClientWidth = 800
Constraints.MinHeight = 350
Constraints.MinWidth = 500
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.9.0.0'
object ButtonPanel: TButtonPanel
AnchorSideLeft.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
Left = 6
Height = 34
Top = 460
Width = 788
BorderSpacing.Left = 6
BorderSpacing.Right = 6
BorderSpacing.Bottom = 6
BorderSpacing.Around = 0
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 0
ShowButtons = [pbOK, pbCancel, pbHelp]
end
object CatTVSplitter: TSplitter
Left = 255
Height = 460
Top = 0
Width = 4
end
object CategoryPanel: TPanel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
Left = 0
Height = 460
Top = 0
Width = 255
Align = alLeft
BevelOuter = bvNone
ClientHeight = 460
ClientWidth = 255
Constraints.MinWidth = 150
TabOrder = 2
object CategoryTree: TTreeView
AnchorSideLeft.Control = FilterEdit
AnchorSideTop.Control = FilterEdit
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = CategoryPanel
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = SettingsPanel
Left = 6
Height = 417
Top = 37
Width = 249
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 6
ReadOnly = True
ScrollBars = ssAutoBoth
TabOrder = 0
OnChange = CategoryTreeChange
OnCollapsed = CategoryTreeCollapsed
OnExpanded = CategoryTreeExpanded
OnKeyDown = CategoryTreeKeyDown
Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
end
object FilterEdit: TTreeFilterEdit
AnchorSideLeft.Control = CategoryPanel
AnchorSideTop.Control = CategoryPanel
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 6
Width = 249
OnFilterItem = FilterEditFilterItem
ButtonWidth = 23
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Top = 6
NumGlyphs = 1
MaxLength = 0
TabOrder = 1
FilteredTreeview = CategoryTree
end
object SettingsPanel: TPanel
Left = 0
Height = 6
Top = 454
Width = 255
Align = alBottom
AutoSize = True
BevelOuter = bvNone
Constraints.MinHeight = 6
TabOrder = 2
end
end
object BuildModeSelectPanel: TPanel
AnchorSideLeft.Control = CatTVSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = EditorsPanel
AnchorSideRight.Side = asrBottom
Left = 259
Height = 40
Top = 0
Width = 535
Anchors = [akTop, akLeft, akRight]
BevelOuter = bvNone
ClientHeight = 40
ClientWidth = 535
TabOrder = 3
object BuildModeComboBox: TComboBox
AnchorSideLeft.Control = BuildModesLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = BuildModesLabel
AnchorSideTop.Side = asrCenter
Left = 125
Height = 35
Top = -1
Width = 175
BorderSpacing.Left = 6
ItemHeight = 0
OnSelect = BuildModeComboBoxSelect
Style = csDropDownList
TabOrder = 0
end
object BuildModeManageButton: TButton
AnchorSideLeft.Control = BuildModeComboBox
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = BuildModeComboBox
AnchorSideBottom.Control = BuildModeComboBox
AnchorSideBottom.Side = asrBottom
Left = 301
Height = 35
Top = -1
Width = 23
Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Left = 1
Caption = '...'
OnClick = BuildModeManageButtonClick
TabOrder = 1
end
object BuildModesLabel: TLabel
Left = 12
Height = 19
Top = 7
Width = 107
Caption = 'BuildModesLabel'
ParentColor = False
end
end
object EditorsPanel: TScrollBox
AnchorSideLeft.Control = CatTVSplitter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = BuildModeSelectPanel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel
Left = 259
Height = 420
Top = 40
Width = 535
HorzScrollBar.Page = 1
HorzScrollBar.Tracking = True
VertScrollBar.Page = 1
VertScrollBar.Tracking = True
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Right = 6
BorderStyle = bsNone
TabOrder = 4
end
end
|