mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 19:38:18 +02:00
221 lines
4.5 KiB
Plaintext
221 lines
4.5 KiB
Plaintext
object TreeViewItemsEditorForm: TTreeViewItemsEditorForm
|
||
BorderIcons = [biSystemMenu, biHelp]
|
||
Caption = 'TreeView Items Editor'
|
||
ClientHeight = 261
|
||
ClientWidth = 487
|
||
PixelsPerInch = 96
|
||
Position = poDesktopCenter
|
||
HorzScrollBar.Page = 486
|
||
VertScrollBar.Page = 260
|
||
Left = 313
|
||
Height = 261
|
||
Top = 194
|
||
Width = 487
|
||
object Button1: TButton
|
||
Anchors = [akRight, akBottom]
|
||
Caption = 'OK'
|
||
ModalResult = 1
|
||
TabOrder = 0
|
||
Left = 166
|
||
Height = 25
|
||
Top = 229
|
||
Width = 75
|
||
end
|
||
object Button2: TButton
|
||
Anchors = [akRight, akBottom]
|
||
Caption = 'Cancel'
|
||
ModalResult = 2
|
||
TabOrder = 1
|
||
Left = 246
|
||
Height = 25
|
||
Top = 229
|
||
Width = 75
|
||
end
|
||
object btnApply: TButton
|
||
Anchors = [akRight, akBottom]
|
||
Caption = '&Apply'
|
||
OnClick = btnApplyClick
|
||
TabOrder = 2
|
||
Left = 326
|
||
Height = 25
|
||
Top = 229
|
||
Width = 75
|
||
end
|
||
object Button4: TButton
|
||
Anchors = [akRight, akBottom]
|
||
Caption = 'Help'
|
||
TabOrder = 3
|
||
Left = 406
|
||
Height = 25
|
||
Top = 229
|
||
Width = 75
|
||
end
|
||
object GroupBox1: TGroupBox
|
||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||
Caption = 'Items'
|
||
ClientHeight = 195
|
||
ClientWidth = 275
|
||
ParentColor = True
|
||
TabOrder = 4
|
||
Left = 8
|
||
Height = 213
|
||
Top = 8
|
||
Width = 279
|
||
object TreeView1: TTreeView
|
||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||
DefaultItemHeight = 15
|
||
TabOrder = 0
|
||
OnClick = TreeView1Click
|
||
Left = 6
|
||
Height = 188
|
||
Width = 184
|
||
end
|
||
object BtnNewItem: TButton
|
||
Anchors = [akTop, akRight]
|
||
Caption = '&New Item'
|
||
OnClick = BtnNewItemClick
|
||
TabOrder = 1
|
||
Left = 197
|
||
Height = 25
|
||
Top = 4
|
||
Width = 75
|
||
Tag = 1
|
||
end
|
||
object Button6: TButton
|
||
Anchors = [akTop, akRight]
|
||
Caption = 'N&ew SubItem'
|
||
OnClick = BtnNewItemClick
|
||
TabOrder = 2
|
||
Left = 197
|
||
Height = 25
|
||
Top = 36
|
||
Width = 75
|
||
end
|
||
object btnDelete: TButton
|
||
Anchors = [akTop, akRight]
|
||
Caption = '&Delete'
|
||
OnClick = btnDeleteClick
|
||
TabOrder = 3
|
||
Left = 197
|
||
Height = 25
|
||
Top = 70
|
||
Width = 75
|
||
end
|
||
object btnLoad: TButton
|
||
Anchors = [akTop, akRight]
|
||
Caption = '&Load'
|
||
OnClick = btnLoadClick
|
||
TabOrder = 4
|
||
Left = 197
|
||
Height = 25
|
||
Top = 102
|
||
Width = 75
|
||
end
|
||
object btnSave: TButton
|
||
Anchors = [akTop, akRight]
|
||
BorderSpacing.OnChange = nil
|
||
Caption = '&Save'
|
||
OnClick = btnSaveClick
|
||
TabOrder = 5
|
||
Left = 197
|
||
Height = 25
|
||
Top = 136
|
||
Width = 75
|
||
end
|
||
end
|
||
object GroupBox2: TGroupBox
|
||
Anchors = [akTop, akRight, akBottom]
|
||
Caption = 'Item Properties'
|
||
ClientHeight = 195
|
||
ClientWidth = 181
|
||
ParentColor = True
|
||
TabOrder = 5
|
||
Left = 296
|
||
Height = 213
|
||
Top = 8
|
||
Width = 185
|
||
object Label1: TLabel
|
||
Caption = 'Text:'
|
||
Color = clNone
|
||
FocusControl = edtText
|
||
Left = 8
|
||
Height = 17
|
||
Top = 10
|
||
Width = 65
|
||
end
|
||
object Label2: TLabel
|
||
Caption = 'Image Index:'
|
||
Color = clNone
|
||
FocusControl = edtIndexImg
|
||
Left = 9
|
||
Height = 17
|
||
Top = 44
|
||
Width = 65
|
||
end
|
||
object Label3: TLabel
|
||
Caption = 'Selected index:'
|
||
Color = clNone
|
||
FocusControl = edtIndexSel
|
||
Left = 6
|
||
Height = 17
|
||
Top = 78
|
||
Width = 78
|
||
end
|
||
object Label4: TLabel
|
||
Caption = 'State Index:'
|
||
Color = clNone
|
||
FocusControl = edtIndexState
|
||
Left = 8
|
||
Height = 17
|
||
Top = 110
|
||
Width = 65
|
||
end
|
||
object edtText: TEdit
|
||
OnChange = Edit1Change
|
||
TabOrder = 0
|
||
Left = 86
|
||
Height = 23
|
||
Top = 4
|
||
Width = 91
|
||
end
|
||
object edtIndexImg: TEdit
|
||
OnChange = Edit1Change
|
||
TabOrder = 1
|
||
Left = 86
|
||
Height = 23
|
||
Top = 38
|
||
Width = 48
|
||
end
|
||
object edtIndexSel: TEdit
|
||
OnChange = Edit1Change
|
||
TabOrder = 2
|
||
Left = 86
|
||
Height = 23
|
||
Top = 72
|
||
Width = 48
|
||
end
|
||
object edtIndexState: TEdit
|
||
OnChange = Edit1Change
|
||
TabOrder = 3
|
||
Left = 86
|
||
Height = 23
|
||
Top = 104
|
||
Width = 48
|
||
end
|
||
end
|
||
object OpenDialog1: TOpenDialog
|
||
Title = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>'
|
||
FilterIndex = 0
|
||
Title = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>'
|
||
left = 5
|
||
top = 237
|
||
end
|
||
object SaveDialog1: TSaveDialog
|
||
Title = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>'
|
||
FilterIndex = 0
|
||
Title = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>'
|
||
left = 5
|
||
top = 272
|
||
end
|
||
end
|