mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:17:57 +02:00
Merge branch 'IDE/Recent/Packages' into 'main'
Improved features of recent packages (IDE toolbar, options) See merge request freepascal.org/lazarus/lazarus!416
This commit is contained in:
commit
00f3a5c40e
@ -28,7 +28,7 @@
|
|||||||
</Debugging>
|
</Debugging>
|
||||||
</Linking>
|
</Linking>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Description Value="Creates a third section (on the top) in the Open tool button drop-down menu where you can register your favorite projects."/>
|
<Description Value="Creates an additional section for favorite projects in the "Open" tool button drop-down menu."/>
|
||||||
<License Value="GPL-2"/>
|
<License Value="GPL-2"/>
|
||||||
<Version Minor="1" Release="1"/>
|
<Version Minor="1" Release="1"/>
|
||||||
<Files Count="2">
|
<Files Count="2">
|
||||||
|
@ -164,7 +164,7 @@ end;
|
|||||||
|
|
||||||
procedure TOpenFileFavToolButton.RefreshMenu(Sender: TObject);
|
procedure TOpenFileFavToolButton.RefreshMenu(Sender: TObject);
|
||||||
var
|
var
|
||||||
xM, xSep: TMenuItem;
|
xM, xSep, xHeader: TMenuItem;
|
||||||
xFavoriteFile: string;
|
xFavoriteFile: string;
|
||||||
xMI, xAddToFav: TFileNameMenuItem;
|
xMI, xAddToFav: TFileNameMenuItem;
|
||||||
xProj: TLazProject;
|
xProj: TLazProject;
|
||||||
@ -210,10 +210,15 @@ begin
|
|||||||
|
|
||||||
if xMIndex > 0 then
|
if xMIndex > 0 then
|
||||||
begin
|
begin
|
||||||
|
// separator
|
||||||
xSep := TMenuItem.Create(Self);
|
xSep := TMenuItem.Create(Self);
|
||||||
xSep.Caption := '-';
|
xSep.Caption := cLineCaption;
|
||||||
xM.Insert(xMIndex, xSep);
|
xM.Insert(xMIndex, xSep);
|
||||||
Inc(xMIndex);
|
// header
|
||||||
|
xHeader := TMenuItem.Create(Self);
|
||||||
|
xHeader.Caption := sFavoritesHeaderS;
|
||||||
|
xHeader.Enabled := false;
|
||||||
|
xM.Insert(0, xHeader);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ unit favoritesstr;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
resourcestring
|
resourcestring
|
||||||
|
sFavoritesHeaderS = 'Favorites:';
|
||||||
sAddToFavoritesS = 'Add to favorites: %s';
|
sAddToFavoritesS = 'Add to favorites: %s';
|
||||||
sRemoveFromFavoritesS = 'Remove from favorites: %s';
|
sRemoveFromFavoritesS = 'Remove from favorites: %s';
|
||||||
|
|
||||||
|
@ -11,50 +11,13 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
Visible = False
|
Visible = False
|
||||||
DesignLeft = 395
|
DesignLeft = 395
|
||||||
DesignTop = 121
|
DesignTop = 121
|
||||||
object MaxRecentOpenFilesLabel: TLabel
|
|
||||||
AnchorSideLeft.Control = MaxRecentOpenFilesSpin
|
|
||||||
AnchorSideTop.Control = Owner
|
|
||||||
Left = 317
|
|
||||||
Height = 15
|
|
||||||
Top = 2
|
|
||||||
Width = 138
|
|
||||||
Caption = 'MaxRecentOpenFilesLabel'
|
|
||||||
ParentColor = False
|
|
||||||
end
|
|
||||||
object MaxRecentProjectFilesLabel: TLabel
|
|
||||||
AnchorSideLeft.Control = Owner
|
|
||||||
AnchorSideTop.Control = Owner
|
|
||||||
Left = 3
|
|
||||||
Height = 15
|
|
||||||
Top = 2
|
|
||||||
Width = 146
|
|
||||||
BorderSpacing.Left = 3
|
|
||||||
Caption = 'MaxRecentProjectFilesLabel'
|
|
||||||
ParentColor = False
|
|
||||||
end
|
|
||||||
object ShowCompileDialogCheckBox: TCheckBox
|
|
||||||
AnchorSideLeft.Control = Owner
|
|
||||||
AnchorSideTop.Control = MaxRecentProjectFilesSpin
|
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
AnchorSideRight.Side = asrBottom
|
|
||||||
Left = 2
|
|
||||||
Height = 19
|
|
||||||
Top = 53
|
|
||||||
Width = 178
|
|
||||||
BorderSpacing.Top = 11
|
|
||||||
Caption = 'ShowCompileDialogCheckBox'
|
|
||||||
TabOrder = 2
|
|
||||||
OnChange = ShowCompileDialogCheckBoxChange
|
|
||||||
end
|
|
||||||
object LazarusDirLabel: TLabel
|
object LazarusDirLabel: TLabel
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = AutoCloseCompileDialogCheckBox
|
AnchorSideTop.Control = Owner
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 101
|
Top = 2
|
||||||
Width = 82
|
Width = 75
|
||||||
BorderSpacing.Top = 10
|
|
||||||
Caption = 'LazarusDirLabel'
|
Caption = 'LazarusDirLabel'
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
@ -68,14 +31,14 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = LazarusDirComboBox
|
AnchorSideBottom.Control = LazarusDirComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 116
|
Top = 15
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 5
|
TabOrder = 1
|
||||||
OnClick = DirectoriesButtonClick
|
OnClick = DirectoriesButtonClick
|
||||||
end
|
end
|
||||||
object LazarusDirComboBox: TComboBox
|
object LazarusDirComboBox: TComboBox
|
||||||
@ -84,14 +47,14 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = LazarusDirButton
|
AnchorSideRight.Control = LazarusDirButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 116
|
Top = 15
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 4
|
TabOrder = 0
|
||||||
Text = 'LazarusDirComboBox'
|
Text = 'LazarusDirComboBox'
|
||||||
end
|
end
|
||||||
object CompilerPathComboBox: TComboBox
|
object CompilerPathComboBox: TComboBox
|
||||||
@ -100,12 +63,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = CompilerPathButton
|
AnchorSideRight.Control = CompilerPathButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 160
|
Top = 55
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
TabOrder = 6
|
TabOrder = 2
|
||||||
Text = 'CompilerPathComboBox'
|
Text = 'CompilerPathComboBox'
|
||||||
end
|
end
|
||||||
object CompilerPathButton: TButton
|
object CompilerPathButton: TButton
|
||||||
@ -115,12 +78,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = CompilerPathComboBox
|
AnchorSideBottom.Control = CompilerPathComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 160
|
Top = 55
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabOrder = 7
|
TabOrder = 3
|
||||||
OnClick = FilesButtonClick
|
OnClick = FilesButtonClick
|
||||||
end
|
end
|
||||||
object CompilerPathLabel: TLabel
|
object CompilerPathLabel: TLabel
|
||||||
@ -128,9 +91,9 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Control = LazarusDirComboBox
|
AnchorSideTop.Control = LazarusDirComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 145
|
Top = 42
|
||||||
Width = 101
|
Width = 88
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'CompilerPathLabel'
|
Caption = 'CompilerPathLabel'
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
@ -141,12 +104,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = FPCSourceDirButton
|
AnchorSideRight.Control = FPCSourceDirButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 204
|
Top = 95
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
TabOrder = 8
|
TabOrder = 4
|
||||||
Text = 'FPCSourceDirComboBox'
|
Text = 'FPCSourceDirComboBox'
|
||||||
end
|
end
|
||||||
object FPCSourceDirButton: TButton
|
object FPCSourceDirButton: TButton
|
||||||
@ -156,12 +119,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = FPCSourceDirComboBox
|
AnchorSideBottom.Control = FPCSourceDirComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 204
|
Top = 95
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabOrder = 9
|
TabOrder = 5
|
||||||
OnClick = DirectoriesButtonClick
|
OnClick = DirectoriesButtonClick
|
||||||
end
|
end
|
||||||
object FPCSourceDirLabel: TLabel
|
object FPCSourceDirLabel: TLabel
|
||||||
@ -169,9 +132,9 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Control = CompilerPathComboBox
|
AnchorSideTop.Control = CompilerPathComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 189
|
Top = 82
|
||||||
Width = 100
|
Width = 90
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'FPCSourceDirLabel'
|
Caption = 'FPCSourceDirLabel'
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
@ -181,9 +144,9 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Control = FPCSourceDirComboBox
|
AnchorSideTop.Control = FPCSourceDirComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 233
|
Top = 122
|
||||||
Width = 81
|
Width = 72
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'MakePathLabel'
|
Caption = 'MakePathLabel'
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
@ -193,9 +156,9 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Control = MakePathComboBox
|
AnchorSideTop.Control = MakePathComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 277
|
Top = 162
|
||||||
Width = 91
|
Width = 81
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'TestBuildDirLabel'
|
Caption = 'TestBuildDirLabel'
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
@ -206,12 +169,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = MakePathButton
|
AnchorSideRight.Control = MakePathButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 248
|
Top = 135
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
TabOrder = 10
|
TabOrder = 6
|
||||||
Text = 'MakePathComboBox'
|
Text = 'MakePathComboBox'
|
||||||
end
|
end
|
||||||
object MakePathButton: TButton
|
object MakePathButton: TButton
|
||||||
@ -221,12 +184,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = MakePathComboBox
|
AnchorSideBottom.Control = MakePathComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 248
|
Top = 135
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabOrder = 11
|
TabOrder = 7
|
||||||
OnClick = FilesButtonClick
|
OnClick = FilesButtonClick
|
||||||
end
|
end
|
||||||
object TestBuildDirComboBox: TComboBox
|
object TestBuildDirComboBox: TComboBox
|
||||||
@ -235,12 +198,12 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = TestBuildDirButton
|
AnchorSideRight.Control = TestBuildDirButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 292
|
Top = 175
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
TabOrder = 12
|
TabOrder = 8
|
||||||
Text = 'TestBuildDirComboBox'
|
Text = 'TestBuildDirComboBox'
|
||||||
end
|
end
|
||||||
object TestBuildDirButton: TButton
|
object TestBuildDirButton: TButton
|
||||||
@ -250,35 +213,22 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = TestBuildDirComboBox
|
AnchorSideBottom.Control = TestBuildDirComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 292
|
Top = 175
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabOrder = 13
|
TabOrder = 9
|
||||||
OnClick = DirectoriesButtonClick
|
OnClick = DirectoriesButtonClick
|
||||||
end
|
end
|
||||||
object AutoCloseCompileDialogCheckBox: TCheckBox
|
|
||||||
AnchorSideLeft.Control = ShowCompileDialogCheckBox
|
|
||||||
AnchorSideTop.Control = ShowCompileDialogCheckBox
|
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
AnchorSideRight.Side = asrBottom
|
|
||||||
Left = 32
|
|
||||||
Height = 19
|
|
||||||
Top = 72
|
|
||||||
Width = 204
|
|
||||||
BorderSpacing.Left = 30
|
|
||||||
Caption = 'AutoCloseCompileDialogCheckBox'
|
|
||||||
TabOrder = 3
|
|
||||||
end
|
|
||||||
object CompilerTranslationFileLabel: TLabel
|
object CompilerTranslationFileLabel: TLabel
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = TestBuildDirComboBox
|
AnchorSideTop.Control = TestBuildDirComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 321
|
Top = 202
|
||||||
Width = 153
|
Width = 135
|
||||||
Alignment = taRightJustify
|
Alignment = taRightJustify
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'CompilerTranslationFileLabel'
|
Caption = 'CompilerTranslationFileLabel'
|
||||||
@ -293,14 +243,14 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = CompilerTranslationFileComboBox
|
AnchorSideBottom.Control = CompilerTranslationFileComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 336
|
Top = 215
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 15
|
TabOrder = 11
|
||||||
OnClick = CompilerTranslationFileButtonClick
|
OnClick = CompilerTranslationFileButtonClick
|
||||||
end
|
end
|
||||||
object CompilerTranslationFileComboBox: TComboBox
|
object CompilerTranslationFileComboBox: TComboBox
|
||||||
@ -309,69 +259,24 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = CompilerTranslationFileButton
|
AnchorSideRight.Control = CompilerTranslationFileButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 336
|
Top = 215
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 14
|
TabOrder = 10
|
||||||
Text = 'CompilerTranslationFileComboBox'
|
Text = 'CompilerTranslationFileComboBox'
|
||||||
end
|
end
|
||||||
object lblCenter: TLabel
|
|
||||||
AnchorSideLeft.Control = Owner
|
|
||||||
AnchorSideLeft.Side = asrCenter
|
|
||||||
Left = 311
|
|
||||||
Height = 1
|
|
||||||
Top = 105
|
|
||||||
Width = 1
|
|
||||||
ParentColor = False
|
|
||||||
end
|
|
||||||
object MaxRecentOpenFilesSpin: TSpinEdit
|
|
||||||
AnchorSideLeft.Control = lblCenter
|
|
||||||
AnchorSideLeft.Side = asrBottom
|
|
||||||
AnchorSideTop.Control = MaxRecentOpenFilesLabel
|
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
AnchorSideRight.Control = Owner
|
|
||||||
AnchorSideRight.Side = asrBottom
|
|
||||||
Left = 317
|
|
||||||
Height = 23
|
|
||||||
Hint = 'Value 0 means unlimited.'
|
|
||||||
Top = 19
|
|
||||||
Width = 303
|
|
||||||
Anchors = [akTop, akLeft, akRight]
|
|
||||||
BorderSpacing.Left = 3
|
|
||||||
BorderSpacing.Around = 2
|
|
||||||
ParentShowHint = False
|
|
||||||
ShowHint = True
|
|
||||||
TabOrder = 1
|
|
||||||
end
|
|
||||||
object MaxRecentProjectFilesSpin: TSpinEdit
|
|
||||||
AnchorSideLeft.Control = Owner
|
|
||||||
AnchorSideTop.Control = MaxRecentProjectFilesLabel
|
|
||||||
AnchorSideTop.Side = asrBottom
|
|
||||||
AnchorSideRight.Control = lblCenter
|
|
||||||
Left = 2
|
|
||||||
Height = 23
|
|
||||||
Hint = 'Value 0 means unlimited.'
|
|
||||||
Top = 19
|
|
||||||
Width = 304
|
|
||||||
Anchors = [akTop, akLeft, akRight]
|
|
||||||
BorderSpacing.Right = 3
|
|
||||||
BorderSpacing.Around = 2
|
|
||||||
ParentShowHint = False
|
|
||||||
ShowHint = True
|
|
||||||
TabOrder = 0
|
|
||||||
end
|
|
||||||
object FppkgConfigurationFileLabel: TLabel
|
object FppkgConfigurationFileLabel: TLabel
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = CompilerTranslationFileComboBox
|
AnchorSideTop.Control = CompilerTranslationFileComboBox
|
||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 15
|
Height = 13
|
||||||
Top = 365
|
Top = 242
|
||||||
Width = 153
|
Width = 135
|
||||||
Alignment = taRightJustify
|
Alignment = taRightJustify
|
||||||
BorderSpacing.Top = 6
|
BorderSpacing.Top = 6
|
||||||
Caption = 'FppkgConfigurationFileLabel'
|
Caption = 'FppkgConfigurationFileLabel'
|
||||||
@ -385,14 +290,14 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideTop.Side = asrBottom
|
AnchorSideTop.Side = asrBottom
|
||||||
AnchorSideRight.Control = FppkgConfigurationFileButton
|
AnchorSideRight.Control = FppkgConfigurationFileButton
|
||||||
Left = 2
|
Left = 2
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 380
|
Top = 255
|
||||||
Width = 595
|
Width = 595
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
ItemHeight = 15
|
ItemHeight = 13
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 16
|
TabOrder = 12
|
||||||
Text = 'FppkgConfigurationFileComboBox'
|
Text = 'FppkgConfigurationFileComboBox'
|
||||||
end
|
end
|
||||||
object FppkgConfigurationFileButton: TButton
|
object FppkgConfigurationFileButton: TButton
|
||||||
@ -402,14 +307,112 @@ object FilesOptionsFrame: TFilesOptionsFrame
|
|||||||
AnchorSideBottom.Control = FppkgConfigurationFileComboBox
|
AnchorSideBottom.Control = FppkgConfigurationFileComboBox
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 597
|
Left = 597
|
||||||
Height = 23
|
Height = 21
|
||||||
Top = 380
|
Top = 255
|
||||||
Width = 23
|
Width = 23
|
||||||
Anchors = [akTop, akRight, akBottom]
|
Anchors = [akTop, akRight, akBottom]
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 17
|
TabOrder = 13
|
||||||
OnClick = FppkgConfigurationFileButtonClick
|
OnClick = FppkgConfigurationFileButtonClick
|
||||||
end
|
end
|
||||||
|
object RecentDividerBevel: TDividerBevel
|
||||||
|
AnchorSideLeft.Control = Owner
|
||||||
|
AnchorSideTop.Control = FppkgConfigurationFileComboBox
|
||||||
|
AnchorSideTop.Side = asrBottom
|
||||||
|
AnchorSideRight.Control = Owner
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 2
|
||||||
|
Height = 13
|
||||||
|
Top = 282
|
||||||
|
Width = 618
|
||||||
|
Caption = 'RecentDividerBevel'
|
||||||
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.Top = 6
|
||||||
|
Font.Style = [fsBold]
|
||||||
|
ParentFont = False
|
||||||
|
end
|
||||||
|
object RecentMaxCountGroupBox: TGroupBox
|
||||||
|
AnchorSideLeft.Control = Owner
|
||||||
|
AnchorSideTop.Control = RecentDividerBevel
|
||||||
|
AnchorSideTop.Side = asrBottom
|
||||||
|
AnchorSideRight.Control = Owner
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 2
|
||||||
|
Height = 64
|
||||||
|
Top = 301
|
||||||
|
Width = 618
|
||||||
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Top = 6
|
||||||
|
Caption = 'RecentMaxCountGroupBox'
|
||||||
|
ChildSizing.LeftRightSpacing = 6
|
||||||
|
ChildSizing.TopBottomSpacing = 6
|
||||||
|
ChildSizing.HorizontalSpacing = 6
|
||||||
|
ChildSizing.EnlargeHorizontal = crsSameSize
|
||||||
|
ChildSizing.Layout = cclTopToBottomThenLeftToRight
|
||||||
|
ChildSizing.ControlsPerLine = 2
|
||||||
|
ClientHeight = 46
|
||||||
|
ClientWidth = 614
|
||||||
|
TabOrder = 14
|
||||||
|
object MaxRecentProjectFilesLabel: TLabel
|
||||||
|
Left = 6
|
||||||
|
Height = 13
|
||||||
|
Top = 6
|
||||||
|
Width = 197
|
||||||
|
Caption = 'MaxRecentProjectFilesLabel'
|
||||||
|
ParentColor = False
|
||||||
|
end
|
||||||
|
object MaxRecentProjectFilesSpin: TSpinEdit
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 6
|
||||||
|
Height = 21
|
||||||
|
Hint = 'Value 0 means unlimited.'
|
||||||
|
Top = 19
|
||||||
|
Width = 197
|
||||||
|
ParentShowHint = False
|
||||||
|
ShowHint = True
|
||||||
|
TabOrder = 0
|
||||||
|
end
|
||||||
|
object MaxRecentPackageFilesLabel: TLabel
|
||||||
|
AnchorSideTop.Side = asrBottom
|
||||||
|
Left = 209
|
||||||
|
Height = 13
|
||||||
|
Top = 6
|
||||||
|
Width = 196
|
||||||
|
Caption = 'MaxRecentPackageFilesLabel'
|
||||||
|
end
|
||||||
|
object MaxRecentPackageFilesSpin: TSpinEdit
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 209
|
||||||
|
Height = 21
|
||||||
|
Hint = 'Value 0 means unlimited.'
|
||||||
|
Top = 19
|
||||||
|
Width = 196
|
||||||
|
ParentShowHint = False
|
||||||
|
ShowHint = True
|
||||||
|
TabOrder = 1
|
||||||
|
end
|
||||||
|
object MaxRecentOpenFilesLabel: TLabel
|
||||||
|
AnchorSideTop.Side = asrBottom
|
||||||
|
Left = 411
|
||||||
|
Height = 13
|
||||||
|
Top = 6
|
||||||
|
Width = 197
|
||||||
|
Caption = 'MaxRecentOpenFilesLabel'
|
||||||
|
ParentColor = False
|
||||||
|
end
|
||||||
|
object MaxRecentOpenFilesSpin: TSpinEdit
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
Left = 411
|
||||||
|
Height = 21
|
||||||
|
Hint = 'Value 0 means unlimited.'
|
||||||
|
Top = 19
|
||||||
|
Width = 197
|
||||||
|
ParentShowHint = False
|
||||||
|
ShowHint = True
|
||||||
|
TabOrder = 2
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
@ -31,7 +31,9 @@ interface
|
|||||||
uses
|
uses
|
||||||
Classes, SysUtils,
|
Classes, SysUtils,
|
||||||
// LCL
|
// LCL
|
||||||
StdCtrls, Dialogs, Controls, Spin,
|
StdCtrls, Dialogs, Controls, Spin, ExtCtrls,
|
||||||
|
// LazControls
|
||||||
|
DividerBevel,
|
||||||
// LazUtils
|
// LazUtils
|
||||||
FileUtil, LazFileUtils,
|
FileUtil, LazFileUtils,
|
||||||
// CodeTools
|
// CodeTools
|
||||||
@ -52,7 +54,6 @@ type
|
|||||||
{ TFilesOptionsFrame }
|
{ TFilesOptionsFrame }
|
||||||
|
|
||||||
TFilesOptionsFrame = class(TAbstractIDEOptionsEditor)
|
TFilesOptionsFrame = class(TAbstractIDEOptionsEditor)
|
||||||
AutoCloseCompileDialogCheckBox: TCheckBox;
|
|
||||||
CompilerTranslationFileButton:TButton;
|
CompilerTranslationFileButton:TButton;
|
||||||
CompilerTranslationFileComboBox:TComboBox;
|
CompilerTranslationFileComboBox:TComboBox;
|
||||||
CompilerTranslationFileLabel:TLabel;
|
CompilerTranslationFileLabel:TLabel;
|
||||||
@ -62,18 +63,20 @@ type
|
|||||||
FPCSourceDirButton:TButton;
|
FPCSourceDirButton:TButton;
|
||||||
FPCSourceDirComboBox:TComboBox;
|
FPCSourceDirComboBox:TComboBox;
|
||||||
FPCSourceDirLabel:TLabel;
|
FPCSourceDirLabel:TLabel;
|
||||||
lblCenter: TLabel;
|
|
||||||
LazarusDirButton:TButton;
|
LazarusDirButton:TButton;
|
||||||
LazarusDirComboBox:TComboBox;
|
LazarusDirComboBox:TComboBox;
|
||||||
LazarusDirLabel:TLabel;
|
LazarusDirLabel:TLabel;
|
||||||
MakePathButton:TButton;
|
MakePathButton:TButton;
|
||||||
MakePathComboBox:TComboBox;
|
MakePathComboBox:TComboBox;
|
||||||
MakePathLabel:TLabel;
|
MakePathLabel:TLabel;
|
||||||
|
RecentDividerBevel: TDividerBevel;
|
||||||
|
RecentMaxCountGroupBox: TGroupBox;
|
||||||
MaxRecentOpenFilesSpin: TSpinEdit;
|
MaxRecentOpenFilesSpin: TSpinEdit;
|
||||||
MaxRecentOpenFilesLabel: TLabel;
|
MaxRecentOpenFilesLabel: TLabel;
|
||||||
MaxRecentProjectFilesSpin: TSpinEdit;
|
MaxRecentProjectFilesSpin: TSpinEdit;
|
||||||
MaxRecentProjectFilesLabel: TLabel;
|
MaxRecentProjectFilesLabel: TLabel;
|
||||||
ShowCompileDialogCheckBox: TCheckBox;
|
MaxRecentPackageFilesLabel: TLabel;
|
||||||
|
MaxRecentPackageFilesSpin: TSpinEdit;
|
||||||
TestBuildDirButton:TButton;
|
TestBuildDirButton:TButton;
|
||||||
TestBuildDirComboBox:TComboBox;
|
TestBuildDirComboBox:TComboBox;
|
||||||
TestBuildDirLabel:TLabel;
|
TestBuildDirLabel:TLabel;
|
||||||
@ -84,7 +87,6 @@ type
|
|||||||
procedure FilesButtonClick(Sender: TObject);
|
procedure FilesButtonClick(Sender: TObject);
|
||||||
procedure DirectoriesButtonClick(Sender: TObject);
|
procedure DirectoriesButtonClick(Sender: TObject);
|
||||||
procedure FppkgConfigurationFileButtonClick(Sender: TObject);
|
procedure FppkgConfigurationFileButtonClick(Sender: TObject);
|
||||||
procedure ShowCompileDialogCheckBoxChange(Sender: TObject);
|
|
||||||
private
|
private
|
||||||
FOldLazarusDir: string;
|
FOldLazarusDir: string;
|
||||||
FOldRealLazarusDir: string;
|
FOldRealLazarusDir: string;
|
||||||
@ -101,6 +103,7 @@ type
|
|||||||
fOldFppkgConfigurationFilename: string;
|
fOldFppkgConfigurationFilename: string;
|
||||||
FOldMaxRecentOpenFiles: integer;
|
FOldMaxRecentOpenFiles: integer;
|
||||||
FOldMaxRecentProjectFiles: integer;
|
FOldMaxRecentProjectFiles: integer;
|
||||||
|
FOldMaxRecentPackageFiles: integer;
|
||||||
function CheckLazarusDir(Buttons: TMsgDlgButtons): boolean;
|
function CheckLazarusDir(Buttons: TMsgDlgButtons): boolean;
|
||||||
function CheckCompiler(Buttons: TMsgDlgButtons): boolean;
|
function CheckCompiler(Buttons: TMsgDlgButtons): boolean;
|
||||||
function CheckFPCSourceDir(Buttons: TMsgDlgButtons): boolean;
|
function CheckFPCSourceDir(Buttons: TMsgDlgButtons): boolean;
|
||||||
@ -301,19 +304,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFilesOptionsFrame.ShowCompileDialogCheckBoxChange(Sender: TObject);
|
|
||||||
begin
|
|
||||||
AutoCloseCompileDialogCheckBox.Enabled := ShowCompileDialogCheckBox.Checked;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TFilesOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
procedure TFilesOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||||
begin
|
begin
|
||||||
MaxRecentOpenFilesLabel.Caption:=dlgMaxRecentFiles;
|
|
||||||
MaxRecentOpenFilesLabel.Hint:=dlgMaxRecentHint;
|
|
||||||
MaxRecentProjectFilesLabel.Caption:=dlgMaxRecentProjs;
|
|
||||||
MaxRecentProjectFilesLabel.Hint:=dlgMaxRecentHint;
|
|
||||||
ShowCompileDialogCheckBox.Visible:=false;
|
|
||||||
AutoCloseCompileDialogCheckBox.Visible:=false;
|
|
||||||
LazarusDirLabel.Caption:=dlgLazarusDir;
|
LazarusDirLabel.Caption:=dlgLazarusDir;
|
||||||
LazarusDirLabel.Hint:=Format(lisLazarusDirHint,[GetPrimaryConfigPath]);
|
LazarusDirLabel.Hint:=Format(lisLazarusDirHint,[GetPrimaryConfigPath]);
|
||||||
LazarusDirComboBox.Hint:=LazarusDirLabel.Hint;
|
LazarusDirComboBox.Hint:=LazarusDirLabel.Hint;
|
||||||
@ -361,6 +353,19 @@ begin
|
|||||||
begin
|
begin
|
||||||
Add(GetForcedPathDelims('$(FPCSrcDir)/compiler/msg/errordu.msg'));
|
Add(GetForcedPathDelims('$(FPCSrcDir)/compiler/msg/errordu.msg'));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{ Recent }
|
||||||
|
|
||||||
|
RecentDividerBevel.Caption := dlgRecent;
|
||||||
|
RecentMaxCountGroupBox.Caption := dlgMaxRecentCount;
|
||||||
|
|
||||||
|
MaxRecentProjectFilesLabel.Caption := dlgMaxRecentProjs;
|
||||||
|
MaxRecentPackageFilesLabel.Caption := dlgMaxRecentPacks;
|
||||||
|
MaxRecentOpenFilesLabel .Caption := dlgMaxRecentFiles;
|
||||||
|
|
||||||
|
MaxRecentProjectFilesLabel.Hint := dlgMaxRecentHint;
|
||||||
|
MaxRecentPackageFilesLabel.Hint := dlgMaxRecentHint;
|
||||||
|
MaxRecentOpenFilesLabel .Hint := dlgMaxRecentHint;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TFilesOptionsFrame.GetTitle: String;
|
function TFilesOptionsFrame.GetTitle: String;
|
||||||
@ -474,6 +479,8 @@ begin
|
|||||||
MaxRecentOpenFilesSpin.Value := MaxRecentOpenFiles;
|
MaxRecentOpenFilesSpin.Value := MaxRecentOpenFiles;
|
||||||
FOldMaxRecentProjectFiles := MaxRecentProjectFiles;
|
FOldMaxRecentProjectFiles := MaxRecentProjectFiles;
|
||||||
MaxRecentProjectFilesSpin.Value := MaxRecentProjectFiles;
|
MaxRecentProjectFilesSpin.Value := MaxRecentProjectFiles;
|
||||||
|
FOldMaxRecentPackageFiles := MaxRecentPackageFiles;
|
||||||
|
MaxRecentPackageFilesSpin.Value := MaxRecentPackageFiles;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -499,6 +506,7 @@ begin
|
|||||||
// recent files and directories
|
// recent files and directories
|
||||||
MaxRecentOpenFiles := MaxRecentOpenFilesSpin.Value;
|
MaxRecentOpenFiles := MaxRecentOpenFilesSpin.Value;
|
||||||
MaxRecentProjectFiles := MaxRecentProjectFilesSpin.Value;
|
MaxRecentProjectFiles := MaxRecentProjectFilesSpin.Value;
|
||||||
|
MaxRecentPackageFiles := MaxRecentPackageFilesSpin.Value;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -518,6 +526,7 @@ begin
|
|||||||
// recent files and directories
|
// recent files and directories
|
||||||
MaxRecentOpenFiles := FOldMaxRecentOpenFiles;
|
MaxRecentOpenFiles := FOldMaxRecentOpenFiles;
|
||||||
MaxRecentProjectFiles := FOldMaxRecentProjectFiles;
|
MaxRecentProjectFiles := FOldMaxRecentProjectFiles;
|
||||||
|
MaxRecentPackageFiles := FOldMaxRecentPackageFiles;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -1351,8 +1351,14 @@ resourcestring
|
|||||||
dlgMaxCntr = 'Maximum counter';
|
dlgMaxCntr = 'Maximum counter';
|
||||||
dlgEdBSubDir = 'Sub directory';
|
dlgEdBSubDir = 'Sub directory';
|
||||||
dlgEnvOtherFiles = 'Other Files';
|
dlgEnvOtherFiles = 'Other Files';
|
||||||
dlgMaxRecentFiles = 'Max recent files';
|
dlgRecent = 'Recent';
|
||||||
dlgMaxRecentProjs = 'Max recent project files';
|
dlgMaxRecentCount = 'Max count of recent items';
|
||||||
|
dlgMaxRecentFiles = 'Files';
|
||||||
|
dlgMaxRecentProjs = 'Projects';
|
||||||
|
dlgMaxRecentPacks = 'Packages';
|
||||||
|
dlgRecentProjects = 'Recent Projects:';
|
||||||
|
dlgRecentPackages = 'Recent Packages:';
|
||||||
|
dlgRecentFiles = 'Recent Files:';
|
||||||
dlgMaxRecentHint = 'Value 0 means unlimited.';
|
dlgMaxRecentHint = 'Value 0 means unlimited.';
|
||||||
dlgLazarusDir = 'Lazarus directory (default for all projects)';
|
dlgLazarusDir = 'Lazarus directory (default for all projects)';
|
||||||
lisLazarusDirHint = 'Lazarus sources. This path is relative to primary config directory (%s).';
|
lisLazarusDirHint = 'Lazarus sources. This path is relative to primary config directory (%s).';
|
||||||
|
@ -74,10 +74,17 @@ uses
|
|||||||
IdeDebuggerStringConstants,
|
IdeDebuggerStringConstants,
|
||||||
// IdeConfig
|
// IdeConfig
|
||||||
LazConf, EnvironmentOpts, CompilerOptions,
|
LazConf, EnvironmentOpts, CompilerOptions,
|
||||||
|
// IdeProject
|
||||||
|
Project, RunParamOptions,
|
||||||
|
// IdeDebugger
|
||||||
|
Debugger,
|
||||||
|
// Packager
|
||||||
|
BasePkgManager,
|
||||||
|
// Designer
|
||||||
|
Designer,
|
||||||
// IDE
|
// IDE
|
||||||
LazarusIDEStrConsts, EditorOptions, EnvGuiOptions,
|
LazarusIDEStrConsts, EditorOptions, EnvGuiOptions, SourceEditor, SourceSynEditor,
|
||||||
Project, SourceEditor, SourceSynEditor, FindInFilesDlg,
|
FindInFilesDlg, Splash, MainBar, MainIntf, RunParamsOpts, FindInFilesWnd;
|
||||||
Splash, MainBar, MainIntf, Designer, Debugger, RunParamsOpts, FindInFilesWnd, RunParamOptions;
|
|
||||||
|
|
||||||
type
|
type
|
||||||
TResetToolFlag = (
|
TResetToolFlag = (
|
||||||
@ -230,6 +237,7 @@ type
|
|||||||
procedure RefreshMenu(Sender: TObject);
|
procedure RefreshMenu(Sender: TObject);
|
||||||
procedure mnuOpenFile(Sender: TObject);
|
procedure mnuOpenFile(Sender: TObject);
|
||||||
procedure mnuProjectFile(Sender: TObject);
|
procedure mnuProjectFile(Sender: TObject);
|
||||||
|
procedure mnuPackageFile(Sender: TObject);
|
||||||
public
|
public
|
||||||
constructor Create(aOwner: TComponent); override;
|
constructor Create(aOwner: TComponent); override;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
@ -505,6 +513,11 @@ begin
|
|||||||
MainIDE.DoOpenProjectFile((Sender as TOpenFileMenuItem).Hint, [ofAddToRecent]);
|
MainIDE.DoOpenProjectFile((Sender as TOpenFileMenuItem).Hint, [ofAddToRecent]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TOpenFileToolButton.mnuPackageFile(Sender: TObject);
|
||||||
|
begin
|
||||||
|
PkgBoss.DoOpenPackageFile((Sender as TOpenFileMenuItem).Hint, [pofAddToRecent], false);
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TOpenFileToolButton.RefreshMenu(Sender: TObject);
|
procedure TOpenFileToolButton.RefreshMenu(Sender: TObject);
|
||||||
|
|
||||||
procedure AddFile(const AFileName: string; const AOnClick: TNotifyEvent);
|
procedure AddFile(const AFileName: string; const AOnClick: TNotifyEvent);
|
||||||
@ -521,27 +534,43 @@ procedure TOpenFileToolButton.RefreshMenu(Sender: TObject);
|
|||||||
AMenuItem.ImageIndex := LoadProjectIconIntoImages(AFileName, DropdownMenu.Images, FIndex);
|
AMenuItem.ImageIndex := LoadProjectIconIntoImages(AFileName, DropdownMenu.Images, FIndex);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure AddFiles(List: TStringList; MaxCount: integer; const AOnClick: TNotifyEvent);
|
procedure AddHeader(const ACaption: string);
|
||||||
|
var
|
||||||
|
AMenuItem: TOpenFileMenuItem;
|
||||||
|
begin
|
||||||
|
AMenuItem := TOpenFileMenuItem.Create(DropdownMenu);
|
||||||
|
AMenuItem.Caption := ACaption;
|
||||||
|
AMenuItem.Enabled := false;
|
||||||
|
DropdownMenu.Items.Add(AMenuItem);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure AddRecentItemsGroup(List: TStringList; MaxCount: integer; const AOnClick: TNotifyEvent; const AHeader: string);
|
||||||
var
|
var
|
||||||
i: integer;
|
i: integer;
|
||||||
begin
|
begin
|
||||||
|
if List.Count <= 0 then
|
||||||
|
exit;
|
||||||
|
// separator
|
||||||
|
if DropdownMenu.Items.Count > 0 then
|
||||||
|
DropdownMenu.Items.AddSeparator;
|
||||||
|
// header
|
||||||
|
AddHeader(AHeader);
|
||||||
|
// value 0 means unlimited
|
||||||
if MaxCount <= 0 then
|
if MaxCount <= 0 then
|
||||||
MaxCount := List.Count;
|
MaxCount := List.Count;
|
||||||
|
// files
|
||||||
for i := 0 to Min(MaxCount, List.Count) - 1 do
|
for i := 0 to Min(MaxCount, List.Count) - 1 do
|
||||||
AddFile(List[i], AOnClick);
|
AddFile(List[i], AOnClick);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
DropdownMenu.Items.Clear;
|
with EnvironmentOptions do
|
||||||
|
begin
|
||||||
// first add recent projects
|
DropdownMenu.Items.Clear;
|
||||||
AddFiles(EnvironmentOptions.RecentProjectFiles, EnvironmentOptions.MaxRecentProjectFiles,
|
AddRecentItemsGroup(RecentProjectFiles, MaxRecentProjectFiles, @mnuProjectFile, dlgRecentProjects);
|
||||||
@mnuProjectFile);
|
AddRecentItemsGroup(RecentPackageFiles, MaxRecentPackageFiles, @mnuPackageFile, dlgRecentPackages);
|
||||||
// add a separator
|
AddRecentItemsGroup(RecentOpenFiles, MaxRecentOpenFiles, @mnuOpenFile, dlgRecentFiles);
|
||||||
DropdownMenu.Items.AddSeparator;
|
end;
|
||||||
// then add recent files
|
|
||||||
AddFiles(EnvironmentOptions.RecentOpenFiles, EnvironmentOptions.MaxRecentOpenFiles,
|
|
||||||
@mnuOpenFile);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// Variables and functions used by TMainIDEBase
|
// Variables and functions used by TMainIDEBase
|
||||||
|
Loading…
Reference in New Issue
Block a user