lazarus/components/todolist/todolist.lfm

211 lines
4.6 KiB
Plaintext

object IDETodoWindow: TIDETodoWindow
Left = 415
Height = 300
Top = 398
Width = 837
ActiveControl = lvTodo
Caption = 'IDETodoWindow'
ClientHeight = 300
ClientWidth = 837
KeyPreview = True
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
Position = poScreenCenter
SessionProperties = 'chkListed.Checked;chkUsed.Checked;chkSourceEditor.Checked;chkPackages.Checked'
LCLVersion = '1.7'
object lvTodo: TListView
Left = 6
Height = 207
Top = 54
Width = 825
Align = alClient
BorderSpacing.Around = 6
Columns = <
item
Caption = 'Done'
Width = 100
end
item
Caption = 'Description'
Width = 700
end
item
Caption = 'Priority'
Width = 100
end
item
Caption = 'Module'
Width = 100
end
item
Caption = 'Line'
Width = 100
end
item
Caption = 'Owner'
Width = 100
end
item
Caption = 'Category'
end>
RowSelect = True
ScrollBars = ssAutoBoth
SortType = stText
TabOrder = 1
ViewStyle = vsReport
OnClick = lvTodoClick
OnColumnClick = lvTodoColumnClick
OnCompare = lvTodoCompare
end
object ToolBar: TToolBar
Left = 0
Height = 48
Top = 0
Width = 837
AutoSize = True
ButtonHeight = 46
ButtonWidth = 47
Caption = 'ToolBar'
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 0
object tbRefresh: TToolButton
Left = 1
Top = 2
Action = acRefresh
AutoSize = True
end
object tbGoto: TToolButton
Left = 52
Top = 2
Action = acGoto
AutoSize = True
end
object tbExport: TToolButton
Left = 99
Top = 2
Action = acExport
AutoSize = True
end
object N1: TToolButton
Left = 146
Height = 46
Top = 2
Width = 5
Caption = 'N1'
Style = tbsDivider
end
object grbOptions: TGroupBox
Left = 151
Height = 40
Top = 2
Width = 244
AutoSize = True
Caption = 'Options'
ClientHeight = 21
ClientWidth = 240
TabOrder = 0
object chkListed: TCheckBox
Left = 0
Height = 21
Top = 0
Width = 56
Align = alLeft
Caption = '&Listed'
Checked = True
OnChange = chkListedChange
State = cbChecked
TabOrder = 0
end
object chkUsed: TCheckBox
Left = 56
Height = 21
Top = 0
Width = 52
Align = alLeft
Caption = '&Used'
Checked = True
OnChange = chkUsedChange
State = cbChecked
TabOrder = 1
end
object chkSourceEditor: TCheckBox
Left = 108
Height = 21
Top = 0
Width = 56
Align = alLeft
Caption = 'Editor'
Checked = True
OnChange = chkSourceEditorChange
State = cbChecked
TabOrder = 2
end
object chkPackages: TCheckBox
Left = 164
Height = 21
Top = 0
Width = 76
Align = alLeft
Caption = '&Packages'
OnChange = chkPackagesChange
TabOrder = 3
end
end
end
object ButtonPanel: TButtonPanel
Left = 6
Height = 27
Top = 267
Width = 825
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
HelpButton.OnClick = HelpButtonClick
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 2
ShowButtons = [pbClose, pbHelp]
ShowBevel = False
end
object ActionList: TActionList
Left = 368
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 SaveDialog: TSaveDialog
OnShow = SaveDialogShow
DefaultExt = '.csv'
Filter = 'csv|*.csv'
Options = [ofCreatePrompt, ofEnableSizing, ofViewDetail]
Left = 448
Top = 11
end
object XMLPropStorage: TXMLPropStorage
StoredValues = <>
FileName = 'todolistoptions.xml'
Active = False
OnRestoringProperties = XMLPropStorageRestoringProperties
OnRestoreProperties = XMLPropStorageRestoreProperties
Left = 544
Top = 11
end
end