lazarus/ideintf/listviewpropedit.lfm
2006-01-29 00:00:16 +00:00

194 lines
4.2 KiB
Plaintext

object ListViewItemsEditorForm: TListViewItemsEditorForm
ActiveControl = BtnOK
BorderIcons = [biSystemMenu, biHelp]
Caption = 'ListView Items Editor'
ClientHeight = 246
ClientWidth = 487
Constraints.MinHeight = 200
Constraints.MinWidth = 400
OnCreate = FormCreate
PixelsPerInch = 96
Position = poScreenCenter
HorzScrollBar.Page = 486
VertScrollBar.Page = 245
Left = 313
Height = 246
Top = 194
Width = 487
object BtnOK: TBitBtn
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 2
Caption = '&OK'
Kind = bkOK
ModalResult = 1
NumGlyphs = 0
TabOrder = 0
Left = 166
Height = 25
Top = 214
Width = 75
end
object BtnCancel: TBitBtn
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 2
Cancel = True
Caption = 'Cancel'
Kind = bkCancel
ModalResult = 2
NumGlyphs = 0
TabOrder = 1
Left = 246
Height = 25
Top = 214
Width = 75
end
object BtnApply: TBitBtn
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 2
Caption = '&Apply'
NumGlyphs = 0
OnClick = btnApplyClick
TabOrder = 2
Left = 326
Height = 25
Top = 214
Width = 75
end
object BtnHelp: TBitBtn
Anchors = [akRight, akBottom]
BorderSpacing.InnerBorder = 2
Caption = '&Help'
Kind = bkHelp
NumGlyphs = 0
TabOrder = 3
Left = 406
Height = 25
Top = 214
Width = 75
end
object GroupBox1: TGroupBox
Anchors = [akTop, akLeft, akRight, akBottom]
Caption = 'Items'
ClientHeight = 180
ClientWidth = 276
TabOrder = 4
Left = 8
Height = 198
Top = 8
Width = 280
object TreeView1: TTreeView
Anchors = [akTop, akLeft, akRight, akBottom]
DefaultItemHeight = 15
HideSelection = False
TabOrder = 0
OnSelectionChanged = TreeView1SelectionChanged
Options = [tvoAutoItemHeight, tvoKeepCollapsedNodes, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
Left = 6
Height = 173
Width = 185
end
object BtnNewItem: TButton
Anchors = [akTop, akRight]
BorderSpacing.InnerBorder = 2
Caption = '&New Item'
Default = True
OnClick = BtnNewItemClick
TabOrder = 1
Left = 198
Height = 25
Top = 4
Width = 75
Tag = 1
end
object BtnNewSubItem: TButton
Anchors = [akTop, akRight]
BorderSpacing.InnerBorder = 2
Caption = 'N&ew SubItem'
OnClick = BtnNewItemClick
TabOrder = 2
Left = 198
Height = 25
Top = 36
Width = 75
end
object BtnDelete: TButton
Anchors = [akTop, akRight]
BorderSpacing.InnerBorder = 2
Caption = '&Delete'
OnClick = btnDeleteClick
TabOrder = 3
Left = 198
Height = 25
Top = 70
Width = 75
end
end
object GroupBox2: TGroupBox
Anchors = [akTop, akRight, akBottom]
Caption = 'Item Properties'
ClientHeight = 180
ClientWidth = 181
TabOrder = 5
Left = 296
Height = 198
Top = 8
Width = 185
object LabelCaption: TLabel
Caption = 'Caption:'
Color = clNone
FocusControl = edtText
ParentColor = False
Left = 8
Height = 14
Top = 10
Width = 42
end
object LabelImageIndex: TLabel
Caption = 'Image Index:'
Color = clNone
FocusControl = edtIndexImg
ParentColor = False
Left = 9
Height = 14
Top = 44
Width = 66
end
object LabelStateIndex: TLabel
Caption = 'State Index:'
Color = clNone
FocusControl = edtIndexState
ParentColor = False
Visible = False
Left = 8
Height = 14
Top = 78
Width = 62
end
object edtText: TEdit
OnChange = Edit1Change
TabOrder = 0
Left = 86
Height = 23
Top = 4
Width = 91
end
object edtIndexImg: TEdit
OnEditingDone = edtIndexStateEditingDone
TabOrder = 1
Left = 86
Height = 23
Top = 38
Width = 48
end
object edtIndexState: TEdit
OnEditingDone = edtIndexStateEditingDone
TabOrder = 2
Visible = False
Left = 86
Height = 23
Top = 72
Width = 48
end
end
end