mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-05 08:55:15 -05:00
de92bc6604
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@383 3f818213-9676-44b0-a9b4-5e4c4e03d09d
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
object SettingsForm: TSettingsForm
|
|
Left = 563
|
|
Height = 558
|
|
Top = 173
|
|
Width = 360
|
|
ActiveControl = SettingsTreeView
|
|
Caption = 'Simba Settings'
|
|
ClientHeight = 558
|
|
ClientWidth = 360
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
LCLVersion = '0.9.29'
|
|
object SettingsTreeView: TTreeView
|
|
Left = 16
|
|
Height = 473
|
|
Top = 16
|
|
Width = 324
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
DefaultItemHeight = 19
|
|
ReadOnly = True
|
|
ScrollBars = ssAutoBoth
|
|
TabOrder = 0
|
|
OnDblClick = SettingsTreeViewDblClick
|
|
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
|
|
end
|