mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-10 19:35:10 -05:00
75 lines
1.7 KiB
Plaintext
75 lines
1.7 KiB
Plaintext
object SettingsForm: TSettingsForm
|
|
Left = 563
|
|
Height = 558
|
|
Top = 173
|
|
Width = 360
|
|
Caption = 'Simba Settings'
|
|
ClientHeight = 558
|
|
ClientWidth = 360
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
OnMouseUp = MouseUp
|
|
LCLVersion = '0.9.29'
|
|
object SettingsTreeView: TTreeView
|
|
Left = 16
|
|
Height = 473
|
|
Top = 16
|
|
Width = 324
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
DefaultItemHeight = 15
|
|
ReadOnly = True
|
|
ScrollBars = ssAutoBoth
|
|
TabOrder = 0
|
|
OnDblClick = SettingsTreeViewDblClick
|
|
OnKeyPress = OnKeyPress
|
|
OnMouseUp = MouseUp
|
|
Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
|
|
end
|
|
object SettingsFormButtonOK: TButton
|
|
Left = 265
|
|
Height = 25
|
|
Top = 511
|
|
Width = 75
|
|
Anchors = [akRight, akBottom]
|
|
Caption = 'OK'
|
|
OnClick = SettingsFormButtonOKClick
|
|
TabOrder = 1
|
|
end
|
|
object SettingsFormButtonCancel: TButton
|
|
Left = 16
|
|
Height = 25
|
|
Top = 511
|
|
Width = 75
|
|
Anchors = [akLeft, akBottom]
|
|
Caption = 'Cancel'
|
|
OnClick = SettingsFormButtonCancelClick
|
|
TabOrder = 2
|
|
end
|
|
object DeleteButton: TButton
|
|
Left = 120
|
|
Height = 25
|
|
Top = 511
|
|
Width = 120
|
|
Anchors = [akBottom]
|
|
Caption = 'Delete Selected'
|
|
OnClick = DeleteSelected
|
|
TabOrder = 3
|
|
end
|
|
object SettingsPopup: TPopupMenu
|
|
left = 40
|
|
top = 32
|
|
object PopupRename: TMenuItem
|
|
Caption = 'Rename'
|
|
OnClick = PopupRenameClick
|
|
end
|
|
object PopupDelete: TMenuItem
|
|
Caption = 'Delete'
|
|
OnClick = PopupDeleteClick
|
|
end
|
|
object PopupCreate: TMenuItem
|
|
Caption = 'Create subkey'
|
|
OnClick = PopupCreateKey
|
|
end
|
|
end
|
|
end
|