mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 00:00:39 +02:00
FpPkg: resaved fppkg_initializeoptionsfrm, added its LRJ
git-svn-id: trunk@63417 -
This commit is contained in:
parent
e09fd5f9bc
commit
8d1a8ad4fe
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1562,6 +1562,7 @@ components/fppkg/src/fppkg_details.pas svneol=native#text/plain
|
|||||||
components/fppkg/src/fppkg_environmentoptions.lfm svneol=native#text/plain
|
components/fppkg/src/fppkg_environmentoptions.lfm svneol=native#text/plain
|
||||||
components/fppkg/src/fppkg_environmentoptions.pas svneol=native#text/pascal
|
components/fppkg/src/fppkg_environmentoptions.pas svneol=native#text/pascal
|
||||||
components/fppkg/src/fppkg_initializeoptionsfrm.lfm svneol=native#text/plain
|
components/fppkg/src/fppkg_initializeoptionsfrm.lfm svneol=native#text/plain
|
||||||
|
components/fppkg/src/fppkg_initializeoptionsfrm.lrj svneol=native#text/plain
|
||||||
components/fppkg/src/fppkg_initializeoptionsfrm.pas svneol=native#text/pascal
|
components/fppkg/src/fppkg_initializeoptionsfrm.pas svneol=native#text/pascal
|
||||||
components/fppkg/src/fppkg_interface.pas svneol=native#text/pascal
|
components/fppkg/src/fppkg_interface.pas svneol=native#text/pascal
|
||||||
components/fppkg/src/fppkg_lpk.pas svneol=native#text/plain
|
components/fppkg/src/fppkg_lpk.pas svneol=native#text/plain
|
||||||
|
@ -6,7 +6,7 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
Caption = 'Create configuration files'
|
Caption = 'Create configuration files'
|
||||||
ClientHeight = 450
|
ClientHeight = 450
|
||||||
ClientWidth = 473
|
ClientWidth = 473
|
||||||
LCLVersion = '1.9.0.0'
|
LCLVersion = '2.1.0.0'
|
||||||
object FppkgConfigPanel: TPanel
|
object FppkgConfigPanel: TPanel
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 450
|
Height = 450
|
||||||
@ -20,7 +20,7 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
Visible = False
|
Visible = False
|
||||||
object InitializeFppkgLabel: TLabel
|
object InitializeFppkgLabel: TLabel
|
||||||
Left = 5
|
Left = 5
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 5
|
Top = 5
|
||||||
Width = 463
|
Width = 463
|
||||||
Align = alTop
|
Align = alTop
|
||||||
@ -30,8 +30,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object Label1: TLabel
|
object Label1: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 40
|
Top = 35
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -42,8 +42,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object FPCDirectoryEdit: TDirectoryEdit
|
object FPCDirectoryEdit: TDirectoryEdit
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 37
|
Height = 23
|
||||||
Top = 65
|
Top = 55
|
||||||
Width = 413
|
Width = 413
|
||||||
ShowHidden = False
|
ShowHidden = False
|
||||||
ButtonWidth = 23
|
ButtonWidth = 23
|
||||||
@ -61,7 +61,7 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
object FPCDirValidationLabel: TLabel
|
object FPCDirValidationLabel: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 107
|
Top = 83
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
AutoSize = False
|
AutoSize = False
|
||||||
@ -73,19 +73,17 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object FPCButtonPanel: TButtonPanel
|
object FPCButtonPanel: TButtonPanel
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 46
|
Height = 34
|
||||||
Top = 398
|
Top = 410
|
||||||
Width = 461
|
Width = 461
|
||||||
OKButton.Name = 'OKButton'
|
OKButton.Name = 'OKButton'
|
||||||
OKButton.Caption = '&Write Fppkg configuration files'
|
OKButton.Caption = '&Write Fppkg configuration files'
|
||||||
OKButton.DefaultCaption = False
|
|
||||||
OKButton.Enabled = False
|
OKButton.Enabled = False
|
||||||
OKButton.OnClick = OKButtonClick
|
OKButton.OnClick = OKButtonClick
|
||||||
HelpButton.Name = 'HelpButton'
|
HelpButton.Name = 'HelpButton'
|
||||||
HelpButton.DefaultCaption = True
|
HelpButton.DefaultCaption = True
|
||||||
CloseButton.Name = 'CloseButton'
|
CloseButton.Name = 'CloseButton'
|
||||||
CloseButton.Caption = '&Close'
|
CloseButton.Caption = '&Close'
|
||||||
CloseButton.DefaultCaption = False
|
|
||||||
CloseButton.OnClick = CloseButtonClick
|
CloseButton.OnClick = CloseButtonClick
|
||||||
CancelButton.Name = 'CancelButton'
|
CancelButton.Name = 'CancelButton'
|
||||||
CancelButton.DefaultCaption = True
|
CancelButton.DefaultCaption = True
|
||||||
@ -94,8 +92,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object AdvancedCheckbox: TCheckBox
|
object AdvancedCheckbox: TCheckBox
|
||||||
Left = 5
|
Left = 5
|
||||||
Height = 24
|
Height = 19
|
||||||
Top = 132
|
Top = 108
|
||||||
Width = 463
|
Width = 463
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Around = 5
|
BorderSpacing.Around = 5
|
||||||
@ -105,8 +103,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object PathLabel: TLabel
|
object PathLabel: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 171
|
Top = 142
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -118,8 +116,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object PathEdit: TEdit
|
object PathEdit: TEdit
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 37
|
Height = 23
|
||||||
Top = 196
|
Top = 162
|
||||||
Width = 413
|
Width = 413
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -130,8 +128,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object PrefixLabel: TLabel
|
object PrefixLabel: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 248
|
Top = 200
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -143,8 +141,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object PrefixEdit: TEdit
|
object PrefixEdit: TEdit
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 37
|
Height = 23
|
||||||
Top = 273
|
Top = 220
|
||||||
Width = 413
|
Width = 413
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -155,8 +153,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object CompilerLabel: TLabel
|
object CompilerLabel: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 325
|
Top = 258
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -168,8 +166,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object CompilerEdit: TEdit
|
object CompilerEdit: TEdit
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 37
|
Height = 23
|
||||||
Top = 350
|
Top = 278
|
||||||
Width = 413
|
Width = 413
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -192,19 +190,17 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
Visible = False
|
Visible = False
|
||||||
object LazarusButtonPanel: TButtonPanel
|
object LazarusButtonPanel: TButtonPanel
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 46
|
Height = 34
|
||||||
Top = 398
|
Top = 410
|
||||||
Width = 461
|
Width = 461
|
||||||
OKButton.Name = 'OKButton'
|
OKButton.Name = 'OKButton'
|
||||||
OKButton.Caption = '&Write Lazarus configuration file'
|
OKButton.Caption = '&Write Lazarus configuration file'
|
||||||
OKButton.DefaultCaption = False
|
|
||||||
OKButton.Enabled = False
|
OKButton.Enabled = False
|
||||||
OKButton.OnClick = OnLazarusButtonClick
|
OKButton.OnClick = OnLazarusButtonClick
|
||||||
HelpButton.Name = 'HelpButton'
|
HelpButton.Name = 'HelpButton'
|
||||||
HelpButton.DefaultCaption = True
|
HelpButton.DefaultCaption = True
|
||||||
CloseButton.Name = 'CloseButton'
|
CloseButton.Name = 'CloseButton'
|
||||||
CloseButton.Caption = '&Close'
|
CloseButton.Caption = '&Close'
|
||||||
CloseButton.DefaultCaption = False
|
|
||||||
CloseButton.OnClick = CloseButtonClick
|
CloseButton.OnClick = CloseButtonClick
|
||||||
CancelButton.Name = 'CancelButton'
|
CancelButton.Name = 'CancelButton'
|
||||||
CancelButton.DefaultCaption = True
|
CancelButton.DefaultCaption = True
|
||||||
@ -213,7 +209,7 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object InitializeLazarusLabel: TLabel
|
object InitializeLazarusLabel: TLabel
|
||||||
Left = 5
|
Left = 5
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 5
|
Top = 5
|
||||||
Width = 463
|
Width = 463
|
||||||
Align = alTop
|
Align = alTop
|
||||||
@ -223,8 +219,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object Label2: TLabel
|
object Label2: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 15
|
||||||
Top = 40
|
Top = 35
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 25
|
BorderSpacing.Left = 25
|
||||||
@ -235,8 +231,8 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
end
|
end
|
||||||
object LazarusDirectoryEdit: TDirectoryEdit
|
object LazarusDirectoryEdit: TDirectoryEdit
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 37
|
Height = 23
|
||||||
Top = 65
|
Top = 55
|
||||||
Width = 413
|
Width = 413
|
||||||
ShowHidden = False
|
ShowHidden = False
|
||||||
ButtonWidth = 23
|
ButtonWidth = 23
|
||||||
@ -254,7 +250,7 @@ object InitializeOptionsForm: TInitializeOptionsForm
|
|||||||
object LazarusDirValidationLabel: TLabel
|
object LazarusDirValidationLabel: TLabel
|
||||||
Left = 30
|
Left = 30
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 107
|
Top = 83
|
||||||
Width = 438
|
Width = 438
|
||||||
Align = alTop
|
Align = alTop
|
||||||
AutoSize = False
|
AutoSize = False
|
||||||
|
17
components/fppkg/src/fppkg_initializeoptionsfrm.lrj
Normal file
17
components/fppkg/src/fppkg_initializeoptionsfrm.lrj
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{"version":1,"strings":[
|
||||||
|
{"hash":236471875,"name":"tinitializeoptionsform.caption","sourcebytes":[67,114,101,97,116,101,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101,115],"value":"Create configuration files"},
|
||||||
|
{"hash":49711326,"name":"tinitializeoptionsform.initializefppkglabel.caption","sourcebytes":[67,114,101,97,116,101,32,110,101,119,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101,115,32,102,111,114,32,102,112,112,107,103,46],"value":"Create new configuration files for fppkg."},
|
||||||
|
{"hash":219507278,"name":"tinitializeoptionsform.label1.caption","sourcebytes":[80,108,101,97,115,101,32,103,105,118,101,32,116,104,101,32,108,111,99,97,116,105,111,110,32,119,104,101,114,101,32,70,80,67,32,105,115,32,105,110,115,116,97,108,108,101,100,46],"value":"Please give the location where FPC is installed."},
|
||||||
|
{"hash":184587134,"name":"tinitializeoptionsform.fpcdirectoryedit.texthint","sourcebytes":[84,104,105,115,32,108,111,99,97,116,105,111,110,32,110,111,114,109,97,108,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,99,111,109,112,105,108,101,114,45,101,120,101,99,117,116,97,98,108,101,32,97,108,111,110,103,32,119,105,116,104,32,97,32,39,117,110,105,116,115,39,32,97,110,100,32,39,102,112,109,107,105,110,115,116,39,32,100,105,114,101,99,116,111,114,121,46],"value":"This location normally contains the compiler-executable along with a 'units' and 'fpmkinst' directory."},
|
||||||
|
{"hash":120012787,"name":"tinitializeoptionsform.fpcbuttonpanel.okbutton.caption","sourcebytes":[38,87,114,105,116,101,32,70,112,112,107,103,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101,115],"value":"&Write Fppkg configuration files"},
|
||||||
|
{"hash":44709525,"name":"tinitializeoptionsform.fpcbuttonpanel.closebutton.caption","sourcebytes":[38,67,108,111,115,101],"value":"&Close"},
|
||||||
|
{"hash":197676484,"name":"tinitializeoptionsform.advancedcheckbox.caption","sourcebytes":[65,100,118,97,110,99,101,100],"value":"Advanced"},
|
||||||
|
{"hash":5671610,"name":"tinitializeoptionsform.pathlabel.caption","sourcebytes":[80,97,116,104,58],"value":"Path:"},
|
||||||
|
{"hash":126603498,"name":"tinitializeoptionsform.prefixlabel.caption","sourcebytes":[80,114,101,102,105,120,58],"value":"Prefix:"},
|
||||||
|
{"hash":74475066,"name":"tinitializeoptionsform.compilerlabel.caption","sourcebytes":[67,111,109,112,105,108,101,114,58],"value":"Compiler:"},
|
||||||
|
{"hash":6747797,"name":"tinitializeoptionsform.lazarusbuttonpanel.okbutton.caption","sourcebytes":[38,87,114,105,116,101,32,76,97,122,97,114,117,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101],"value":"&Write Lazarus configuration file"},
|
||||||
|
{"hash":44709525,"name":"tinitializeoptionsform.lazarusbuttonpanel.closebutton.caption","sourcebytes":[38,67,108,111,115,101],"value":"&Close"},
|
||||||
|
{"hash":23846766,"name":"tinitializeoptionsform.initializelazaruslabel.caption","sourcebytes":[67,114,101,97,116,101,32,110,101,119,32,76,97,122,97,114,117,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101,32,102,111,114,32,102,112,112,107,103,46],"value":"Create new Lazarus configuration file for fppkg."},
|
||||||
|
{"hash":197866062,"name":"tinitializeoptionsform.label2.caption","sourcebytes":[80,108,101,97,115,101,32,103,105,118,101,32,116,104,101,32,108,111,99,97,116,105,111,110,32,119,104,101,114,101,32,76,97,122,97,114,117,115,32,105,115,32,105,110,115,116,97,108,108,101,100,46],"value":"Please give the location where Lazarus is installed."},
|
||||||
|
{"hash":184587134,"name":"tinitializeoptionsform.lazarusdirectoryedit.texthint","sourcebytes":[84,104,105,115,32,108,111,99,97,116,105,111,110,32,110,111,114,109,97,108,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,99,111,109,112,105,108,101,114,45,101,120,101,99,117,116,97,98,108,101,32,97,108,111,110,103,32,119,105,116,104,32,97,32,39,117,110,105,116,115,39,32,97,110,100,32,39,102,112,109,107,105,110,115,116,39,32,100,105,114,101,99,116,111,114,121,46],"value":"This location normally contains the compiler-executable along with a 'units' and 'fpmkinst' directory."}
|
||||||
|
]}
|
Loading…
Reference in New Issue
Block a user