mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-30 23:42:41 +02:00
234 lines
4.7 KiB
Plaintext
234 lines
4.7 KiB
Plaintext
object FormMain: TFormMain
|
|
Left = 253
|
|
Height = 528
|
|
Top = 138
|
|
Width = 598
|
|
HorzScrollBar.Page = 597
|
|
VertScrollBar.Page = 527
|
|
ActiveControl = EditDocs
|
|
Caption = 'FPDoc Updater'
|
|
ClientHeight = 528
|
|
ClientWidth = 598
|
|
Constraints.MinHeight = 525
|
|
Constraints.MinWidth = 300
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
OnShow = FormShow
|
|
LCLVersion = '0.9.31'
|
|
object LabelDocs: TLabel
|
|
Left = 12
|
|
Height = 14
|
|
Top = 18
|
|
Width = 82
|
|
Caption = 'FPDoc files path:'
|
|
ParentColor = False
|
|
end
|
|
object LabelUnits: TLabel
|
|
Left = 12
|
|
Height = 14
|
|
Top = 54
|
|
Width = 54
|
|
Caption = 'Units path:'
|
|
ParentColor = False
|
|
end
|
|
object LabelBackup: TLabel
|
|
Left = 444
|
|
Height = 14
|
|
Top = 252
|
|
Width = 89
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'Backup extension:'
|
|
ParentColor = False
|
|
end
|
|
object LabelPackage: TLabel
|
|
Left = 432
|
|
Height = 14
|
|
Top = 161
|
|
Width = 45
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'Package:'
|
|
ParentColor = False
|
|
end
|
|
object LabelMakeSkel: TLabel
|
|
Left = 11
|
|
Height = 14
|
|
Top = 124
|
|
Width = 95
|
|
Caption = 'MakeSkel tool path:'
|
|
ParentColor = False
|
|
end
|
|
object LabelInclude: TLabel
|
|
Left = 11
|
|
Height = 14
|
|
Top = 90
|
|
Width = 87
|
|
Caption = 'Include files path:'
|
|
ParentColor = False
|
|
end
|
|
object EditDocs: TDirectoryEdit
|
|
Left = 180
|
|
Height = 21
|
|
Top = 12
|
|
Width = 359
|
|
ShowHidden = False
|
|
ButtonWidth = 45
|
|
NumGlyphs = 1
|
|
Anchors = [akTop, akLeft, akRight]
|
|
MaxLength = 0
|
|
TabOrder = 0
|
|
OnChange = EditDocsChange
|
|
end
|
|
object EditUnits: TDirectoryEdit
|
|
Left = 180
|
|
Height = 21
|
|
Top = 48
|
|
Width = 359
|
|
ShowHidden = False
|
|
ButtonWidth = 45
|
|
NumGlyphs = 1
|
|
Anchors = [akTop, akLeft, akRight]
|
|
MaxLength = 0
|
|
TabOrder = 1
|
|
OnChange = EditUnitsChange
|
|
end
|
|
object ButtonUpdate: TButton
|
|
Left = 426
|
|
Height = 25
|
|
Top = 396
|
|
Width = 122
|
|
Anchors = [akTop, akRight]
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Update'
|
|
OnClick = ButtonUpdateClick
|
|
TabOrder = 2
|
|
end
|
|
object ButtonUpdateAll: TButton
|
|
Left = 426
|
|
Height = 25
|
|
Top = 468
|
|
Width = 122
|
|
Anchors = [akTop, akRight]
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Update All'
|
|
OnClick = ButtonUpdateAllClick
|
|
TabOrder = 3
|
|
end
|
|
object ButtonUpdateNew: TButton
|
|
Left = 426
|
|
Height = 25
|
|
Top = 432
|
|
Width = 122
|
|
Anchors = [akTop, akRight]
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Update New'
|
|
Font.Color = clRed
|
|
OnClick = ButtonUpdateNewClick
|
|
ParentFont = False
|
|
TabOrder = 4
|
|
end
|
|
object ButtonRefresh: TButton
|
|
Left = 426
|
|
Height = 25
|
|
Top = 354
|
|
Width = 122
|
|
Anchors = [akTop, akRight]
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Refresh'
|
|
OnClick = ButtonRefreshClick
|
|
TabOrder = 5
|
|
end
|
|
object ListBox: TListBox
|
|
Left = 11
|
|
Height = 339
|
|
Top = 156
|
|
Width = 409
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
ItemHeight = 0
|
|
MultiSelect = True
|
|
OnDrawItem = ListBoxDrawItem
|
|
Style = lbOwnerDrawFixed
|
|
TabOrder = 6
|
|
end
|
|
object CheckBoxBackup: TCheckBox
|
|
Left = 439
|
|
Height = 17
|
|
Top = 222
|
|
Width = 107
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'Backup FPDoc files'
|
|
Checked = True
|
|
State = cbChecked
|
|
TabOrder = 7
|
|
end
|
|
object EditBackup: TEdit
|
|
Left = 444
|
|
Height = 21
|
|
Top = 276
|
|
Width = 80
|
|
Anchors = [akTop, akRight]
|
|
TabOrder = 8
|
|
Text = 'bak'
|
|
end
|
|
object EditPackage: TEdit
|
|
Left = 444
|
|
Height = 21
|
|
Top = 186
|
|
Width = 80
|
|
Anchors = [akTop, akRight]
|
|
TabOrder = 9
|
|
Text = 'lcl'
|
|
end
|
|
object EditMakeSkel: TFileNameEdit
|
|
Left = 180
|
|
Height = 21
|
|
Top = 120
|
|
Width = 359
|
|
DialogOptions = []
|
|
FilterIndex = 0
|
|
HideDirectories = False
|
|
ButtonWidth = 45
|
|
NumGlyphs = 1
|
|
Anchors = [akTop, akLeft, akRight]
|
|
MaxLength = 0
|
|
TabOrder = 10
|
|
end
|
|
object EditInclude: TDirectoryEdit
|
|
Left = 180
|
|
Height = 21
|
|
Top = 84
|
|
Width = 360
|
|
ShowHidden = False
|
|
ButtonWidth = 45
|
|
NumGlyphs = 1
|
|
Anchors = [akTop, akLeft, akRight]
|
|
MaxLength = 0
|
|
TabOrder = 11
|
|
end
|
|
object StatusBar: TStatusBar
|
|
Left = 0
|
|
Height = 23
|
|
Top = 505
|
|
Width = 598
|
|
Panels = <>
|
|
end
|
|
object CheckBoxShowSummary: TCheckBox
|
|
Left = 433
|
|
Height = 17
|
|
Top = 312
|
|
Width = 90
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'Show summary'
|
|
Checked = True
|
|
State = cbChecked
|
|
TabOrder = 12
|
|
end
|
|
object OpenDialog: TOpenDialog
|
|
Title = 'Open FPDoc file'
|
|
DefaultExt = '.xml'
|
|
Filter = 'FPDoc file (*.xml)|*.xml|All files|*.*'
|
|
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
|
|
left = 24
|
|
top = 168
|
|
end
|
|
end
|