117 lines
2.4 KiB
Plaintext
117 lines
2.4 KiB
Plaintext
object frmTBXDTM: TfrmTBXDTM
|
|
Left = 328
|
|
Top = 290
|
|
BorderStyle = bsDialog
|
|
Caption = 'TBX Theme Manager'
|
|
ClientHeight = 263
|
|
ClientWidth = 351
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
OnActivate = FormActivate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Label1: TLabel
|
|
Left = 9
|
|
Top = 6
|
|
Width = 75
|
|
Height = 13
|
|
Caption = 'Loaded Themes'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 8
|
|
Top = 239
|
|
Width = 76
|
|
Height = 13
|
|
Caption = 'Current Theme:'
|
|
end
|
|
object Label3: TLabel
|
|
Left = 89
|
|
Top = 239
|
|
Width = 3
|
|
Height = 13
|
|
end
|
|
object ListBox1: TListBox
|
|
Left = 7
|
|
Top = 21
|
|
Width = 254
|
|
Height = 209
|
|
ItemHeight = 13
|
|
TabOrder = 0
|
|
OnDblClick = ListBox1DblClick
|
|
end
|
|
object Button1: TButton
|
|
Left = 265
|
|
Top = 21
|
|
Width = 82
|
|
Height = 25
|
|
Action = actadd
|
|
TabOrder = 1
|
|
end
|
|
object Button2: TButton
|
|
Left = 265
|
|
Top = 48
|
|
Width = 82
|
|
Height = 25
|
|
Action = actremove
|
|
TabOrder = 2
|
|
end
|
|
object Button4: TButton
|
|
Left = 266
|
|
Top = 233
|
|
Width = 82
|
|
Height = 25
|
|
Caption = 'Close'
|
|
ModalResult = 1
|
|
TabOrder = 3
|
|
end
|
|
object Button3: TButton
|
|
Left = 265
|
|
Top = 91
|
|
Width = 82
|
|
Height = 25
|
|
Action = actActivate
|
|
TabOrder = 4
|
|
end
|
|
object Button5: TButton
|
|
Left = 266
|
|
Top = 118
|
|
Width = 82
|
|
Height = 25
|
|
Caption = 'Default'
|
|
TabOrder = 5
|
|
OnClick = Button5Click
|
|
end
|
|
object ActionList1: TActionList
|
|
Left = 170
|
|
Top = 128
|
|
object actadd: TAction
|
|
Caption = 'Load'
|
|
OnExecute = actaddExecute
|
|
end
|
|
object actremove: TAction
|
|
Caption = 'Unload'
|
|
OnExecute = actremoveExecute
|
|
OnUpdate = actremoveUpdate
|
|
end
|
|
object actActivate: TAction
|
|
Caption = 'Activate'
|
|
OnExecute = actActivateExecute
|
|
OnUpdate = actActivateUpdate
|
|
end
|
|
end
|
|
object OpenDialog1: TOpenDialog
|
|
DefaultExt = 'tbxt'
|
|
Filter = 'TBX Theme Package|*.tbxt|All Files|*.*'
|
|
Options = [ofReadOnly, ofHideReadOnly, ofAllowMultiSelect, ofEnableSizing]
|
|
Title = 'Load TBX Theme Package'
|
|
Left = 94
|
|
Top = 95
|
|
end
|
|
end
|