mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 00:29:36 +02:00
137 lines
2.6 KiB
Plaintext
137 lines
2.6 KiB
Plaintext
object frmTodo: TfrmTodo
|
|
Left = 462
|
|
Height = 300
|
|
Top = 419
|
|
Width = 643
|
|
ActiveControl = lvTodo
|
|
Caption = 'frmTodo'
|
|
ClientHeight = 300
|
|
ClientWidth = 643
|
|
KeyPreview = True
|
|
OnCreate = FormCreate
|
|
OnKeyDown = FormKeyDown
|
|
Position = poScreenCenter
|
|
LCLVersion = '0.9.27'
|
|
object StatusBar: TStatusBar
|
|
Left = 0
|
|
Height = 21
|
|
Top = 279
|
|
Width = 643
|
|
Panels = <>
|
|
end
|
|
object lvTodo: TListView
|
|
Left = 0
|
|
Height = 231
|
|
Top = 48
|
|
Width = 643
|
|
Align = alClient
|
|
Columns = <
|
|
item
|
|
AutoSize = True
|
|
Caption = 'Caption'
|
|
Width = 57
|
|
end
|
|
item
|
|
AutoSize = True
|
|
Caption = 'Caption'
|
|
Width = 57
|
|
end
|
|
item
|
|
AutoSize = True
|
|
Caption = 'Caption'
|
|
Width = 57
|
|
end
|
|
item
|
|
AutoSize = True
|
|
Caption = 'Caption'
|
|
Width = 57
|
|
end
|
|
item
|
|
Caption = 'Caption'
|
|
end
|
|
item
|
|
Caption = 'Caption'
|
|
end
|
|
item
|
|
Caption = 'Caption'
|
|
Width = 315
|
|
end>
|
|
RowSelect = True
|
|
ScrollBars = ssAutoBoth
|
|
TabOrder = 0
|
|
ViewStyle = vsReport
|
|
OnClick = lvTodoClick
|
|
end
|
|
object ToolBar: TToolBar
|
|
Left = 0
|
|
Height = 48
|
|
Top = 0
|
|
Width = 643
|
|
AutoSize = True
|
|
ButtonHeight = 46
|
|
ButtonWidth = 47
|
|
Caption = 'ToolBar'
|
|
ParentShowHint = False
|
|
ShowCaptions = True
|
|
ShowHint = True
|
|
TabOrder = 1
|
|
object tbOptions: TToolButton
|
|
Left = 189
|
|
Top = 2
|
|
AllowAllUp = True
|
|
AutoSize = True
|
|
Caption = 'Options'
|
|
Visible = False
|
|
end
|
|
object tbPrint: TToolButton
|
|
Left = 142
|
|
Top = 2
|
|
AutoSize = True
|
|
Caption = 'Print'
|
|
Visible = False
|
|
end
|
|
object tbRefresh: TToolButton
|
|
Left = 1
|
|
Top = 2
|
|
Action = acRefresh
|
|
AutoSize = True
|
|
end
|
|
object tbGoto: TToolButton
|
|
Left = 48
|
|
Top = 2
|
|
Action = acGoto
|
|
AutoSize = True
|
|
end
|
|
object tbExport: TToolButton
|
|
Left = 95
|
|
Top = 2
|
|
Action = acExport
|
|
AutoSize = True
|
|
end
|
|
end
|
|
object ActionList: TActionList
|
|
left = 414
|
|
top = 11
|
|
object acGoto: TAction
|
|
Caption = 'Goto'
|
|
OnExecute = acGotoExecute
|
|
end
|
|
object acRefresh: TAction
|
|
Caption = 'Refresh'
|
|
OnExecute = acRefreshExecute
|
|
end
|
|
object acExport: TAction
|
|
Caption = 'Export'
|
|
OnExecute = acExportExecute
|
|
end
|
|
end
|
|
object SaveDialog1: TSaveDialog
|
|
OnShow = SaveDialog1Show
|
|
DefaultExt = '.csv'
|
|
Filter = 'csv|*.csv'
|
|
Options = [ofCreatePrompt, ofEnableSizing, ofViewDetail]
|
|
left = 448
|
|
top = 11
|
|
end
|
|
end
|