lazarus/ide/mainintf.pas
maxim b30da44735 Merged revision(s) 50839 #9e35d2c52c from trunk:
Packager: Update search paths after "Add Active File To Package". Issue #27720.
........

git-svn-id: branches/fixes_1_6@50971 -
2015-12-21 22:44:50 +00:00

620 lines
20 KiB
ObjectPascal

{
/***************************************************************************
mainintf.pas - the "integrated" in IDE
----------------------------------------
TMainIDEInterface is the ancestor of TMainIDEBase.
TMainIDEInterface is used by functions/units, that uses several different
parts of the IDE (designer, source editor, codetools), so they can't be
assigned to a specific boss and which are yet too small to become a boss of
their own.
main.pp - TMainIDE = class(TMainIDEBase)
The highest manager/boss of the IDE. Only lazarus.pp uses
this unit.
mainbase.pas - TMainIDEBase = class(TMainIDEInterface)
The ancestor class used by (and only by) the other
bosses/managers like debugmanager, pkgmanager.
mainintf.pas - TMainIDEInterface = class(TLazIDEInterface)
The interface class of the top level functions of the IDE.
TMainIDEInterface is used by functions/units, that uses
several different parts of the IDE (designer, source editor,
codetools), so they can't be added to a specific boss and
which are yet too small to become a boss of their own.
lazideintf.pas - TLazIDEInterface = class(TComponent)
For designtime packages, this is the interface class of the
top level functions of the IDE.
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
unit MainIntf;
{$mode objfpc}{$H+}
interface
{$I ide.inc}
uses
{$IFDEF IDE_MEM_CHECK}
MemCheck,
{$ENDIF}
Classes, SysUtils, typinfo, AVL_Tree,
LCLType, LCLIntf, Buttons, Menus, Controls, Graphics, ExtCtrls, Dialogs, Forms,
SynEditKeyCmds,
// Codetools
CodeToolManager, CodeCache,
// LazUtils
FileUtil, LazFileUtils,
// IDEIntf
PropEdits, ObjectInspector, MenuIntf, SrcEditorIntf, ProjectIntf,
CompOptsIntf, LazIDEIntf, IDEDialogs, IDEWindowIntf,
// IDE
LazConf, LazarusIDEStrConsts, ProjectDefs, Project, PublishModule, BuildLazDialog,
TransferMacros, ProgressDlg, EnvironmentOpts, EditorOptions, CompilerOptions,
KeyMapping, IDEProcs, IDEDefs, IDEOptionDefs, PackageDefs;
type
// The IDE is at anytime in a specific state:
TIDEToolStatus = TLazToolStatus;
// window in front
TDisplayState = (
dsSource, // focussing sourcenotebook
dsInspector, // focussing object inspector after Source
dsForm, // focussing designer form
dsInspector2 // focussing object inspector after form
);
// revert file flags
TRevertFlag = (
rfQuiet
);
TRevertFlags = set of TRevertFlag;
// codetools flags
TCodeToolsFlag = (
ctfSwitchToFormSource, // bring source notebook to front and show source of
// current designed form
ctfActivateAbortMode, // activate the CodeToolBoss.Abortable mode
ctfSourceEditorNotNeeded, // do not check, if the source editor has a file open
ctfUseGivenSourceEditor
);
TCodeToolsFlags = set of TCodeToolsFlag;
TJumpToCodePosFlag = (
jfAddJumpPoint,
jfFocusEditor,
jfMarkLine,
jfMapLineFromDebug,
jfDoNotExpandFilename,
jfSearchVirtualFullPath
);
TJumpToCodePosFlags = set of TJumpToCodePosFlag;
{ TMainIDEInterface }
TMainIDEInterface = class(TLazIDEInterface)
protected
function GetActiveProject: TLazProject; override;
public
HiddenWindowsOnRun: TFPList; // list of forms, that were automatically hidden
// and will be shown when debugged program stops
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure SetMainBarSubTitle(const AValue: string); override;
procedure UpdateCaption; virtual; abstract;
procedure HideIDE; virtual; abstract;
procedure UnhideIDE; virtual; abstract;
procedure SaveIncludeLinks; virtual; abstract;
procedure GetCurrentUnitInfo(out ActiveSourceEditor: TSourceEditorInterface;
out ActiveUnitInfo: TUnitInfo); virtual; abstract;
procedure GetUnitInfoForDesigner(ADesigner: TIDesigner;
out ActiveSourceEditor: TSourceEditorInterface;
out ActiveUnitInfo: TUnitInfo); virtual; abstract;
procedure DoCommand(EditorCommand: integer); virtual; abstract;
procedure GetIDEFileState(Sender: TObject; const AFilename: string;
NeededFlags: TIDEFileStateFlags;
out ResultFlags: TIDEFileStateFlags); virtual; abstract;
function CreateProjectObject(ProjectDesc,
FallbackProjectDesc: TProjectDescriptor): TProject; virtual; abstract;
function DoInitProjectRun: TModalResult; virtual; abstract;
function DoOpenMacroFile(Sender: TObject;
const AFilename: string): TModalResult; virtual; abstract;
procedure DoShowProjectInspector(State: TIWGetFormState = iwgfShowOnTop); virtual; abstract;
function PrepareForCompile: TModalResult; virtual; abstract; // stop things that interfere with compilation, like debugging
function DoSaveBuildIDEConfigs(Flags: TBuildLazarusFlags): TModalResult; virtual; abstract;
function DoExampleManager: TModalResult; virtual; abstract;
function DoBuildLazarus(Flags: TBuildLazarusFlags): TModalResult; virtual; abstract;
function DoSaveForBuild(AReason: TCompileReason): TModalResult; virtual; abstract;
function DoPublishModule(Options: TPublishModuleOptions;
const SrcDirectory, DestDirectory: string
): TModalResult; virtual; abstract;
function ExtendProjectUnitSearchPath(AProject: TProject; NewUnitPaths: string): boolean;
function ExtendProjectIncSearchPath(AProject: TProject; NewIncPaths: string): boolean;
function DoFixupComponentReferences(RootComponent: TComponent;
OpenFlags: TOpenFlags): TModalResult; virtual; abstract;
procedure SaveEnvironment(Immediately: boolean = false); virtual; abstract;
procedure UpdateHighlighters(Immediately: boolean = false); virtual; abstract;
procedure PackageTranslated(APackage: TLazPackage); virtual; abstract;
procedure SetRecentSubMenu(Section: TIDEMenuSection; FileList: TStringList;
OnClickEvent: TNotifyEvent); virtual; abstract;
function DoJumpToSourcePosition(const Filename: string;
NewX, NewY, NewTopLine: integer;
AddJumpPoint: boolean;
MarkLine: Boolean = False): TModalResult;
function DoJumpToSourcePosition(const Filename: string;
NewX, NewY, NewTopLine: integer;
Flags: TJumpToCodePosFlags = [jfFocusEditor]): TModalResult; virtual; abstract;
function DoJumpToCodePosition(
ActiveSrcEdit: TSourceEditorInterface;
ActiveUnitInfo: TUnitInfo;
NewSource: TCodeBuffer; NewX, NewY, NewTopLine: integer;
AddJumpPoint: boolean;
MarkLine: Boolean = False): TModalResult;
function DoJumpToCodePosition(
ActiveSrcEdit: TSourceEditorInterface;
ActiveUnitInfo: TUnitInfo;
NewSource: TCodeBuffer; NewX, NewY, NewTopLine: integer;
Flags: TJumpToCodePosFlags = [jfFocusEditor]): TModalResult; virtual; abstract;
procedure FindInFilesPerDialog(AProject: TProject); virtual; abstract;
procedure FindInFiles(AProject: TProject; const FindText: string); virtual; abstract;
class function GetPrimaryConfigPath: String; override;
class function GetSecondaryConfigPath: String; override;
procedure CopySecondaryConfigFile(const AFilename: String); override;
function ShowProgress(const SomeText: string;
Step, MaxStep: integer): boolean; override;
end;
var
MainIDEInterface: TMainIDEInterface = nil;
ObjectInspector1: TObjectInspectorDlg = nil; // created by the IDE
function OpenFlagsToString(Flags: TOpenFlags): string;
function SaveFlagsToString(Flags: TSaveFlags): string;
//==============================================================================
type
{ TFileDescPascalUnitWithProjectResource }
TFileDescPascalUnitWithProjectResource = class(TFileDescPascalUnitWithResource)
protected
function GetResourceType: TResourceType; override;
end;
{ TFileDescPascalUnitWithForm }
TFileDescPascalUnitWithForm = class(TFileDescPascalUnitWithProjectResource)
public
constructor Create; override;
function GetInterfaceUsesSection: string; override;
function GetLocalizedName: string; override;
function GetLocalizedDescription: string; override;
end;
{ TFileDescPascalUnitWithDataModule }
TFileDescPascalUnitWithDataModule = class(TFileDescPascalUnitWithProjectResource)
public
constructor Create; override;
function GetInterfaceUsesSection: string; override;
function GetLocalizedName: string; override;
function GetLocalizedDescription: string; override;
end;
{ TFileDescPascalUnitWithFrame }
TFileDescPascalUnitWithFrame = class(TFileDescPascalUnitWithProjectResource)
public
constructor Create; override;
function GetInterfaceUsesSection: string; override;
function GetLocalizedName: string; override;
function GetLocalizedDescription: string; override;
end;
{ TFileDescInheritedItem }
TFileDescInheritedItem = class(TFileDescPascalUnitWithProjectResource)
private
FInheritedUnits: string;
public
function GetResourceSource(const ResourceName: string): string; override;
function GetInterfaceSource(const {%H-}Filename, {%H-}SourceName,
ResourceName: string): string; override;
property InheritedUnits: string read FInheritedUnits write FInheritedUnits;
end;
{ TFileDescInheritedComponent }
TFileDescInheritedComponent = class(TFileDescInheritedItem)
private
FInheritedUnit: TUnitInfo;
procedure SetInheritedUnit(const AValue: TUnitInfo);
public
constructor Create; override;
function GetInterfaceUsesSection: string; override;
function GetLocalizedName: string; override;
function GetLocalizedDescription: string; override;
property InheritedUnit: TUnitInfo read FInheritedUnit write SetInheritedUnit;
end;
{ TFileDescText }
TFileDescText = class(TProjectFileDescriptor)
public
constructor Create; override;
function GetLocalizedName: string; override;
function GetLocalizedDescription: string; override;
end;
function dbgs(d: TDisplayState): string; overload;
implementation
function OpenFlagsToString(Flags: TOpenFlags): string;
var
Flag: TOpenFlag;
s: string;
begin
Result:='';
for Flag:=Low(TOpenFlag) to High(TOpenFlag) do begin
if Flag in Flags then begin
if Result<>'' then
Result:=Result+',';
WriteStr(s, Flag);
Result:=Result+s;
end;
end;
Result:='['+Result+']';
end;
function SaveFlagsToString(Flags: TSaveFlags): string;
var
Flag: TSaveFlag;
s: string;
begin
Result:='';
for Flag:=Low(TSaveFlag) to High(TSaveFlag) do begin
if Flag in Flags then begin
if Result<>'' then
Result:=Result+',';
WriteStr(s, Flag);
Result:=Result+s;
end;
end;
Result:='['+Result+']';
end;
function dbgs(d: TDisplayState): string;
begin
Result:=GetEnumName(typeinfo(d),ord(d));
end;
{ TMainIDEInterface }
function TMainIDEInterface.GetActiveProject: TLazProject;
begin
Result:=Project1;
end;
constructor TMainIDEInterface.Create(TheOwner: TComponent);
begin
MainIDEInterface:=Self;
inherited Create(TheOwner);
end;
destructor TMainIDEInterface.Destroy;
begin
inherited Destroy;
MainIDEInterface:=nil;
end;
procedure TMainIDEInterface.SetMainBarSubTitle(const AValue: string);
begin
if MainBarSubTitle=AValue then exit;
inherited SetMainBarSubTitle(AValue);
UpdateCaption;
end;
function TMainIDEInterface.ExtendProjectUnitSearchPath(AProject: TProject;
NewUnitPaths: string): boolean;
var
CurUnitPaths: String;
r: TModalResult;
begin
CurUnitPaths:=AProject.CompilerOptions.ParsedOpts.GetParsedValue(pcosUnitPath);
NewUnitPaths:=RemoveSearchPaths(NewUnitPaths,CurUnitPaths);
if NewUnitPaths<>'' then begin
NewUnitPaths:=CreateRelativeSearchPath(NewUnitPaths,AProject.ProjectDirectory);
r:=IDEMessageDialog(lisExtendUnitPath,
Format(lisExtendUnitSearchPathOfProjectWith, [#13, NewUnitPaths]),
mtConfirmation, [mbYes, mbNo, mbCancel]);
case r of
mrYes: AProject.CompilerOptions.OtherUnitFiles:=
MergeSearchPaths(AProject.CompilerOptions.OtherUnitFiles,NewUnitPaths);
mrNo: ;
else exit(false);
end;
end;
Result:=true;
end;
function TMainIDEInterface.ExtendProjectIncSearchPath(AProject: TProject;
NewIncPaths: string): boolean;
var
CurIncPaths: String;
r: TModalResult;
begin
CurIncPaths:=AProject.CompilerOptions.ParsedOpts.GetParsedValue(pcosIncludePath);
NewIncPaths:=RemoveSearchPaths(NewIncPaths,CurIncPaths);
if NewIncPaths<>'' then begin
NewIncPaths:=CreateRelativeSearchPath(NewIncPaths,AProject.ProjectDirectory);
r:=IDEMessageDialog(lisExtendIncludePath,
Format(lisExtendIncludeFilesSearchPathOfProjectWith, [#13, NewIncPaths]),
mtConfirmation, [mbYes, mbNo, mbCancel]);
case r of
mrYes: AProject.CompilerOptions.IncludePath:=
MergeSearchPaths(AProject.CompilerOptions.IncludePath,NewIncPaths);
mrNo: ;
else exit(false);
end;
end;
Result:=true;
end;
function TMainIDEInterface.DoJumpToSourcePosition(const Filename: string; NewX, NewY,
NewTopLine: integer; AddJumpPoint: boolean; MarkLine: Boolean): TModalResult;
var
Flags: TJumpToCodePosFlags;
begin
Flags := [jfFocusEditor];
if AddJumpPoint then Include(Flags, jfAddJumpPoint);
if MarkLine then Include(Flags, jfMarkLine);
Result := DoJumpToSourcePosition(Filename, NewX, NewY, NewTopLine, Flags);
end;
function TMainIDEInterface.DoJumpToCodePosition(ActiveSrcEdit: TSourceEditorInterface;
ActiveUnitInfo: TUnitInfo; NewSource: TCodeBuffer; NewX, NewY, NewTopLine: integer;
AddJumpPoint: boolean; MarkLine: Boolean): TModalResult;
var
Flags: TJumpToCodePosFlags;
begin
Flags := [jfFocusEditor];
if AddJumpPoint then Include(Flags, jfAddJumpPoint);
if MarkLine then Include(Flags, jfMarkLine);
Result := DoJumpToCodePosition(ActiveSrcEdit, ActiveUnitInfo, NewSource, NewX, NewY, NewTopLine,
Flags);
end;
class function TMainIDEInterface.GetPrimaryConfigPath: String;
begin
Result:=LazConf.GetPrimaryConfigPath;
end;
class function TMainIDEInterface.GetSecondaryConfigPath: String;
begin
Result:=LazConf.GetSecondaryConfigPath;
end;
procedure TMainIDEInterface.CopySecondaryConfigFile(const AFilename: String);
begin
LazConf.CopySecondaryConfigFile(AFilename);
end;
function TMainIDEInterface.ShowProgress(const SomeText: string; Step,
MaxStep: integer): boolean;
begin
Result:=ProgressDlg.ShowProgress(SomeText,Step,MaxStep);
end;
{ TFileDescPascalUnitWithForm }
constructor TFileDescPascalUnitWithForm.Create;
begin
inherited Create;
Name:=FileDescNameLCLForm;
ResourceClass:=TForm;
UseCreateFormStatements:=true;
RequiredPackages:='LCL';
end;
function TFileDescPascalUnitWithForm.GetInterfaceUsesSection: string;
begin
Result := inherited GetInterfaceUsesSection + ', Forms, Controls, Graphics, Dialogs';
end;
function TFileDescPascalUnitWithForm.GetLocalizedName: string;
begin
Result:=lisForm;
end;
function TFileDescPascalUnitWithForm.GetLocalizedDescription: string;
begin
Result:=lisNewDlgCreateANewUnitWithALCLForm;
end;
{ TFileDescPascalUnitWithDataModule }
constructor TFileDescPascalUnitWithDataModule.Create;
begin
inherited Create;
Name:=FileDescNameDatamodule;
ResourceClass:=TDataModule;
UseCreateFormStatements:=true;
end;
function TFileDescPascalUnitWithDataModule.GetInterfaceUsesSection: string;
begin
Result := inherited GetInterfaceUsesSection;
end;
function TFileDescPascalUnitWithDataModule.GetLocalizedName: string;
begin
Result:=lisDataModule;
end;
function TFileDescPascalUnitWithDataModule.GetLocalizedDescription: string;
begin
Result:=lisNewDlgCreateANewUnitWithADataModule;
end;
{ TFileDescText }
constructor TFileDescText.Create;
begin
inherited Create;
Name:=FileDescNameText;
DefaultFilename:='text.txt';
AddToProject:=false;
end;
function TFileDescText.GetLocalizedName: string;
begin
Result:=dlgMouseOptNodeMain;
end;
function TFileDescText.GetLocalizedDescription: string;
begin
Result:=lisNewDlgCreateANewEmptyTextFile;
end;
{ TFileDescPascalUnitWithFrame }
constructor TFileDescPascalUnitWithFrame.Create;
begin
inherited Create;
Name := FileDescNameFrame;
ResourceClass := TFrame;
UseCreateFormStatements := False;
DeclareClassVariable := False;
RequiredPackages:='LCL';
end;
function TFileDescPascalUnitWithFrame.GetInterfaceUsesSection: string;
begin
Result := inherited GetInterfaceUsesSection + ', Forms, Controls';
end;
function TFileDescPascalUnitWithFrame.GetLocalizedName: string;
begin
Result:=lisFrame;
end;
function TFileDescPascalUnitWithFrame.GetLocalizedDescription: string;
begin
Result := lisNewDlgCreateANewUnitWithAFrame;
end;
{ TFileDescInheritedComponent }
procedure TFileDescInheritedComponent.SetInheritedUnit(const AValue: TUnitInfo);
begin
if FInheritedUnit=AValue then exit;
FInheritedUnit:=AValue;
InheritedUnits:=FInheritedUnit.SrcUnitName;
end;
constructor TFileDescInheritedComponent.Create;
begin
inherited Create;
Name := FileDescNameLCLInheritedComponent;
ResourceClass := TForm;// will be adjusted on the fly
UseCreateFormStatements := true;
end;
function TFileDescInheritedComponent.GetInterfaceUsesSection: string;
begin
Result:=inherited GetInterfaceUsesSection;
Result := Result+', Forms, Controls, Graphics, Dialogs';
if InheritedUnits<>'' then
Result := Result+', '+InheritedUnits;
end;
function TFileDescInheritedComponent.GetLocalizedName: string;
begin
Result:=lisInheritedProjectComponent;
end;
function TFileDescInheritedComponent.GetLocalizedDescription: string;
begin
Result:=lisNewDlgInheritFromAProjectFormComponent;
end;
{ TFileDescInheritedItem }
function TFileDescInheritedItem.GetResourceSource(const ResourceName: string): string;
begin
Result := 'inherited '+ ResourceName+': T'+ResourceName+LineEnding+
'end';
end;
function TFileDescInheritedItem.GetInterfaceSource(const Filename, SourceName,
ResourceName: string): string;
var
LE: string;
begin
LE:=LineEnding;
Result:=
'type'+LE
+' T'+ResourceName+' = class('+ResourceClass.ClassName+')'+LE
+' private'+LE
+' { private declarations }'+LE
+' public'+LE
+' { public declarations }'+LE
+' end;'+LE
+LE;
if DeclareClassVariable then
Result := Result +
'var'+LE
+' '+ResourceName+': T'+ResourceName+';'+LE
+LE;
end;
{ TFileDescPascalUnitWithProjectResource }
function TFileDescPascalUnitWithProjectResource.GetResourceType: TResourceType;
begin
Result := Project1.ProjResources.ResourceType;
end;
end.