mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-04 19:19:42 +01:00
390 lines
9.5 KiB
Plaintext
390 lines
9.5 KiB
Plaintext
object OptionsFrm: TOptionsFrm
|
|
Left = 661
|
|
Height = 300
|
|
Top = 304
|
|
Width = 450
|
|
BorderIcons = [biSystemMenu]
|
|
Caption = 'Options'
|
|
ClientHeight = 300
|
|
ClientWidth = 450
|
|
Color = clBtnFace
|
|
Constraints.MinHeight = 300
|
|
Constraints.MinWidth = 450
|
|
PopupMode = pmExplicit
|
|
Position = poOwnerFormCenter
|
|
LCLVersion = '1.7'
|
|
object pnBottom: TPanel
|
|
Left = 0
|
|
Height = 39
|
|
Top = 261
|
|
Width = 450
|
|
Align = alBottom
|
|
BevelOuter = bvNone
|
|
ClientHeight = 39
|
|
ClientWidth = 450
|
|
TabOrder = 0
|
|
object bOk: TButton
|
|
Left = 257
|
|
Height = 25
|
|
Top = 8
|
|
Width = 88
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'OK'
|
|
OnClick = bOkClick
|
|
TabOrder = 0
|
|
end
|
|
object bCancel: TButton
|
|
Left = 350
|
|
Height = 25
|
|
Top = 8
|
|
Width = 88
|
|
Anchors = [akTop, akRight]
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 1
|
|
end
|
|
object bRestore: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 8
|
|
Width = 100
|
|
Caption = 'Restore defaults'
|
|
OnClick = bRestoreClick
|
|
TabOrder = 2
|
|
end
|
|
end
|
|
object pgOptions: TPageControl
|
|
Left = 0
|
|
Height = 261
|
|
Top = 0
|
|
Width = 450
|
|
ActivePage = tsGeneral
|
|
Align = alClient
|
|
TabIndex = 0
|
|
TabOrder = 1
|
|
object tsGeneral: TTabSheet
|
|
Caption = 'General'
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
object pnGeneral: TPanel
|
|
Left = 0
|
|
Height = 233
|
|
Top = 0
|
|
Width = 442
|
|
Align = alClient
|
|
BevelOuter = bvNone
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
Color = clBtnFace
|
|
ParentColor = False
|
|
TabOrder = 0
|
|
object lbRemoteRepository: TLabel
|
|
Left = 15
|
|
Height = 15
|
|
Top = 15
|
|
Width = 100
|
|
Caption = 'Remote repository:'
|
|
ParentColor = False
|
|
end
|
|
object edRemoteRepository: TEdit
|
|
Left = 15
|
|
Height = 23
|
|
Top = 32
|
|
Width = 408
|
|
Anchors = [akTop, akLeft, akRight]
|
|
OnKeyPress = edRemoteRepositoryKeyPress
|
|
TabOrder = 0
|
|
Text = 'http://localhost/packages/'
|
|
end
|
|
object cbForceDownloadExtract: TCheckBox
|
|
Left = 15
|
|
Height = 19
|
|
Top = 73
|
|
Width = 235
|
|
Caption = ' Force download and extract of packages'
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 1
|
|
end
|
|
object cbDeleteZipAfterInstall: TCheckBox
|
|
Left = 15
|
|
Height = 19
|
|
Top = 104
|
|
Width = 294
|
|
Caption = 'Delete downloaded zip files after installation/update'
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 2
|
|
end
|
|
end
|
|
end
|
|
object tsProxy: TTabSheet
|
|
Caption = 'Proxy'
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
object pnProxy: TPanel
|
|
Left = 0
|
|
Height = 233
|
|
Top = 0
|
|
Width = 442
|
|
Align = alClient
|
|
BevelOuter = bvNone
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
Color = clBtnFace
|
|
ParentColor = False
|
|
TabOrder = 0
|
|
object cbProxy: TCheckBox
|
|
Left = 15
|
|
Height = 19
|
|
Top = 15
|
|
Width = 71
|
|
Caption = 'Use Proxy'
|
|
OnChange = cbProxyChange
|
|
TabOrder = 0
|
|
end
|
|
object gbProxySettings: TGroupBox
|
|
Left = 15
|
|
Height = 130
|
|
Top = 48
|
|
Width = 411
|
|
Caption = 'Proxy Settings'
|
|
ClientHeight = 110
|
|
ClientWidth = 407
|
|
TabOrder = 1
|
|
object edProxyServer: TEdit
|
|
Left = 8
|
|
Height = 23
|
|
Top = 17
|
|
Width = 296
|
|
OnKeyPress = edRemoteRepositoryKeyPress
|
|
TabOrder = 0
|
|
Text = 'http://localhost/packages/'
|
|
end
|
|
object lbServer: TLabel
|
|
Left = 8
|
|
Height = 15
|
|
Top = 0
|
|
Width = 32
|
|
Caption = 'Server'
|
|
ParentColor = False
|
|
end
|
|
object lbUserName: TLabel
|
|
Left = 8
|
|
Height = 15
|
|
Top = 48
|
|
Width = 53
|
|
Caption = 'Username'
|
|
ParentColor = False
|
|
end
|
|
object edProxyUser: TEdit
|
|
Left = 8
|
|
Height = 23
|
|
Top = 65
|
|
Width = 186
|
|
OnKeyPress = edRemoteRepositoryKeyPress
|
|
TabOrder = 1
|
|
Text = 'username'
|
|
end
|
|
object lbPort: TLabel
|
|
Left = 318
|
|
Height = 15
|
|
Top = 0
|
|
Width = 22
|
|
Caption = 'Port'
|
|
ParentColor = False
|
|
end
|
|
object lbPassword: TLabel
|
|
Left = 208
|
|
Height = 15
|
|
Top = 48
|
|
Width = 50
|
|
Caption = 'Password'
|
|
ParentColor = False
|
|
end
|
|
object edProxyPassword: TEdit
|
|
Left = 208
|
|
Height = 23
|
|
Top = 64
|
|
Width = 186
|
|
EchoMode = emPassword
|
|
OnKeyPress = edRemoteRepositoryKeyPress
|
|
PasswordChar = '*'
|
|
TabOrder = 2
|
|
Text = 'password'
|
|
end
|
|
object seProxyPort: TSpinEdit
|
|
Left = 318
|
|
Height = 23
|
|
Top = 16
|
|
Width = 76
|
|
MaxValue = 65535
|
|
TabOrder = 3
|
|
end
|
|
end
|
|
end
|
|
end
|
|
object tsFolders: TTabSheet
|
|
Caption = 'Folders'
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
object pnFolders: TPanel
|
|
Left = 0
|
|
Height = 233
|
|
Top = 0
|
|
Width = 442
|
|
Align = alClient
|
|
BevelOuter = bvNone
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
Color = clBtnFace
|
|
ParentColor = False
|
|
TabOrder = 0
|
|
object pnLocalRepositoryPackages: TPanel
|
|
Left = 15
|
|
Height = 23
|
|
Top = 32
|
|
Width = 413
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoSize = True
|
|
BevelOuter = bvNone
|
|
ClientHeight = 23
|
|
ClientWidth = 413
|
|
TabOrder = 0
|
|
object edLocalRepositoryPackages: TEdit
|
|
Left = 0
|
|
Height = 23
|
|
Top = 0
|
|
Width = 383
|
|
Align = alClient
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 0
|
|
end
|
|
object bLocalRepositoryPackages: TSpeedButton
|
|
Left = 383
|
|
Height = 23
|
|
Top = 0
|
|
Width = 30
|
|
Align = alRight
|
|
Caption = '...'
|
|
OnClick = bLocalRepositoryPackagesClick
|
|
end
|
|
end
|
|
object lbLocalRepositoryPackages: TLabel
|
|
Left = 15
|
|
Height = 15
|
|
Top = 15
|
|
Width = 84
|
|
Caption = 'Local repository'
|
|
ParentColor = False
|
|
ParentShowHint = False
|
|
end
|
|
object pnLocalRepositoryArchive: TPanel
|
|
Left = 15
|
|
Height = 23
|
|
Top = 87
|
|
Width = 413
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoSize = True
|
|
BevelOuter = bvNone
|
|
ClientHeight = 23
|
|
ClientWidth = 413
|
|
TabOrder = 1
|
|
object edLocalRepositoryArchive: TEdit
|
|
Left = 0
|
|
Height = 23
|
|
Top = 0
|
|
Width = 383
|
|
Align = alClient
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 0
|
|
end
|
|
object bLocalRepositoryArchive: TSpeedButton
|
|
Tag = 1
|
|
Left = 383
|
|
Height = 23
|
|
Top = 0
|
|
Width = 30
|
|
Align = alRight
|
|
Caption = '...'
|
|
OnClick = bLocalRepositoryPackagesClick
|
|
end
|
|
end
|
|
object lbLocalRepositoryArchive: TLabel
|
|
Left = 15
|
|
Height = 15
|
|
Top = 69
|
|
Width = 125
|
|
Caption = 'Local repository archive'
|
|
ParentColor = False
|
|
ParentShowHint = False
|
|
end
|
|
object pnLocalRepositoryUpdate: TPanel
|
|
Left = 15
|
|
Height = 23
|
|
Top = 145
|
|
Width = 413
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoSize = True
|
|
BevelOuter = bvNone
|
|
ClientHeight = 23
|
|
ClientWidth = 413
|
|
TabOrder = 2
|
|
object edLocalRepositoryUpdate: TEdit
|
|
Left = 0
|
|
Height = 23
|
|
Top = 0
|
|
Width = 383
|
|
Align = alClient
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 0
|
|
end
|
|
object bLocalRepositoryUpdate: TSpeedButton
|
|
Tag = 2
|
|
Left = 383
|
|
Height = 23
|
|
Top = 0
|
|
Width = 30
|
|
Align = alRight
|
|
Caption = '...'
|
|
OnClick = bLocalRepositoryPackagesClick
|
|
end
|
|
end
|
|
object lbLocalRepositoryUpdate: TLabel
|
|
Left = 15
|
|
Height = 15
|
|
Top = 128
|
|
Width = 124
|
|
Caption = 'Local repository update'
|
|
ParentColor = False
|
|
ParentShowHint = False
|
|
end
|
|
end
|
|
end
|
|
object tsExtensions: TTabSheet
|
|
Caption = 'Extensions'
|
|
ClientHeight = 233
|
|
ClientWidth = 442
|
|
TabVisible = False
|
|
object pnExtensions: TPanel
|
|
Left = 0
|
|
Height = 233
|
|
Top = 0
|
|
Width = 442
|
|
Align = alClient
|
|
BevelOuter = bvNone
|
|
Color = clBtnFace
|
|
ParentColor = False
|
|
TabOrder = 0
|
|
end
|
|
end
|
|
end
|
|
object SDD: TSelectDirectoryDialog
|
|
left = 272
|
|
top = 32
|
|
end
|
|
end
|