lazarus/ide/todolist.lfm

118 lines
2.3 KiB
Plaintext

object frmTodo: TfrmTodo
Left = 429
Height = 300
Top = 227
Width = 643
HorzScrollBar.Page = 642
VertScrollBar.Page = 299
ActiveControl = lvTodo
Caption = 'frmTodo'
ClientHeight = 300
ClientWidth = 643
KeyPreview = True
OnCreate = FormCreate
OnKeyDown = FormKeyDown
Position = poScreenCenter
object StatusBar: TStatusBar
Height = 23
Top = 277
Width = 643
Panels = <>
end
object lvTodo: TListView
Height = 229
Top = 48
Width = 643
Align = alClient
Columns = <
item
AutoSize = True
Caption = 'Caption'
Width = 40
end
item
AutoSize = True
Caption = 'Caption'
Width = 100
end
item
AutoSize = True
Caption = 'Caption'
Width = 40
end
item
AutoSize = True
Caption = 'Caption'
Width = 100
end
item
Caption = 'Caption'
end
item
Caption = 'Caption'
end
item
Caption = 'Caption'
end>
RowSelect = True
ScrollBars = ssAutoBoth
TabOrder = 0
ViewStyle = vsReport
OnClick = lvTodoClick
end
object ToolBar: TToolBar
Height = 48
Width = 643
AutoSize = True
ButtonHeight = 46
ButtonWidth = 47
Caption = 'ToolBar'
Flat = True
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 1
object tbOptions: TToolButton
Left = 108
Top = 2
AllowAllUp = True
AutoSize = True
Caption = 'Options'
Visible = False
end
object tbPrint: TToolButton
Left = 78
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 = 47
Top = 2
Action = acGoto
AutoSize = True
end
end
object ActionList: TActionList
left = 414
top = 11
object acGoto: TAction
Caption = 'Goto'
DisableIfNoHandler = True
OnExecute = acGotoExecute
end
object acRefresh: TAction
Caption = 'Refresh'
DisableIfNoHandler = True
OnExecute = acRefreshExecute
end
end
end