IDE: added option to package usage option whether a package main unit is added to the project uses section

git-svn-id: trunk@16212 -
This commit is contained in:
mattias 2008-08-24 20:51:44 +00:00
parent 59b6c95052
commit bee248c6f7
6 changed files with 314 additions and 268 deletions

View File

@ -919,6 +919,7 @@ resourcestring
dlgAutoSave = 'Auto save';
dlgEdFiles = 'Editor files';
dlgEnvProject = 'Project';
podAddPackageUnitToUsesSection = 'Add package unit to uses section';
lisCodeBrowser = 'Code browser';
dlgIntvInSec = 'Interval in secs';
dlgDesktopFiles = 'Desktop files';

View File

@ -590,6 +590,7 @@ type
TLazPackage = class(TLazPackageID)
private
FAddToProjectUsesSection: boolean;
FAuthor: string;
FAutoCreated: boolean;
FAutoInstall: TPackageInstallType;
@ -645,6 +646,7 @@ type
function GetFileCount: integer;
function GetFiles(Index: integer): TPkgFile;
function GetModified: boolean;
procedure SetAddToProjectUsesSection(const AValue: boolean);
procedure SetAuthor(const AValue: string);
procedure SetAutoCreated(const AValue: boolean);
procedure SetAutoIncrementVersionOnBuild(const AValue: boolean);
@ -774,6 +776,8 @@ type
// ID
procedure ChangeID(const NewName: string; NewVersion: TPkgVersion);
public
property AddToProjectUsesSection: boolean read FAddToProjectUsesSection
write SetAddToProjectUsesSection;
property Author: string read FAuthor write SetAuthor;
property AutoCreated: boolean read FAutoCreated write SetAutoCreated;
property AutoIncrementVersionOnBuild: boolean
@ -2228,6 +2232,13 @@ begin
Result:=lpfModified in FFlags;
end;
procedure TLazPackage.SetAddToProjectUsesSection(const AValue: boolean);
begin
if FAddToProjectUsesSection=AValue then exit;
FAddToProjectUsesSection:=AValue;
Modified:=true;
end;
procedure TLazPackage.SetAuthor(const AValue: string);
begin
if FAuthor=AValue then exit;
@ -2501,6 +2512,7 @@ begin
// break and free required dependencies
while FFirstRequiredDependency<>nil do
DeleteRequiredDependency(FFirstRequiredDependency);
FAddToProjectUsesSection:=true;
FAuthor:='';
FAutoInstall:=pitNope;
for i:=FComponents.Count-1 downto 0 do Components[i].Free;
@ -2636,6 +2648,7 @@ begin
Name:=XMLConfig.GetValue(Path+'Name/Value','');
FPackageType:=LazPackageTypeIdentToType(XMLConfig.GetValue(Path+'Type/Value',
LazPackageTypeIdents[lptRunTime]));
FAddToProjectUsesSection:=XMLConfig.GetValue(Path+'AddToProjectUsesSection/Value',true);
FAuthor:=XMLConfig.GetValue(Path+'Author/Value','');
FAutoUpdate:=NameToAutoUpdatePolicy(
XMLConfig.GetValue(Path+'AutoUpdate/Value',''));
@ -2705,6 +2718,8 @@ begin
XMLConfig.SetValue(Path+'Version',LazPkgXMLFileVersion);
XMLConfig.SetDeleteValue(Path+'PathDelim/Value',PathDelim,'/');
XMLConfig.SetDeleteValue(Path+'Name/Value',FName,'');
XMLConfig.SetDeleteValue(Path+'AddToProjectUsesSection/Value',
FAddToProjectUsesSection,true);
XMLConfig.SetDeleteValue(Path+'Author/Value',FAuthor,'');
XMLConfig.SetDeleteValue(Path+'AutoUpdate/Value',AutoUpdateNames[FAutoUpdate],
AutoUpdateNames[pupAsNeeded]);

View File

@ -2183,6 +2183,7 @@ begin
if (ADependency.RequiredPackage<>nil)
and (not ADependency.RequiredPackage.AutoCreated)
and (ADependency.RequiredPackage.PackageType in [lptRunTime,lptRunAndDesignTime])
and ADependency.RequiredPackage.AddToProjectUsesSection
then begin
AddUnitToProjectMainUsesSection(AProject,ADependency.PackageName,'');
end;

View File

@ -1,15 +1,15 @@
object PackageOptionsDialog: TPackageOptionsDialog
Left = 288
Left = 293
Height = 439
Top = 185
Top = 209
Width = 528
HorzScrollBar.Page = 527
VertScrollBar.Page = 438
ActiveControl = CancelButton
Caption = 'Form2'
ActiveControl = Notebook
Caption = 'PackageOptionsDialog'
ClientHeight = 439
ClientWidth = 528
OnClose = PackageOptionsDialogClose
OnCreate = FormCreate
LCLVersion = '0.9.25'
object CancelButton: TButton
Left = 442
Height = 29
@ -52,48 +52,46 @@ object PackageOptionsDialog: TPackageOptionsDialog
ClientWidth = 524
ClientHeight = 361
object AddPathsGroupBox: TGroupBox
AnchorSideTop.Control = UsagePage
AnchorSideRight.Control = UsagePage
AnchorSideRight.Side = asrBottom
Left = 6
Height = 128
Top = 6
Width = 512
Anchors = [akTop, akLeft, akRight]
Align = alTop
BorderSpacing.Around = 6
Caption = 'Add paths to dependent packages/projects'
ClientHeight = 124
ClientHeight = 109
ClientWidth = 508
TabOrder = 0
object UnitPathLabel: TLabel
Left = 6
Height = 14
Height = 18
Top = 3
Width = 20
Width = 27
Caption = 'Unit'
ParentColor = False
end
object IncludePathLabel: TLabel
Left = 6
Height = 14
Height = 18
Top = 30
Width = 36
Width = 46
Caption = 'Include'
ParentColor = False
end
object ObjectPathLabel: TLabel
Left = 6
Height = 14
Height = 18
Top = 57
Width = 33
Width = 42
Caption = 'Object'
ParentColor = False
end
object LibraryPathLabel: TLabel
Left = 6
Height = 14
Height = 18
Top = 84
Width = 34
Width = 44
Caption = 'Library'
ParentColor = False
end
@ -147,38 +145,33 @@ object PackageOptionsDialog: TPackageOptionsDialog
end
end
object AddOptionsGroupBox: TGroupBox
AnchorSideLeft.Control = UsagePage
AnchorSideTop.Control = AddPathsGroupBox
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = UsagePage
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = UsagePage
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 215
Height = 168
Top = 140
Width = 512
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
Align = alClient
BorderSpacing.Around = 6
Caption = 'Add options to dependent packages and projects'
ClientHeight = 196
ClientHeight = 149
ClientWidth = 508
TabOrder = 1
object LinkerOptionsLabel: TLabel
AnchorSideTop.Control = LinkerOptionsMemo
Left = 6
Height = 20
Height = 18
Top = 6
Width = 33
Caption = 'Links'
Width = 39
Caption = 'Linker'
ParentColor = False
end
object CustomOptionsLabel: TLabel
AnchorSideTop.Control = CustomOptionsMemo
Left = 6
Height = 20
Top = 84
Height = 18
Top = 74
Width = 51
Caption = 'Custom'
ParentColor = False
@ -189,7 +182,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideRight.Control = AddOptionsGroupBox
AnchorSideRight.Side = asrBottom
Left = 67
Height = 72
Height = 62
Top = 6
Width = 435
Anchors = [akTop, akLeft, akRight]
@ -208,8 +201,8 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideBottom.Control = AddOptionsGroupBox
AnchorSideBottom.Side = asrBottom
Left = 67
Height = 106
Top = 84
Height = 69
Top = 74
Width = 435
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 10
@ -220,11 +213,34 @@ object PackageOptionsDialog: TPackageOptionsDialog
TabOrder = 1
end
end
object ProjectGroupBox: TGroupBox
Left = 6
Height = 41
Top = 314
Width = 512
Align = alBottom
AutoSize = True
BorderSpacing.Around = 6
Caption = 'ProjectGroupBox'
ClientHeight = 22
ClientWidth = 508
TabOrder = 2
object AddPackageUnitToProjectCheckBox: TCheckBox
Left = 6
Height = 22
Width = 496
Align = alTop
BorderSpacing.Left = 6
BorderSpacing.Right = 6
Caption = 'AddPackageUnitToProjectCheckBox'
TabOrder = 0
end
end
end
object DescriptionPage: TPage
Caption = 'Description'
ClientWidth = 524
ClientHeight = 365
ClientHeight = 361
object DescriptionGroupBox: TGroupBox
AnchorSideLeft.Control = DescriptionPage
AnchorSideTop.Control = DescriptionPage
@ -299,13 +315,13 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = VersionGroupBox
Left = 6
Height = 86
Height = 82
Top = 167
Width = 508
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
Caption = 'License:'
ClientHeight = 82
ClientHeight = 78
ClientWidth = 504
TabOrder = 2
object LicenseMemo: TMemo
@ -316,7 +332,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideBottom.Control = LicenseGroupBox
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 70
Height = 66
Top = 6
Width = 492
Align = alClient
@ -335,7 +351,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 100
Top = 259
Top = 255
Width = 512
Align = alBottom
BorderSpacing.Around = 6
@ -427,7 +443,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
object IDEPage: TPage
Caption = 'IDE Integration'
ClientWidth = 524
ClientHeight = 365
ClientHeight = 361
object PkgTypeRadioGroup: TRadioGroup
AnchorSideLeft.Control = IDEPage
AnchorSideTop.Control = IDEPage
@ -436,7 +452,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
Left = 6
Height = 116
Top = 6
Width = 508
Width = 512
Anchors = [akTop, akLeft, akRight]
AutoFill = True
BorderSpacing.Around = 6
@ -450,7 +466,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 97
ClientWidth = 504
ClientWidth = 508
ItemIndex = 2
Items.Strings = (
'Designtime only'
@ -469,7 +485,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
Left = 6
Height = 116
Top = 128
Width = 508
Width = 512
Anchors = [akTop, akLeft, akRight]
AutoFill = True
BorderSpacing.Around = 6
@ -483,7 +499,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 97
ClientWidth = 504
ClientWidth = 508
ItemIndex = 0
Items.Strings = (
'Automatically rebuild as needed'
@ -499,15 +515,15 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideRight.Control = IDEPage
AnchorSideRight.Side = asrBottom
Left = 6
Height = 53
Height = 54
Top = 250
Width = 508
Width = 512
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Around = 6
Caption = 'LazDoc - Lazarus documentation'
ClientHeight = 34
ClientWidth = 504
ClientHeight = 35
ClientWidth = 508
TabOrder = 2
object LazDocPathEdit: TEdit
AnchorSideLeft.Control = LazDocGroupBox
@ -515,7 +531,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
Left = 6
Height = 23
Top = 6
Width = 416
Width = 420
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
TabOrder = 0
@ -525,7 +541,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
object ProvidesPage: TPage
Caption = 'Provides'
ClientWidth = 524
ClientHeight = 365
ClientHeight = 361
object ProvidesGroupBox: TGroupBox
AnchorSideLeft.Control = ProvidesPage
AnchorSideTop.Control = ProvidesPage
@ -534,14 +550,14 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideBottom.Control = ProvidesPage
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 353
Height = 349
Top = 6
Width = 512
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
Caption = 'This package provides the same as the following packages:'
ClientHeight = 349
ClientHeight = 345
ClientWidth = 508
TabOrder = 0
object ProvidesMemo: TMemo
@ -551,7 +567,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
AnchorSideBottom.Control = ProvidesGroupBox
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 337
Height = 333
Top = 6
Width = 496
Align = alClient
@ -564,7 +580,7 @@ object PackageOptionsDialog: TPackageOptionsDialog
object i18n: TPage
Caption = 'i18n'
ClientWidth = 524
ClientHeight = 365
ClientHeight = 361
object I18NGroupBox: TGroupBox
AnchorSideLeft.Control = i18n
AnchorSideTop.Control = EnableI18NCheckBox

View File

@ -1,217 +1,219 @@
{ Ýòî - ôàéë ðåñóðñîâ, àâòîìàòè÷åñêè ñîçäàííûé lazarus }
LazarusResources.Add('TPackageOptionsDialog','FORMDATA',[
'TPF0'#21'TPackageOptionsDialog'#20'PackageOptionsDialog'#4'Left'#3' '#1#6'He'
+'ight'#3#183#1#3'Top'#3#185#0#5'Width'#3#16#2#18'HorzScrollBar.Page'#3#15#2
+#18'VertScrollBar.Page'#3#182#1#13'ActiveControl'#7#12'CancelButton'#7'Capti'
+'on'#6#5'Form2'#12'ClientHeight'#3#183#1#11'ClientWidth'#3#16#2#7'OnClose'#7
+#25'PackageOptionsDialogClose'#0#7'TButton'#12'CancelButton'#4'Left'#3#186#1
+#6'Height'#2#29#3'Top'#3#146#1#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBo'
+'ttom'#0#8'AutoSize'#9#6'Cancel'#9#7'Caption'#6#6'Cancel'#20'Constraints.Min'
+'Width'#2'K'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#8'OKButton'
+#23'AnchorSideRight.Control'#7#12'CancelButton'#4'Left'#3'e'#1#6'Height'#2#29
+#3'Top'#3#146#1#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#8'AutoS'
+'ize'#9#20'BorderSpacing.Around'#2#10#7'Caption'#6#2'OK'#20'Constraints.MinW'
+'idth'#2'K'#7'Default'#9#11'ModalResult'#2#1#7'OnClick'#7#13'OkButtonClick'#8
+'TabOrder'#2#1#0#0#9'TNotebook'#8'Notebook'#24'AnchorSideBottom.Control'#7#8
+'OKButton'#6'Height'#3#136#1#5'Width'#3#16#2#5'Align'#7#5'alTop'#7'Anchors'
+#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#9'PageIndex'#2#0#8'TabOrder'
+#2#0#0#5'TPage'#9'UsagePage'#7'Caption'#6#5'Usage'#11'ClientWidth'#3#12#2#12
+'ClientHeight'#3'i'#1#0#9'TGroupBox'#16'AddPathsGroupBox'#21'AnchorSideTop.C'
+'ontrol'#7#9'UsagePage'#23'AnchorSideRight.Control'#7#9'UsagePage'#20'Anchor'
+'SideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3#128#0#3'Top'#2#6#5'W'
+'idth'#3#0#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20'BorderSpacing.'
+'Around'#2#6#7'Caption'#6'(Add paths to dependent packages/projects'#12'Clie'
+'ntHeight'#2'|'#11'ClientWidth'#3#252#1#8'TabOrder'#2#0#0#6'TLabel'#13'UnitP'
+'athLabel'#4'Left'#2#6#6'Height'#2#14#3'Top'#2#3#5'Width'#2#20#7'Caption'#6#4
+'Unit'#11'ParentColor'#8#0#0#6'TLabel'#16'IncludePathLabel'#4'Left'#2#6#6'He'
+'ight'#2#14#3'Top'#2#30#5'Width'#2'$'#7'Caption'#6#7'Include'#11'ParentColor'
+#8#0#0#6'TLabel'#15'ObjectPathLabel'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'9'#5
+'Width'#2'!'#7'Caption'#6#6'Object'#11'ParentColor'#8#0#0#6'TLabel'#16'Libra'
+'ryPathLabel'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'T'#5'Width'#2'"'#7'Caption'
+#6#7'Library'#11'ParentColor'#8#0#0#5'TEdit'#12'UnitPathEdit'#22'AnchorSideL'
+'eft.Control'#7#15'LibraryPathEdit'#23'AnchorSideRight.Control'#7#16'AddPath'
+'sGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'P'#6'Height'#2
+#23#5'Width'#3'z'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderS'
+'pacing.Right'#2'2'#8'TabOrder'#2#0#0#0#5'TEdit'#15'IncludePathEdit'#22'Anch'
+'orSideLeft.Control'#7#15'LibraryPathEdit'#23'AnchorSideRight.Control'#7#16
+'AddPathsGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'P'#6'He'
+'ight'#2#23#3'Top'#2#27#5'Width'#3'z'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'a'
+'kRight'#0#19'BorderSpacing.Right'#2'2'#8'TabOrder'#2#1#0#0#5'TEdit'#14'Obje'
+'ctPathEdit'#22'AnchorSideLeft.Control'#7#15'LibraryPathEdit'#23'AnchorSideR'
+'ight.Control'#7#16'AddPathsGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'
+#4'Left'#2'P'#6'Height'#2#23#3'Top'#2'6'#5'Width'#3'z'#1#7'Anchors'#11#5'akT'
+'op'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2'2'#8'TabOrder'#2#2#0#0
+#5'TEdit'#15'LibraryPathEdit'#22'AnchorSideLeft.Control'#7#16'AddPathsGroupB'
+'ox'#23'AnchorSideRight.Control'#7#16'AddPathsGroupBox'#20'AnchorSideRight.S'
+'ide'#7#9'asrBottom'#4'Left'#2'P'#6'Height'#2#23#3'Top'#2'Q'#5'Width'#3'z'#1
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2'P'#19
+'BorderSpacing.Right'#2'2'#8'TabOrder'#2#3#0#0#0#9'TGroupBox'#18'AddOptionsG'
+'roupBox'#22'AnchorSideLeft.Control'#7#9'UsagePage'#21'AnchorSideTop.Control'
+#7#16'AddPathsGroupBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideR'
+'ight.Control'#7#9'UsagePage'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'Anc'
+'horSideBottom.Control'#7#9'UsagePage'#21'AnchorSideBottom.Side'#7#9'asrBott'
+'om'#4'Left'#2#6#6'Height'#3#215#0#3'Top'#3#140#0#5'Width'#3#0#2#5'Align'#7#8
+'alBottom'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'Bord'
+'erSpacing.Around'#2#6#7'Caption'#6'.Add options to dependent packages and p'
+'rojects'#12'ClientHeight'#3#196#0#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#0
+#6'TLabel'#18'LinkerOptionsLabel'#21'AnchorSideTop.Control'#7#17'LinkerOptio'
+'nsMemo'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#2'!'#7'Caption'#6#5
+'Links'#11'ParentColor'#8#0#0#6'TLabel'#18'CustomOptionsLabel'#21'AnchorSide'
+'Top.Control'#7#17'CustomOptionsMemo'#4'Left'#2#6#6'Height'#2#20#3'Top'#2'T'
+#5'Width'#2'3'#7'Caption'#6#6'Custom'#11'ParentColor'#8#0#0#5'TMemo'#17'Link'
+'erOptionsMemo'#22'AnchorSideLeft.Control'#7#17'CustomOptionsMemo'#21'Anchor'
+'SideTop.Control'#7#18'AddOptionsGroupBox'#23'AnchorSideRight.Control'#7#18
+'AddOptionsGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'C'#6
+'Height'#2'H'#3'Top'#2#6#5'Width'#3#179#1#7'Anchors'#11#5'akTop'#6'akLeft'#7
+'akRight'#0#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#10'ScrollB'
,'ars'#7#14'ssAutoVertical'#8'TabOrder'#2#0#0#0#5'TMemo'#17'CustomOptionsMemo'
+#22'AnchorSideLeft.Control'#7#18'CustomOptionsLabel'#19'AnchorSideLeft.Side'
+#7#9'asrBottom'#21'AnchorSideTop.Control'#7#17'LinkerOptionsMemo'#18'AnchorS'
+'ideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#18'AddOptionsGrou'
+'pBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7
+#18'AddOptionsGroupBox'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2'C'
+#6'Height'#2'j'#3'Top'#2'T'#5'Width'#3#179#1#7'Anchors'#11#5'akTop'#6'akLeft'
+#7'akRight'#8'akBottom'#0#18'BorderSpacing.Left'#2#10#17'BorderSpacing.Top'#2
+#6#19'BorderSpacing.Right'#2#6#20'BorderSpacing.Bottom'#2#6#10'ScrollBars'#7
+#14'ssAutoVertical'#8'TabOrder'#2#1#0#0#0#0#5'TPage'#15'DescriptionPage'#7'C'
+'aption'#6#11'Description'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'm'#1#0#9
+'TGroupBox'#19'DescriptionGroupBox'#22'AnchorSideLeft.Control'#7#15'Descript'
+'ionPage'#21'AnchorSideTop.Control'#7#15'DescriptionPage'#23'AnchorSideRight'
+'.Control'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'L'
+'eft'#2#6#6'Height'#2'`'#3'Top'#2#6#5'Width'#3#252#1#7'Anchors'#11#5'akTop'#6
+'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'Descripti'
+'on/Abstract'#12'ClientHeight'#2'M'#11'ClientWidth'#3#248#1#8'TabOrder'#2#0#0
+#5'TMemo'#15'DescriptionMemo'#22'AnchorSideLeft.Control'#7#19'DescriptionGro'
+'upBox'#21'AnchorSideTop.Control'#7#19'DescriptionGroupBox'#23'AnchorSideRig'
+'ht.Control'#7#19'DescriptionGroupBox'#20'AnchorSideRight.Side'#7#9'asrBotto'
+'m'#24'AnchorSideBottom.Control'#7#19'DescriptionGroupBox'#21'AnchorSideBott'
+'om.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'A'#3'Top'#2#6#5'Width'#3#236
+#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'ScrollBars'#7#10's'
+'sAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#14'AuthorGroupBox'#22'AnchorS'
+'ideLeft.Control'#7#15'DescriptionPage'#21'AnchorSideTop.Control'#7#19'Descr'
+'iptionGroupBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Co'
+'ntrol'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#21'Anc'
+'horSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'5'#3'Top'#2'l'#5
+'Width'#3#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#9
+#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Author:'#12'ClientHeight'#2'"'
+#11'ClientWidth'#3#248#1#8'TabOrder'#2#1#0#5'TEdit'#10'AuthorEdit'#22'Anchor'
+'SideLeft.Control'#7#14'AuthorGroupBox'#21'AnchorSideTop.Control'#7#14'Autho'
+'rGroupBox'#23'AnchorSideRight.Control'#7#14'AuthorGroupBox'#20'AnchorSideRi'
+'ght.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7#14'AuthorGroupBox'
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#23#3'Top'#2
+#6#5'Width'#3#236#1#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#8'TabOr'
+'der'#2#0#0#0#0#9'TGroupBox'#15'LicenseGroupBox'#22'AnchorSideLeft.Control'#7
+#15'DescriptionPage'#21'AnchorSideTop.Control'#7#14'AuthorGroupBox'#18'Ancho'
+'rSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#15'DescriptionP'
+'age'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7
+#15'VersionGroupBox'#4'Left'#2#6#6'Height'#2'V'#3'Top'#3#167#0#5'Width'#3#252
+#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacin'
+'g.Around'#2#6#7'Caption'#6#8'License:'#12'ClientHeight'#2'R'#11'ClientWidth'
+#3#248#1#8'TabOrder'#2#2#0#5'TMemo'#11'LicenseMemo'#22'AnchorSideLeft.Contro'
+'l'#7#15'LicenseGroupBox'#21'AnchorSideTop.Control'#7#15'LicenseGroupBox'#23
+'AnchorSideRight.Control'#7#15'LicenseGroupBox'#20'AnchorSideRight.Side'#7#9
+'asrBottom'#24'AnchorSideBottom.Control'#7#15'LicenseGroupBox'#21'AnchorSide'
+'Bottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'F'#3'Top'#2#6#5'Width'#3
+#236#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'ScrollBars'#7
+#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#15'VersionGroupBox'#22'An'
+'chorSideLeft.Control'#7#15'DescriptionPage'#21'AnchorSideTop.Control'#7#15
+'LicenseGroupBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.C'
+'ontrol'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'An'
+'chorSideBottom.Control'#7#15'DescriptionPage'#21'AnchorSideBottom.Side'#7#9
+'asrBottom'#4'Left'#2#6#6'Height'#2'd'#3'Top'#3#3#1#5'Width'#3#0#2#5'Align'#7
+#8'alBottom'#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Version'#12'ClientH'
+'eight'#2'`'#11'ClientWidth'#3#252#1#8'TabOrder'#2#3#0#6'TLabel'#17'VersionM'
+'ajorLabel'#4'Left'#2#6#6'Height'#2#14#3'Top'#2#3#5'Width'#2#28#7'Caption'#6
+#5'Major'#11'ParentColor'#8#0#0#6'TLabel'#17'VersionMinorLabel'#4'Left'#2'n'
+#6'Height'#2#14#3'Top'#2#3#5'Width'#2#27#7'Caption'#6#5'Minor'#11'ParentColo'
+'r'#8#0#0#6'TLabel'#19'VersionReleaseLabel'#4'Left'#3#214#0#6'Height'#2#14#3
+'Top'#2#3#5'Width'#2''''#7'Caption'#6#7'Release'#11'ParentColor'#8#0#0#6'TLa'
+'bel'#17'VersionBuildLabel'#4'Left'#3'>'#1#6'Height'#2#14#3'Top'#2#3#5'Width'
+#2'?'#7'Caption'#6#12'Build Number'#11'ParentColor'#8#0#0#9'TSpinEdit'#20'Ve'
,'rsionMajorSpinEdit'#22'AnchorSideLeft.Control'#7#15'VersionGroupBox'#4'Left'
+#2#6#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#18'BorderSpacing.Left'#2#6#8'M'
+'axValue'#3#15''''#8'TabOrder'#2#0#0#0#9'TSpinEdit'#20'VersionMinorSpinEdit'
+#4'Left'#2'n'#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#8'MaxValue'#3#15''''#8
+'TabOrder'#2#1#0#0#9'TSpinEdit'#22'VersionReleaseSpinEdit'#4'Left'#3#214#0#6
+'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#8'MaxValue'#3#15''''#8'TabOrder'#2#2
+#0#0#9'TSpinEdit'#20'VersionBuildSpinEdit'#4'Left'#3'>'#1#6'Height'#2#23#3'T'
+'op'#2#20#5'Width'#2'D'#8'MaxValue'#3#15''''#8'TabOrder'#2#3#0#0#9'TCheckBox'
+#28'AutoIncrementOnBuildCheckBox'#22'AnchorSideLeft.Control'#7#20'VersionMaj'
+'orSpinEdit'#21'AnchorSideTop.Control'#7#20'VersionMajorSpinEdit'#18'AnchorS'
+'ideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#13#3'Top'#2'1'#5'Width'
+#3#208#0#17'BorderSpacing.Top'#2#6#7'Caption'#6'(Automatically increment ver'
+'sion on build'#7'Enabled'#8#8'TabOrder'#2#4#0#0#0#0#5'TPage'#7'IDEPage'#7'C'
+'aption'#6#15'IDE Integration'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'm'#1
+#0#11'TRadioGroup'#17'PkgTypeRadioGroup'#22'AnchorSideLeft.Control'#7#7'IDEP'
+'age'#21'AnchorSideTop.Control'#7#7'IDEPage'#23'AnchorSideRight.Control'#7#7
+'IDEPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2't'
+#3'Top'#2#6#5'Width'#3#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8
+'AutoFill'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'PackageType'#28'Ch'
+'ildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'Chi'
+'ldSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.E'
+'nlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizon'
+'tal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChild'
+'s'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizin'
+'g.ControlsPerLine'#2#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#248#1#9'Item'
+'Index'#2#2#13'Items.Strings'#1#6#15'Designtime only'#6#12'Runtime only'#6#22
+'Designtime and Runtime'#0#7'OnClick'#7#22'PkgTypeRadioGroupClick'#8'TabOrde'
+'r'#2#0#0#0#11'TRadioGroup'#16'UpdateRadioGroup'#22'AnchorSideLeft.Control'#7
+#7'IDEPage'#21'AnchorSideTop.Control'#7#17'PkgTypeRadioGroup'#18'AnchorSideT'
+'op.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#7'IDEPage'#20'AnchorS'
+'ideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2't'#3'Top'#3#128#0#5'W'
+'idth'#3#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoFill'#9#20
+'BorderSpacing.Around'#2#6#7'Caption'#6#14'Update/Rebuild'#28'ChildSizing.Le'
+'ftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.Enl'
+'argeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertic'
+'al'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'cr'
+'sScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildS'
+'izing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPe'
+'rLine'#2#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#248#1#9'ItemIndex'#2#0#13
+'Items.Strings'#1#6#31'Automatically rebuild as needed'#6' Auto rebuild when'
+' rebuilding all'#6'(Manual compilation (never automatically)'#0#8'TabOrder'
+#2#1#0#0#9'TGroupBox'#14'LazDocGroupBox'#22'AnchorSideLeft.Control'#7#7'IDEP'
+'age'#21'AnchorSideTop.Control'#7#16'UpdateRadioGroup'#18'AnchorSideTop.Side'
+#7#9'asrBottom'#23'AnchorSideRight.Control'#7#7'IDEPage'#20'AnchorSideRight.'
+'Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'5'#3'Top'#3#250#0#5'Width'#3
+#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSize'#9#20'Border'
+'Spacing.Around'#2#6#7'Caption'#6#30'LazDoc - Lazarus documentation'#12'Clie'
+'ntHeight'#2'"'#11'ClientWidth'#3#248#1#8'TabOrder'#2#2#0#5'TEdit'#14'LazDoc'
+'PathEdit'#22'AnchorSideLeft.Control'#7#14'LazDocGroupBox'#21'AnchorSideTop.'
+'Control'#7#14'LazDocGroupBox'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#6#5'Width'
+#3#160#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Arou'
+'nd'#2#6#8'TabOrder'#2#0#0#0#0#0#5'TPage'#12'ProvidesPage'#7'Caption'#6#8'Pr'
+'ovides'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'm'#1#0#9'TGroupBox'#16'Pr'
+'ovidesGroupBox'#22'AnchorSideLeft.Control'#7#12'ProvidesPage'#21'AnchorSide'
+'Top.Control'#7#12'ProvidesPage'#23'AnchorSideRight.Control'#7#12'ProvidesPa'
+'ge'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7
+#12'ProvidesPage'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Hei'
+'ght'#3'a'#1#3'Top'#2#6#5'Width'#3#0#2#5'Align'#7#8'alBottom'#7'Anchors'#11#5
+'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.Around'#2#6#7'Ca'
+'ption'#6'9This package provides the same as the following packages:'#12'Cli'
+'entHeight'#3']'#1#11'ClientWidth'#3#252#1#8'TabOrder'#2#0#0#5'TMemo'#12'Pro'
+'videsMemo'#22'AnchorSideLeft.Control'#7#16'ProvidesGroupBox'#21'AnchorSideT'
+'op.Control'#7#16'ProvidesGroupBox'#23'AnchorSideRight.Control'#7#16'Provide'
+'sGroupBox'#24'AnchorSideBottom.Control'#7#16'ProvidesGroupBox'#21'AnchorSid'
,'eBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3'Q'#1#3'Top'#2#6#5'Widt'
+'h'#3#240#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'ScrollBar'
+'s'#7#14'ssAutoVertical'#8'TabOrder'#2#0#0#0#0#0#5'TPage'#4'i18n'#7'Caption'
+#6#4'i18n'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'm'#1#0#9'TGroupBox'#12
+'I18NGroupBox'#22'AnchorSideLeft.Control'#7#4'i18n'#21'AnchorSideTop.Control'
+#7#18'EnableI18NCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSid'
+'eRight.Control'#7#4'i18n'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2
+#6#6'Height'#2'I'#3'Top'#2#26#5'Width'#3#252#1#7'Anchors'#11#5'akTop'#6'akLe'
+'ft'#7'akRight'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#12
+'i18n Options'#12'ClientHeight'#2'6'#11'ClientWidth'#3#248#1#8'TabOrder'#2#0
+#0#6'TLabel'#13'PoOutDirLabel'#22'AnchorSideLeft.Control'#7#12'I18NGroupBox'
+#21'AnchorSideTop.Control'#7#12'I18NGroupBox'#4'Left'#2#6#6'Height'#2#14#3'T'
+'op'#2#6#5'Width'#2'g'#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'PO Outpu'
+'t Directory:'#11'ParentColor'#8#0#0#5'TEdit'#12'POOutDirEdit'#22'AnchorSide'
+'Left.Control'#7#12'I18NGroupBox'#21'AnchorSideTop.Control'#7#13'PoOutDirLab'
+'el'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#14
+'POOutDirButton'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#26#5'Width'#3#193#1#7'A'
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#8'T'
+'abOrder'#2#0#0#0#7'TButton'#14'POOutDirButton'#21'AnchorSideTop.Control'#7
'TPF0'#21'TPackageOptionsDialog'#20'PackageOptionsDialog'#4'Left'#3'%'#1#6'He'
+'ight'#3#183#1#3'Top'#3#209#0#5'Width'#3#16#2#13'ActiveControl'#7#8'Notebook'
+#7'Caption'#6#20'PackageOptionsDialog'#12'ClientHeight'#3#183#1#11'ClientWid'
+'th'#3#16#2#7'OnClose'#7#25'PackageOptionsDialogClose'#8'OnCreate'#7#10'Form'
+'Create'#10'LCLVersion'#6#6'0.9.25'#0#7'TButton'#12'CancelButton'#4'Left'#3
+#186#1#6'Height'#2#29#3'Top'#3#146#1#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8
+'akBottom'#0#8'AutoSize'#9#6'Cancel'#9#7'Caption'#6#6'Cancel'#20'Constraints'
+'.MinWidth'#2'K'#11'ModalResult'#2#2#8'TabOrder'#2#2#0#0#7'TButton'#8'OKButt'
+'on'#23'AnchorSideRight.Control'#7#12'CancelButton'#4'Left'#3'e'#1#6'Height'
+#2#29#3'Top'#3#146#1#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#8
+'AutoSize'#9#20'BorderSpacing.Around'#2#10#7'Caption'#6#2'OK'#20'Constraints'
+'.MinWidth'#2'K'#7'Default'#9#11'ModalResult'#2#1#7'OnClick'#7#13'OkButtonCl'
+'ick'#8'TabOrder'#2#1#0#0#9'TNotebook'#8'Notebook'#24'AnchorSideBottom.Contr'
+'ol'#7#8'OKButton'#6'Height'#3#136#1#5'Width'#3#16#2#5'Align'#7#5'alTop'#7'A'
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#9'PageIndex'#2#0#8'T'
+'abOrder'#2#0#0#5'TPage'#9'UsagePage'#7'Caption'#6#5'Usage'#11'ClientWidth'#3
+#12#2#12'ClientHeight'#3'i'#1#0#9'TGroupBox'#16'AddPathsGroupBox'#20'AnchorS'
+'ideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3#128#0#3'Top'#2#6#5'Wi'
+'dth'#3#0#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6'(A'
+'dd paths to dependent packages/projects'#12'ClientHeight'#2'm'#11'ClientWid'
+'th'#3#252#1#8'TabOrder'#2#0#0#6'TLabel'#13'UnitPathLabel'#4'Left'#2#6#6'Hei'
+'ght'#2#18#3'Top'#2#3#5'Width'#2#27#7'Caption'#6#4'Unit'#11'ParentColor'#8#0
+#0#6'TLabel'#16'IncludePathLabel'#4'Left'#2#6#6'Height'#2#18#3'Top'#2#30#5'W'
+'idth'#2'.'#7'Caption'#6#7'Include'#11'ParentColor'#8#0#0#6'TLabel'#15'Objec'
+'tPathLabel'#4'Left'#2#6#6'Height'#2#18#3'Top'#2'9'#5'Width'#2'*'#7'Caption'
+#6#6'Object'#11'ParentColor'#8#0#0#6'TLabel'#16'LibraryPathLabel'#4'Left'#2#6
+#6'Height'#2#18#3'Top'#2'T'#5'Width'#2','#7'Caption'#6#7'Library'#11'ParentC'
+'olor'#8#0#0#5'TEdit'#12'UnitPathEdit'#22'AnchorSideLeft.Control'#7#15'Libra'
+'ryPathEdit'#23'AnchorSideRight.Control'#7#16'AddPathsGroupBox'#20'AnchorSid'
+'eRight.Side'#7#9'asrBottom'#4'Left'#2'P'#6'Height'#2#23#5'Width'#3'z'#1#7'A'
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2'2'#8'T'
+'abOrder'#2#0#0#0#5'TEdit'#15'IncludePathEdit'#22'AnchorSideLeft.Control'#7
+#15'LibraryPathEdit'#23'AnchorSideRight.Control'#7#16'AddPathsGroupBox'#20'A'
+'nchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'P'#6'Height'#2#23#3'Top'#2#27
+#5'Width'#3'z'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpac'
+'ing.Right'#2'2'#8'TabOrder'#2#1#0#0#5'TEdit'#14'ObjectPathEdit'#22'AnchorSi'
+'deLeft.Control'#7#15'LibraryPathEdit'#23'AnchorSideRight.Control'#7#16'AddP'
+'athsGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'P'#6'Height'
+#2#23#3'Top'#2'6'#5'Width'#3'z'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'
+#0#19'BorderSpacing.Right'#2'2'#8'TabOrder'#2#2#0#0#5'TEdit'#15'LibraryPathE'
+'dit'#22'AnchorSideLeft.Control'#7#16'AddPathsGroupBox'#23'AnchorSideRight.C'
+'ontrol'#7#16'AddPathsGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Le'
+'ft'#2'P'#6'Height'#2#23#3'Top'#2'Q'#5'Width'#3'z'#1#7'Anchors'#11#5'akTop'#6
+'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2'P'#19'BorderSpacing.Right'#2
+'2'#8'TabOrder'#2#3#0#0#0#9'TGroupBox'#18'AddOptionsGroupBox'#18'AnchorSideT'
+'op.Side'#7#9'asrBottom'#20'AnchorSideRight.Side'#7#9'asrBottom'#21'AnchorSi'
+'deBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3#168#0#3'Top'#3#140#0#5
+'Width'#3#0#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#7'Caption'
+#6'.Add options to dependent packages and projects'#12'ClientHeight'#3#149#0
+#11'ClientWidth'#3#252#1#8'TabOrder'#2#1#0#6'TLabel'#18'LinkerOptionsLabel'
+#21'AnchorSideTop.Control'#7#17'LinkerOptionsMemo'#4'Left'#2#6#6'Height'#2#18
+#3'Top'#2#6#5'Width'#2''''#7'Caption'#6#6'Linker'#11'ParentColor'#8#0#0#6'TL'
+'abel'#18'CustomOptionsLabel'#21'AnchorSideTop.Control'#7#17'CustomOptionsMe'
+'mo'#4'Left'#2#6#6'Height'#2#18#3'Top'#2'J'#5'Width'#2'3'#7'Caption'#6#6'Cus'
+'tom'#11'ParentColor'#8#0#0#5'TMemo'#17'LinkerOptionsMemo'#22'AnchorSideLeft'
+'.Control'#7#17'CustomOptionsMemo'#21'AnchorSideTop.Control'#7#18'AddOptions'
+'GroupBox'#23'AnchorSideRight.Control'#7#18'AddOptionsGroupBox'#20'AnchorSid'
+'eRight.Side'#7#9'asrBottom'#4'Left'#2'C'#6'Height'#2'>'#3'Top'#2#6#5'Width'
+#3#179#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#17'BorderSpacing.Top'
+#2#6#19'BorderSpacing.Right'#2#6#10'ScrollBars'#7#14'ssAutoVertical'#8'TabOr'
+'der'#2#0#0#0#5'TMemo'#17'CustomOptionsMemo'#22'AnchorSideLeft.Control'#7#18
+'CustomOptionsLabel'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop'
+'.Control'#7#17'LinkerOptionsMemo'#18'AnchorSideTop.Side'#7#9'asrBottom'#23
+'AnchorSideRight.Control'#7#18'AddOptionsGroupBox'#20'AnchorSideRight.Side'#7
,#9'asrBottom'#24'AnchorSideBottom.Control'#7#18'AddOptionsGroupBox'#21'Ancho'
+'rSideBottom.Side'#7#9'asrBottom'#4'Left'#2'C'#6'Height'#2'E'#3'Top'#2'J'#5
+'Width'#3#179#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#18
+'BorderSpacing.Left'#2#10#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2
+#6#20'BorderSpacing.Bottom'#2#6#10'ScrollBars'#7#14'ssAutoVertical'#8'TabOrd'
+'er'#2#1#0#0#0#9'TGroupBox'#15'ProjectGroupBox'#4'Left'#2#6#6'Height'#2')'#3
+'Top'#3':'#1#5'Width'#3#0#2#5'Align'#7#8'alBottom'#8'AutoSize'#9#20'BorderSp'
+'acing.Around'#2#6#7'Caption'#6#15'ProjectGroupBox'#12'ClientHeight'#2#22#11
+'ClientWidth'#3#252#1#8'TabOrder'#2#2#0#9'TCheckBox'#31'AddPackageUnitToProj'
+'ectCheckBox'#4'Left'#2#6#6'Height'#2#22#5'Width'#3#240#1#5'Align'#7#5'alTop'
+#18'BorderSpacing.Left'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'#6#31'AddP'
+'ackageUnitToProjectCheckBox'#8'TabOrder'#2#0#0#0#0#0#5'TPage'#15'Descriptio'
+'nPage'#7'Caption'#6#11'Description'#11'ClientWidth'#3#12#2#12'ClientHeight'
+#3'i'#1#0#9'TGroupBox'#19'DescriptionGroupBox'#22'AnchorSideLeft.Control'#7
+#15'DescriptionPage'#21'AnchorSideTop.Control'#7#15'DescriptionPage'#23'Anch'
+'orSideRight.Control'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asr'
+'Bottom'#4'Left'#2#6#6'Height'#2'`'#3'Top'#2#6#5'Width'#3#252#1#7'Anchors'#11
+#5'akTop'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#20
+'Description/Abstract'#12'ClientHeight'#2'M'#11'ClientWidth'#3#248#1#8'TabOr'
+'der'#2#0#0#5'TMemo'#15'DescriptionMemo'#22'AnchorSideLeft.Control'#7#19'Des'
+'criptionGroupBox'#21'AnchorSideTop.Control'#7#19'DescriptionGroupBox'#23'An'
+'chorSideRight.Control'#7#19'DescriptionGroupBox'#20'AnchorSideRight.Side'#7
+#9'asrBottom'#24'AnchorSideBottom.Control'#7#19'DescriptionGroupBox'#21'Anch'
+'orSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'A'#3'Top'#2#6#5'W'
+'idth'#3#236#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'Scroll'
+'Bars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#14'AuthorGroupBox'
+#22'AnchorSideLeft.Control'#7#15'DescriptionPage'#21'AnchorSideTop.Control'#7
+#19'DescriptionGroupBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSide'
+'Right.Control'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asrBottom'
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'5'#3'Top'#2
+'l'#5'Width'#3#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSiz'
+'e'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Author:'#12'ClientHeight'#2
+'"'#11'ClientWidth'#3#248#1#8'TabOrder'#2#1#0#5'TEdit'#10'AuthorEdit'#22'Anc'
+'horSideLeft.Control'#7#14'AuthorGroupBox'#21'AnchorSideTop.Control'#7#14'Au'
+'thorGroupBox'#23'AnchorSideRight.Control'#7#14'AuthorGroupBox'#20'AnchorSid'
+'eRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7#14'AuthorGroupBo'
+'x'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#23#3'To'
+'p'#2#6#5'Width'#3#236#1#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#8
+'TabOrder'#2#0#0#0#0#9'TGroupBox'#15'LicenseGroupBox'#22'AnchorSideLeft.Cont'
+'rol'#7#15'DescriptionPage'#21'AnchorSideTop.Control'#7#14'AuthorGroupBox'#18
+'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#15'Descrip'
+'tionPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Contr'
+'ol'#7#15'VersionGroupBox'#4'Left'#2#6#6'Height'#2'R'#3'Top'#3#167#0#5'Width'
+#3#252#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'Border'
+'Spacing.Around'#2#6#7'Caption'#6#8'License:'#12'ClientHeight'#2'N'#11'Clien'
+'tWidth'#3#248#1#8'TabOrder'#2#2#0#5'TMemo'#11'LicenseMemo'#22'AnchorSideLef'
+'t.Control'#7#15'LicenseGroupBox'#21'AnchorSideTop.Control'#7#15'LicenseGrou'
+'pBox'#23'AnchorSideRight.Control'#7#15'LicenseGroupBox'#20'AnchorSideRight.'
+'Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7#15'LicenseGroupBox'#21
+'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'B'#3'Top'#2#6
+#5'Width'#3#236#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'Scr'
+'ollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#15'VersionGrou'
+'pBox'#22'AnchorSideLeft.Control'#7#15'DescriptionPage'#21'AnchorSideTop.Con'
+'trol'#7#15'LicenseGroupBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'Anchor'
+'SideRight.Control'#7#15'DescriptionPage'#20'AnchorSideRight.Side'#7#9'asrBo'
+'ttom'#24'AnchorSideBottom.Control'#7#15'DescriptionPage'#21'AnchorSideBotto'
+'m.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'd'#3'Top'#3#255#0#5'Width'#3
+#0#2#5'Align'#7#8'alBottom'#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Vers'
+'ion'#12'ClientHeight'#2'`'#11'ClientWidth'#3#252#1#8'TabOrder'#2#3#0#6'TLab'
+'el'#17'VersionMajorLabel'#4'Left'#2#6#6'Height'#2#14#3'Top'#2#3#5'Width'#2
+#28#7'Caption'#6#5'Major'#11'ParentColor'#8#0#0#6'TLabel'#17'VersionMinorLab'
+'el'#4'Left'#2'n'#6'Height'#2#14#3'Top'#2#3#5'Width'#2#27#7'Caption'#6#5'Min'
+'or'#11'ParentColor'#8#0#0#6'TLabel'#19'VersionReleaseLabel'#4'Left'#3#214#0
+#6'Height'#2#14#3'Top'#2#3#5'Width'#2''''#7'Caption'#6#7'Release'#11'ParentC'
,'olor'#8#0#0#6'TLabel'#17'VersionBuildLabel'#4'Left'#3'>'#1#6'Height'#2#14#3
+'Top'#2#3#5'Width'#2'?'#7'Caption'#6#12'Build Number'#11'ParentColor'#8#0#0#9
+'TSpinEdit'#20'VersionMajorSpinEdit'#22'AnchorSideLeft.Control'#7#15'Version'
+'GroupBox'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#18'BorderSpa'
+'cing.Left'#2#6#8'MaxValue'#3#15''''#8'TabOrder'#2#0#0#0#9'TSpinEdit'#20'Ver'
+'sionMinorSpinEdit'#4'Left'#2'n'#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#8
+'MaxValue'#3#15''''#8'TabOrder'#2#1#0#0#9'TSpinEdit'#22'VersionReleaseSpinEd'
+'it'#4'Left'#3#214#0#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#8'MaxValue'#3
+#15''''#8'TabOrder'#2#2#0#0#9'TSpinEdit'#20'VersionBuildSpinEdit'#4'Left'#3
+'>'#1#6'Height'#2#23#3'Top'#2#20#5'Width'#2'D'#8'MaxValue'#3#15''''#8'TabOrd'
+'er'#2#3#0#0#9'TCheckBox'#28'AutoIncrementOnBuildCheckBox'#22'AnchorSideLeft'
+'.Control'#7#20'VersionMajorSpinEdit'#21'AnchorSideTop.Control'#7#20'Version'
+'MajorSpinEdit'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2
+#13#3'Top'#2'1'#5'Width'#3#208#0#17'BorderSpacing.Top'#2#6#7'Caption'#6'(Aut'
+'omatically increment version on build'#7'Enabled'#8#8'TabOrder'#2#4#0#0#0#0
+#5'TPage'#7'IDEPage'#7'Caption'#6#15'IDE Integration'#11'ClientWidth'#3#12#2
+#12'ClientHeight'#3'i'#1#0#11'TRadioGroup'#17'PkgTypeRadioGroup'#22'AnchorSi'
+'deLeft.Control'#7#7'IDEPage'#21'AnchorSideTop.Control'#7#7'IDEPage'#23'Anch'
+'orSideRight.Control'#7#7'IDEPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
+'Left'#2#6#6'Height'#2't'#3'Top'#2#6#5'Width'#3#0#2#7'Anchors'#11#5'akTop'#6
+'akLeft'#7'akRight'#0#8'AutoFill'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6
+#11'PackageType'#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBott'
+'omSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildRes'
+'ize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'Chil'
+'dSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertica'
+'l'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopTo'
+'Bottom'#27'ChildSizing.ControlsPerLine'#2#1#12'ClientHeight'#2'a'#11'Client'
+'Width'#3#252#1#9'ItemIndex'#2#2#13'Items.Strings'#1#6#15'Designtime only'#6
+#12'Runtime only'#6#22'Designtime and Runtime'#0#7'OnClick'#7#22'PkgTypeRadi'
+'oGroupClick'#8'TabOrder'#2#0#0#0#11'TRadioGroup'#16'UpdateRadioGroup'#22'An'
+'chorSideLeft.Control'#7#7'IDEPage'#21'AnchorSideTop.Control'#7#17'PkgTypeRa'
+'dioGroup'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'
+#7#7'IDEPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2
+'t'#3'Top'#3#128#0#5'Width'#3#0#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'
+#0#8'AutoFill'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#14'Update/Rebuild'
+#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29
+'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin'
+'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori'
+'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh'
+'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi'
+'zing.ControlsPerLine'#2#1#12'ClientHeight'#2'a'#11'ClientWidth'#3#252#1#9'I'
+'temIndex'#2#0#13'Items.Strings'#1#6#31'Automatically rebuild as needed'#6' '
+'Auto rebuild when rebuilding all'#6'(Manual compilation (never automaticall'
+'y)'#0#8'TabOrder'#2#1#0#0#9'TGroupBox'#14'LazDocGroupBox'#22'AnchorSideLeft'
+'.Control'#7#7'IDEPage'#21'AnchorSideTop.Control'#7#16'UpdateRadioGroup'#18
+'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#7'IDEPage'
+#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'6'#3'Top'#3
+#250#0#5'Width'#3#0#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'AutoSi'
+'ze'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#30'LazDoc - Lazarus documen'
+'tation'#12'ClientHeight'#2'#'#11'ClientWidth'#3#252#1#8'TabOrder'#2#2#0#5'T'
+'Edit'#14'LazDocPathEdit'#22'AnchorSideLeft.Control'#7#14'LazDocGroupBox'#21
+'AnchorSideTop.Control'#7#14'LazDocGroupBox'#4'Left'#2#6#6'Height'#2#23#3'To'
+'p'#2#6#5'Width'#3#164#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20'Bo'
+'rderSpacing.Around'#2#6#8'TabOrder'#2#0#0#0#0#0#5'TPage'#12'ProvidesPage'#7
+'Caption'#6#8'Provides'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'i'#1#0#9'T'
+'GroupBox'#16'ProvidesGroupBox'#22'AnchorSideLeft.Control'#7#12'ProvidesPage'
+#21'AnchorSideTop.Control'#7#12'ProvidesPage'#23'AnchorSideRight.Control'#7
+#12'ProvidesPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBotto'
+'m.Control'#7#12'ProvidesPage'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Le'
+'ft'#2#6#6'Height'#3']'#1#3'Top'#2#6#5'Width'#3#0#2#5'Align'#7#8'alBottom'#7
+'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.Ar'
+'ound'#2#6#7'Caption'#6'9This package provides the same as the following pac'
+'kages:'#12'ClientHeight'#3'Y'#1#11'ClientWidth'#3#252#1#8'TabOrder'#2#0#0#5
+'TMemo'#12'ProvidesMemo'#22'AnchorSideLeft.Control'#7#16'ProvidesGroupBox'#21
,'AnchorSideTop.Control'#7#16'ProvidesGroupBox'#23'AnchorSideRight.Control'#7
+#16'ProvidesGroupBox'#24'AnchorSideBottom.Control'#7#16'ProvidesGroupBox'#21
+'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3'M'#1#3'Top'#2
+#6#5'Width'#3#240#1#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#10'S'
+'crollBars'#7#14'ssAutoVertical'#8'TabOrder'#2#0#0#0#0#0#5'TPage'#4'i18n'#7
+'Caption'#6#4'i18n'#11'ClientWidth'#3#12#2#12'ClientHeight'#3'i'#1#0#9'TGrou'
+'pBox'#12'I18NGroupBox'#22'AnchorSideLeft.Control'#7#4'i18n'#21'AnchorSideTo'
+'p.Control'#7#18'EnableI18NCheckBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23
+'AnchorSideRight.Control'#7#4'i18n'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
+'Left'#2#6#6'Height'#2'I'#3'Top'#2#26#5'Width'#3#252#1#7'Anchors'#11#5'akTop'
+#6'akLeft'#7'akRight'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'
+#6#12'i18n Options'#12'ClientHeight'#2'6'#11'ClientWidth'#3#248#1#8'TabOrder'
+#2#0#0#6'TLabel'#13'PoOutDirLabel'#22'AnchorSideLeft.Control'#7#12'I18NGroup'
+'Box'#21'AnchorSideTop.Control'#7#12'I18NGroupBox'#4'Left'#2#6#6'Height'#2#14
+#3'Top'#2#6#5'Width'#2'g'#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'PO Ou'
+'tput Directory:'#11'ParentColor'#8#0#0#5'TEdit'#12'POOutDirEdit'#22'AnchorS'
+'ideLeft.Control'#7#12'I18NGroupBox'#21'AnchorSideTop.Control'#7#13'PoOutDir'
+'Label'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7
+#14'POOutDirButton'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#26#5'Width'#3#193#1#7
+'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#8
+'TabOrder'#2#0#0#0#7'TButton'#14'POOutDirButton'#21'AnchorSideTop.Control'#7
+#12'POOutDirEdit'#23'AnchorSideRight.Control'#7#12'I18NGroupBox'#20'AnchorSi'
+'deRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7#12'POOutDirEdit'
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3#205#1#6'Height'#2#23#3'T'

View File

@ -50,7 +50,9 @@ type
TPackageOptionsDialog = class(TForm)
AdditionalInfoButton: TButton;
AddPackageUnitToProjectCheckBox: TCheckBox;
EnableI18NCheckBox: TCheckBox;
ProjectGroupBox: TGroupBox;
I18NGroupBox: TGroupBox;
ProvidesGroupBox: TGroupBox;
LazDocGroupBox: TGroupBox;
@ -110,6 +112,7 @@ type
LazDocPathButton: TPathEditorButton;
procedure EnableI18NCheckBoxChange(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure OkButtonClick(Sender: TObject);
procedure POOutputDirectoryButtonClick(Sender: TObject);
procedure PackageOptionsDialogClose(Sender: TObject;
@ -262,6 +265,11 @@ begin
I18NGroupBox.Enabled := EnableI18NCheckBox.Checked;
end;
procedure TPackageOptionsDialog.FormCreate(Sender: TObject);
begin
end;
procedure TPackageOptionsDialog.OkButtonClick(Sender: TObject);
var
NewPackageType: TLazPackageType;
@ -336,7 +344,8 @@ begin
LinkerOptions:=LinkerOptionsMemo.Text;
CustomOptions:=CustomOptionsMemo.Text;
end;
LazPackage.AddToProjectUsesSection:=AddPackageUnitToProjectCheckBox.Checked;
// IDE integration page
case UpdateRadioGroup.ItemIndex of
2: LazPackage.AutoUpdate:=pupManually;
@ -413,7 +422,6 @@ begin
EnableI18NCheckBox.Caption:=rsEnableI18n;
I18NGroupBox.Caption:=rsI18nOptions;
PoOutDirlabel.Caption:=rsPOOutputDirectory;
end;
procedure TPackageOptionsDialog.SetupIDEPage;
@ -514,6 +522,8 @@ begin
OnExecuted:=@PathEditBtnExecuted;
end;
ProjectGroupBox.Caption:=dlgEnvProject;
AddPackageUnitToProjectCheckBox.Caption:=podAddPackageUnitToUsesSection;
end;
procedure TPackageOptionsDialog.ReadOptionsFromPackage;
@ -550,7 +560,8 @@ begin
LinkerOptionsMemo.Text:=LinkerOptions;
CustomOptionsMemo.Text:=CustomOptions;
end;
AddPackageUnitToProjectCheckBox.Checked:=LazPackage.AddToProjectUsesSection;
// IDE integration
LazDocPathEdit.Text:=LazPackage.LazDocPaths;