mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 19:16:16 +02:00
IDE: renamed Manage Source Editors
git-svn-id: trunk@41976 -
This commit is contained in:
parent
2a00da9fec
commit
6426218e58
@ -313,7 +313,7 @@ const
|
||||
ecBuildAdvancedLazarus = ecFirstLazarus + 832;
|
||||
|
||||
// window menu
|
||||
ecWindowManager = ecFirstLazarus + 840;
|
||||
ecManageSourceEditors = ecFirstLazarus + 840;
|
||||
|
||||
// help menu
|
||||
ecAboutLazarus = ecFirstLazarus + 900;
|
||||
@ -1478,7 +1478,7 @@ const
|
||||
(Value: ecBuildAdvancedLazarus; Name: 'ecBuildAdvancedLazarus'),
|
||||
|
||||
// window menu
|
||||
(Value: ecWindowManager; Name: 'ecWindowManager'),
|
||||
(Value: ecManageSourceEditors; Name: 'ecWindowManager'),
|
||||
|
||||
// help menu
|
||||
(Value: ecAboutLazarus; Name: 'ecAboutLazarus'),
|
||||
|
@ -90,7 +90,7 @@ begin
|
||||
|
||||
PopulateList; // Populate the list with all open editor file names
|
||||
// Captions
|
||||
Caption:=lisEditorWindowManager;
|
||||
Caption:=lisSourceEditorWindowManager;
|
||||
ActivateMenuItem.Caption:=lisActivate;
|
||||
CloseMenuItem.Caption:=lisClose;
|
||||
CheckAllCheckBox.Caption:=lisCheckAll;
|
||||
|
@ -653,7 +653,7 @@ begin
|
||||
ecDiff : Result:= srkmecDiff;
|
||||
|
||||
// window menu
|
||||
ecWindowManager : Result:= lisEditorWindowManager;
|
||||
ecManageSourceEditors : Result:= lisSourceEditorWindowManager;
|
||||
|
||||
// help menu
|
||||
ecAboutLazarus : Result:= lisAboutLazarus;
|
||||
@ -1231,7 +1231,7 @@ begin
|
||||
ecDiff: SetSingle(VK_UNKNOWN,[]);
|
||||
|
||||
// window menu
|
||||
ecWindowManager: SetSingle(VK_W,[ssShift,ssCtrl]);
|
||||
ecManageSourceEditors: SetSingle(VK_W,[ssShift,ssCtrl]);
|
||||
|
||||
// help menu
|
||||
ecAboutLazarus: SetSingle(VK_UNKNOWN,[]);
|
||||
@ -1665,7 +1665,7 @@ begin
|
||||
ecDiff: SetSingle(VK_UNKNOWN,[]);
|
||||
|
||||
// window menu
|
||||
ecWindowManager: SetSingle(VK_UNKNOWN,[]);
|
||||
ecManageSourceEditors: SetSingle(VK_UNKNOWN,[]);
|
||||
|
||||
// help menu
|
||||
ecAboutLazarus: SetSingle(VK_UNKNOWN,[]);
|
||||
@ -2288,7 +2288,7 @@ begin
|
||||
ecDiff: SetSingle(VK_UNKNOWN,[]);
|
||||
|
||||
// window menu
|
||||
ecWindowManager: SetSingle(VK_W,[ssShift,ssCtrl]);
|
||||
ecManageSourceEditors: SetSingle(VK_W,[ssShift,ssCtrl]);
|
||||
|
||||
// help menu
|
||||
ecAboutLazarus: SetSingle(VK_UNKNOWN,[]);
|
||||
@ -2955,7 +2955,7 @@ begin
|
||||
AddDefault(C, 'Convert encoding', lisConvertEncodingOfProjectsPackages, ecConvertEncoding);
|
||||
// window menu
|
||||
// C:=Categories[AddCategory('WindowMenu',srkmCarWindowMenu,nil)];
|
||||
AddDefault(C, 'Editor Window Manager', lisEditorWindowManager, ecWindowManager);
|
||||
AddDefault(C, 'Editor Window Manager', lisSourceEditorWindowManager, ecManageSourceEditors);
|
||||
|
||||
// help menu
|
||||
C:=Categories[AddCategory('HelpMenu',srkmCarHelpMenu,nil)];
|
||||
|
@ -486,8 +486,8 @@ resourcestring
|
||||
lisMenuBuildLazarus = 'Build Lazarus with Current Profile';
|
||||
lisMenuBuildLazarusProf = 'Build Lazarus with Profile: %s';
|
||||
lisMenuConfigureBuildLazarus = 'Configure "Build Lazarus" ...';
|
||||
lisDlgEditorWindowManager = 'Editor Window Manager ...';
|
||||
lisEditorWindowManager = 'Editor Window Manager';
|
||||
lisManageSourceEditors = 'Manage Source Editors ...';
|
||||
lisSourceEditorWindowManager = 'Source Editor Window Manager';
|
||||
lisProjectCount = '%d projects';
|
||||
lisIncludeSubDirectories = 'Include subdirectories';
|
||||
lisIncludeAllSubDirectories = 'Include all subdirectories';
|
||||
|
@ -3279,7 +3279,7 @@ begin
|
||||
ecConfigBuildLazarus:
|
||||
mnuToolConfigBuildLazClicked(Self);
|
||||
|
||||
ecWindowManager:
|
||||
ecManageSourceEditors:
|
||||
mnuWindowManagerClicked(Self);
|
||||
|
||||
ecToggleFormUnit:
|
||||
|
@ -1009,7 +1009,7 @@ begin
|
||||
with MainIDEBar do begin
|
||||
CreateMenuSeparatorSection(mnuWindow,itmWindowManagers,'itmWindowManagers');
|
||||
ParentMI:=itmWindowManagers;
|
||||
CreateMenuItem(ParentMI,itmWindowManager,'itmWindowManager', lisDlgEditorWindowManager, 'pkg_files');
|
||||
CreateMenuItem(ParentMI,itmWindowManager,'itmWindowManager', lisManageSourceEditors, 'pkg_files');
|
||||
// Populated later with a list of editor names
|
||||
CreateMenuSeparatorSection(mnuWindow,itmWindowLists,'itmWindowLists');
|
||||
CreateMenuSeparatorSection(mnuWindow,itmCenterWindowLists,'itmCenterWindowLists');
|
||||
@ -1267,7 +1267,7 @@ begin
|
||||
itmToolConfigureBuildLazarus.Command:=GetCommand(ecConfigBuildLazarus);
|
||||
|
||||
// window menu
|
||||
itmWindowManager.Command:=GetCommand(ecWindowManager);
|
||||
itmWindowManager.Command:=GetCommand(ecManageSourceEditors);
|
||||
|
||||
// help menu
|
||||
itmHelpAboutLazarus.Command:=GetCommand(ecAboutLazarus);
|
||||
|
Loading…
Reference in New Issue
Block a user