lazarus/components/sparta/dockedformeditor/source/sparta_mainide.pas
2015-11-19 00:19:56 +00:00

1714 lines
48 KiB
ObjectPascal

{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Author: Maciej Izak
DaThoX 2004-2015
FreeSparta.com
}
unit sparta_MainIDE;
{$mode delphi}{$H+}
{$IFDEF USE_POPUP_PARENT_DESIGNER}
{$IFNDEF WINDOWS}
{$MESSAGE Error 'USE_POPUP_PARENT_DESIGNER mode can be used only on Windows'}
{$ENDIF}
{$ELSE}
{.$DEFINE POPUP_WINDOWS}
{$ENDIF}
interface
uses
Classes, SysUtils, SrcEditorIntf, LazIDEIntf, ComCtrls, Controls, Forms, {$IFDEF USE_POPUP_PARENT_DESIGNER}Windows,{$ENDIF} IDEImagesIntf,
Buttons, ExtCtrls, Graphics, IDEWindowIntf,
sparta_DesignedForm, sparta_resizer, PropEdits, PropEditUtils, FormEditingIntf, ComponentEditors, EditBtn,
{$IFDEF USE_GENERICS_COLLECTIONS}
Generics.Collections, Generics.Defaults,
{$ELSE}
ghashmap, sparta_HashUtils, gvector,
{$ENDIF}
TypInfo, LCLIntf, LCLType, LMessages, sparta_FakeForm, sparta_FakeFrame, SpartaAPI;
const
WM_SETNOFRAME = WM_USER;
WM_BoundToDesignTabSheet = WM_USER + 1;
type
{ TDesignFormData }
{$IFDEF USE_GENERICS_COLLECTIONS}
TDesignFormData = class(TSingletonImplementation, IDesignedForm)
{$ELSE}
TDesignFormData = class(TComponent, IDesignedForm)
{$ENDIF}
private
FWndMethod: TWndMethod;
{$IFDEF USE_POPUP_PARENT_DESIGNER}
FWinD: Integer;
{$ENDIF}
FForm: IDesignedForm;
FLastScreenshot: TBitmap;
FPopupParent: TSourceEditorWindowInterface;
FHiding: boolean;
{$IFDEF USE_GENERICS_COLLECTIONS}
FFormImages: TList<TImage>;
{$ELSE}
FFormImages: TList;
{$ENDIF}
protected
procedure WndMethod(var TheMessage: TLMessage);
procedure SetPopupParent(AVal: TSourceEditorWindowInterface);
procedure DoAddForm;
public
{$IFDEF USE_GENERICS_COLLECTIONS}
class var AddFormEvents: TList<TNotifyEvent>;
{$ELSE}
class var AddFormEvents: TVector<TNotifyEvent>;
{$ENDIF}
class constructor Init;
class destructor Finit;
procedure AddFormImage(AImage: TImage);
procedure RemoveFormImage(AImage: TImage);
procedure RepaintFormImages;
property Form: IDesignedForm read FForm implements IDesignedForm;
property LastScreenshot: TBitmap read FLastScreenshot;
property PopupParent: TSourceEditorWindowInterface read FPopupParent write SetPopupParent;
constructor Create(AForm: TCustomForm);
destructor Destroy; override;
end;
{ TModulePageControl }
TModulePageControl = class(TPageControl)
private
FResizer: TResizer;
FDesignFormData: TDesignFormData;
protected
procedure SetDesignFormData(const AValue: TDesignFormData); virtual;
public
destructor Destroy; override;
procedure ShowDesignPage;
procedure HideDesignPage;
property Resizer: TResizer read FResizer;
property DesignFormData: TDesignFormData read FDesignFormData write SetDesignFormData;
procedure BoundToDesignTabSheet;
end;
{ TSourceEditorWindowData }
TSourceEditorWindowData = class
private
FActiveDesignFormData: TDesignFormData;
private
FWndMethod: TWndMethod;
FForm: TSourceEditorWindowInterface;
{$IFDEF USE_GENERICS_COLLECTIONS}
FPageCtrlList: TDictionary<TSourceEditorInterface, TModulePageControl>;
{$ELSE}
FPageCtrlList: THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>;
{$ENDIF}
FLastTopParent: TControl;
procedure SetActiveDesignFormData(const AValue: TDesignFormData);
protected
procedure WndMethod(var TheMessage: TLMessage);
constructor Create(AForm: TSourceEditorWindowInterface);
destructor Destroy; override;
procedure OnChangeBounds(Sender: TObject);
procedure AddPageCtrl(ASrcEditor: TSourceEditorInterface; APage: TModulePageControl);
procedure RemovePageCtrl(ASrcEditor: TSourceEditorInterface);
public
property ActiveDesignFormData: TDesignFormData read FActiveDesignFormData write SetActiveDesignFormData;
end;
{ TDTXTabMaster }
TDTXTabMaster = class(TIDETabMaster)
protected
function GetTabDisplayState: TTabDisplayState; override;
function GetTabDisplayStateEditor(Index: TSourceEditorInterface): TTabDisplayState; override;
public
procedure ToggleFormUnit; override;
procedure JumpToCompilerMessage(ASourceEditor: TSourceEditorInterface); override;
procedure ShowCode(ASourceEditor: TSourceEditorInterface); override;
procedure ShowDesigner(ASourceEditor: TSourceEditorInterface; AIndex: Integer = 0); override;
procedure ShowForm(AForm: TCustomForm); override;
end;
{ TDTXComponentsMaster }
TDTXComponentsMaster = class(TIDEComponentsMaster)
function DrawNonVisualComponents(ALookupRoot: TComponent): Boolean; override;
end;
TFormHack = class(TCustomForm);
{ TSpartaMainIDE }
TSpartaMainIDE = class(TObject)
public
class procedure TryFreeFormData(Form: TCustomForm);
class procedure Screen_FormAdded(Sender: TObject; Form: TCustomForm);
class procedure Screen_FormDel(Sender: TObject; Form: TCustomForm);
class procedure WindowCreate(Sender: TObject);
class procedure WindowDestroy(Sender: TObject);
class procedure WindowShow(Sender: TObject);
class procedure WindowHide(Sender: TObject);
class procedure EditorActivated(Sender: TObject);
class procedure EditorDestroyed(Sender: TObject);
class procedure EditorCreate(Sender: TObject);
class procedure TabChange(Sender: TObject);
class procedure GlobalOnChangeBounds(Sender: TObject);
class procedure GlobalSNOnChangeBounds(Sender: TObject);
{$IFDEF USE_POPUP_PARENT_DESIGNER}
class procedure OnBeforeClose(Sender: TObject);
{$ENDIF}
class procedure OnShowDesignerForm(Sender: TObject; AEditor: TSourceEditorInterface;
AComponentPaletteClassSelected: Boolean);
class procedure OnShowSrcEditor(Sender: TObject);
class procedure OnShowMethod(const Name: String);
class procedure OnDesignRefreshPropertyValues;
end;
var
Forms: Classes.TList; // normal forms
dsgForms: Classes.TList; // design forms
{$IFDEF USE_GENERICS_COLLECTIONS}
SourceEditorWindows: TObjectDictionary<TSourceEditorWindowInterface, TSourceEditorWindowData>;
{$ELSE}
SourceEditorWindows: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>;
{$ENDIF}
LastActiveSourceEditorWindow: TSourceEditorWindowInterface = nil;
LastActiveSourceEditor: TSourceEditorInterface = nil;
BoundInitialized: Boolean;
{$IFDEF USE_POPUP_PARENT_DESIGNER}
isIdeDestroyed: boolean = False;
{$ENDIF}
function FindModulePageControl(AForm: TSourceEditorWindowInterface): TModulePageControl; overload;
function FindSourceEditorForDesigner(ADesigner: TIDesigner): TSourceEditorInterface;
implementation
// FUTURE USE
//
//function FindDesignForm(ADesigner: TIDesigner): TCustomForm;
//var
// f: TDesignFormData;
//begin
// for Pointer(f) in dsgForms do
// with f as IDesignedForm do
// if Form.Designer = ADesigner then
// Exit(Form);
//
// Result := nil;
//end;
//
//function FindDesignFormData(AForm: TSourceEditorWindowInterface): TDesignFormData; overload;
//begin
// Result := FindDesignFormData(
// FindModulePageControl(AForm)
// );
//end;
//
//procedure HideAllForms;
//var
// f: TDesignFormData;
//begin
// for Pointer(f) in dsgForms do
// ShowWindow(f.Form.Form.Handle, SW_HIDE);
//end;
function FindModulePageControl(ASourceEditor: TSourceEditorInterface): TModulePageControl; overload;
var
LParent: TWinControl;
begin
if ASourceEditor = nil then
Exit(nil);
LParent := ASourceEditor.EditorControl.Parent;
while LParent <> nil do
begin
if LParent is TModulePageControl then
Exit(TModulePageControl(LParent));
LParent := LParent.Parent;
end;
Result := nil;
end;
function FindModulePageControl(AForm: TSourceEditorWindowInterface): TModulePageControl; overload;
begin
Result := FindModulePageControl(AForm.ActiveEditor);
end;
function AbsoluteFindModulePageControl(ASrcEditor: TSourceEditorInterface): TModulePageControl;
var
LSEWD: TSourceEditorWindowData;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
{$ENDIF}
begin
Result := nil;
{$IFDEF USE_GENERICS_COLLECTIONS}
for LSEWD in SourceEditorWindows.Values do
if LSEWD.FPageCtrlList.ContainsKey(ASrcEditor) then
Exit(LSEWD.FPageCtrlList[ASrcEditor]);
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
LSEWD := LIterator.Value;
if LSEWD.FPageCtrlList.contains(ASrcEditor) then
Exit(LSEWD.FPageCtrlList[ASrcEditor]);
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
end;
function FindSourceEditorForDesigner(ADesigner: TIDesigner): TSourceEditorInterface;
var
i: Integer;
begin
for i := 0 to SourceEditorManagerIntf.SourceEditorCount - 1 do
if SourceEditorManagerIntf.SourceEditors[i].GetDesigner(False) = ADesigner then
Exit(SourceEditorManagerIntf.SourceEditors[i]);
Result := nil;
end;
function FindDesignFormData(ADesigner: TIDesigner): TDesignFormData; overload;
var
p: Pointer;
f: TDesignFormData absolute p;
fi: IDesignedForm = nil;
begin
Result := nil;
if ADesigner = nil then
Exit;
for p in dsgForms do
begin
fi := f.FForm;
with fi do
begin
if (Form.Designer = ADesigner) then
begin
Exit(f);
end;
end;
end;
end;
procedure RefreshAllSourceWindowsModulePageControl;
var
LWindow: TSourceEditorWindowInterface;
LPageCtrl: TModulePageControl;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
{$ENDIF}
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
for LWindow in SourceEditorWindows.Keys do
begin
LPageCtrl := FindModulePageControl(LWindow);
// for example LPageCtrl is nil when we clone module to new window
if (LPageCtrl = nil) or (csDestroying in LWindow.ComponentState) then
Continue;
if LWindow.ActiveEditor = nil then
LPageCtrl.HideDesignPage
else
if LWindow.ActiveEditor.GetDesigner(True) <> nil then
// TODO some check function: is displayed right form?
LPageCtrl.ShowDesignPage
else
LPageCtrl.HideDesignPage;
end;
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
LWindow := LIterator.Key;
LPageCtrl := FindModulePageControl(LWindow);
// for example LPageCtrl is nil when we clone module to new window
if (LPageCtrl = nil) or (csDestroying in LWindow.ComponentState) then
Continue;
if LWindow.ActiveEditor = nil then
LPageCtrl.HideDesignPage
else
if LWindow.ActiveEditor.GetDesigner(True) <> nil then
// TODO some check function: is displayed right form?
LPageCtrl.ShowDesignPage
else
LPageCtrl.HideDesignPage;
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
end;
// sometimes at some level of initialization form can not contain TIDesigner
// (during ide run and when is oppened default project with some TForm1)
function FindDesignFormData(AForm: TCustomForm): TDesignFormData; overload;
var
f: TDesignFormData;
begin
Result := nil;
if AForm = nil then
Exit;
for Pointer(f) in dsgForms do
with f as IDesignedForm do
if (Form = AForm) then
Exit(f);
end;
function FindDesignFormData(AModulePageCtrl: TModulePageControl): TDesignFormData; overload;
var
LSourceWindow: TSourceEditorWindowInterface;
LSourceEditor: TSourceEditorInterface;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
{$ENDIF}
begin
Result := nil;
if AModulePageCtrl = nil then
Exit;
{$IFDEF USE_GENERICS_COLLECTIONS}
for LSourceWindow in SourceEditorWindows.Keys do
begin
if AModulePageCtrl.Owner = LSourceWindow then
begin
LSourceEditor := LSourceWindow.ActiveEditor;
if LSourceEditor = nil then
Exit;
Result := FindDesignFormData(LSourceEditor.GetDesigner(True));
Exit;
end;
end;
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
LSourceWindow := LIterator.Key;
if AModulePageCtrl.Owner = LSourceWindow then
begin
LSourceEditor := LSourceWindow.ActiveEditor;
if LSourceEditor = nil then
Exit;
Result := FindDesignFormData(LSourceEditor.GetDesigner(True));
Exit;
end;
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
end;
{ TDesignFormData }
procedure TDesignFormData.WndMethod(var TheMessage: TLMessage);
// Without this button F12 don't work. (after creating new for editor is inactive) :<
procedure FixF12_ActiveEditor;
var
i: Integer;
begin
SourceEditorManagerIntf.ActiveEditor := nil;
for i := 0 to SourceEditorManagerIntf.UniqueSourceEditorCount - 1 do
if Form.Form.Designer = SourceEditorManagerIntf.UniqueSourceEditors[i].GetDesigner(True) then
begin
SourceEditorManagerIntf.ActiveEditor := SourceEditorManagerIntf.UniqueSourceEditors[i];
Break;
end;
end;
begin
{$IFDEF USE_POPUP_PARENT_DESIGNER}
if isIdeDestroyed then
FWinD:=-1;
if FWinD <> -1 then
if (TheMessage.msg = WM_ERASEBKGND)
and (not IsWindowVisible(TCustomForm(LazarusIDE.GetMainBar).Handle)) then
begin
if Form.LastActiveSourceWindow <> nil then
begin
if Form.LastActiveSourceWindow.ActiveEditor.GetDesigner(True) = Form.Form.Designer then
begin
LPageCtrl := FindModulePageControl(Form.LastActiveSourceWindow.ActiveEditor);
if LPageCtrl.PageIndex = 1 then
begin
LPageCtrl.PageIndex := 0;
end;
end;
end;
end;
{$ENDIF}
if TheMessage.msg = WM_SETNOFRAME then
begin
ShowWindow(Form.Form.Handle, SW_HIDE);
FHiding := False;
FixF12_ActiveEditor;
if Form.Form is TFakeForm then
RepaintFormImages;
end;
// during docking, form position was in wrong place... we need to delay changing position :)
if TheMessage.msg = WM_BoundToDesignTabSheet then
if Form.LastActiveSourceWindow <> nil then
SourceEditorWindows[Form.LastActiveSourceWindow].OnChangeBounds(nil);
// we need to correct ActiveEditor to right form
// this code works correctly on Windows platform
// (is necessery for selecting controls after form resizing).
// in Linux platforms below code brings problems with QT (inactive form)
{$IFDEF WINDOWS}
case TheMessage.msg of
LM_LBUTTONDOWN, LM_RBUTTONDOWN, LM_MBUTTONDOWN, LM_XBUTTONDOWN:
if Form.LastActiveSourceWindow <> nil then
begin
SourceEditorManagerIntf.ActiveSourceWindow := Form.LastActiveSourceWindow;
SourceEditorManagerIntf.ActiveEditor := Form.LastActiveSourceWindow.ActiveEditor;
end;
end;
{$ENDIF}
FWndMethod(TheMessage);
end;
procedure TDesignFormData.SetPopupParent(AVal: TSourceEditorWindowInterface);
begin
FPopupParent := AVal;
Form.RealPopupParent := FPopupParent;
end;
class constructor TDesignFormData.Init;
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
AddFormEvents := TList<TNotifyEvent>.Create;
{$ELSE}
AddFormEvents := TVector<TNotifyEvent>.Create;
{$ENDIF}
end;
class destructor TDesignFormData.Finit;
begin
AddFormEvents.Free;
end;
procedure TDesignFormData.AddFormImage(AImage: TImage);
begin
if FFormImages <> nil then
FFormImages.Add(AImage);
end;
procedure TDesignFormData.RemoveFormImage(AImage: TImage);
begin
if FFormImages <> nil then
FFormImages.Remove(AImage);
end;
procedure TDesignFormData.RepaintFormImages;
var
LImage: TImage;
begin
if FFormImages <> nil then
begin
for LImage in FFormImages do
LImage.OnResize(LImage);
end;
end;
procedure TDesignFormData.DoAddForm;
var
{$IFDEF USE_GENERICS_COLLECTIONS}
ne: TNotifyEvent;
{$ELSE}
i: Integer;
{$ENDIF}
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
for ne in AddFormEvents do
ne(Self);
{$ELSE}
if AddFormEvents.Size > 0 then // Arithmetic overflow without a test. Size = unsigned.
for i := 0 to AddFormEvents.Size-1 do
AddFormEvents[i](Self);
{$ENDIF}
end;
constructor TDesignFormData.Create(AForm: TCustomForm);
begin
FForm := AForm as IDesignedForm;
FLastScreenshot := TBitmap.Create;
FWndMethod := FForm.Form.WindowProc;
FForm.Form.WindowProc := WndMethod;
if FForm.Form is TFakeForm then
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
FFormImages := TList<TImage>.Create;
{$ELSE}
FFormImages := TList.Create;
{$ENDIF}
DoAddForm;
end;
end;
destructor TDesignFormData.Destroy;
var
LImage: TImage;
begin
FForm.Form.WindowProc := FWndMethod; // ! important risky point :P
if FFormImages <> nil then
begin
for LImage in FFormImages do
LImage.Free;
FreeAndNil(FFormImages);
end;
FLastScreenshot.Free;
inherited Destroy;
end;
{ TModulePageControl }
procedure TModulePageControl.SetDesignFormData(const AValue: TDesignFormData);
begin
if (AValue = FDesignFormData) then
// for show lfm code, if we want after editing lfm go back to form without any error
// (when we restart IDE some error can be raised )
if Assigned(FResizer) then
begin
if FResizer.DesignedForm = AValue as IDesignedForm then
Exit;
end
else
Exit;
FDesignFormData := AValue;
if AValue = nil then
begin
//find
if Assigned(FResizer) then
FResizer.DesignedForm := nil;
end
else
begin
AValue.Form.LastActiveSourceWindow := Owner as TSourceEditorWindowInterface;
if Assigned(FResizer) then
FResizer.DesignedForm := AValue;
BoundToDesignTabSheet;
end;
end;
destructor TModulePageControl.Destroy;
begin
DesignFormData := nil;
inherited Destroy;
end;
procedure TModulePageControl.ShowDesignPage;
begin
Pages[1].TabVisible := True;
end;
procedure TModulePageControl.HideDesignPage;
begin
Pages[1].TabVisible:=False;
end;
procedure TModulePageControl.BoundToDesignTabSheet;
begin
if (ActivePageIndex <> 1) then
Exit;
if Assigned(FResizer) then
FResizer.TryBoundSizerToDesignedForm(nil);
end;
{ TSourceEditorWindowData }
procedure TSourceEditorWindowData.SetActiveDesignFormData(
const AValue: TDesignFormData);
var
LPageCtrl: TModulePageControl;
begin
if FActiveDesignFormData = AValue then
Exit;
if FActiveDesignFormData <> nil then
// don't hide now if soon form will be hidden (for example on the IDE start)
if not FActiveDesignFormData.FHiding then
begin
FActiveDesignFormData.FForm.HideWindow;
end;
FActiveDesignFormData := AValue;
LPageCtrl := FindModulePageControl(FForm);
if (AValue <> nil) then
begin
with AValue as IDesignedForm do
if not AValue.FHiding and (RealBorderStyle <> bsNone) then
begin
BeginUpdate;
//RealBorderIcons := [];
//RealBorderStyle := bsNone;
Form.Show;
EndUpdate;
end;
// important when we want back to tab where was oppened form :<
LazarusIDE.DoShowDesignerFormOfSrc(FForm.ActiveEditor);
end;
// when is fired DestroyEditor - from this place we can't navigate to pagecontrol by FForm (we need to handle lastactiveeditor)
if LPageCtrl = nil then
Exit;
LPageCtrl.DesignFormData := AValue;
// for USE_POPUP_PARENT_DESIGNER to eliminate form over code
LPageCtrl.OnChange(LPageCtrl);
end;
procedure TSourceEditorWindowData.WndMethod(var TheMessage: TLMessage);
begin
FWndMethod(TheMessage);
end;
constructor TSourceEditorWindowData.Create(AForm: TSourceEditorWindowInterface);
begin
FWndMethod := AForm.WindowProc;
AForm.WindowProc := WndMethod;
FForm := AForm;
{$IFDEF USE_GENERICS_COLLECTIONS}
FPageCtrlList := TDictionary<TSourceEditorInterface, TModulePageControl>.Create;
{$ELSE}
FPageCtrlList := THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>.Create;
{$ENDIF}
end;
destructor TSourceEditorWindowData.Destroy;
begin
FForm.WindowProc := FWndMethod;
FPageCtrlList.Free;
inherited Destroy;
end;
procedure TSourceEditorWindowData.OnChangeBounds(Sender: TObject);
var
LPageCtrl: TModulePageControl;
begin
LPageCtrl := FindModulePageControl(FForm);
if LPageCtrl <> nil then
//LPageCtrl.BoundToDesignTabSheet;
end;
procedure TSourceEditorWindowData.AddPageCtrl(ASrcEditor: TSourceEditorInterface; APage: TModulePageControl);
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
FPageCtrlList.Add(ASrcEditor, APage);
{$ELSE}
FPageCtrlList.insert(ASrcEditor, APage);
{$ENDIF}
APage.Pages[1].OnChangeBounds:=OnChangeBounds;
end;
procedure TSourceEditorWindowData.RemovePageCtrl(ASrcEditor: TSourceEditorInterface);
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
FPageCtrlList.Remove(ASrcEditor);
{$ELSE}
FPageCtrlList.Delete(ASrcEditor);
{$ENDIF}
end;
{ TDTXTabMaster }
function TDTXTabMaster.GetTabDisplayState: TTabDisplayState;
begin
Result := GetTabDisplayStateEditor(SourceEditorManagerIntf.ActiveEditor);
end;
function TDTXTabMaster.GetTabDisplayStateEditor(Index: TSourceEditorInterface
): TTabDisplayState;
var
LPageCtrl: TModulePageControl;
begin
if Index = nil then
Exit(tdsNone);
LPageCtrl := FindModulePageControl(Index);
if LPageCtrl = nil then
Exit(tdsNone);
case LPageCtrl.PageIndex of
0: Exit(tdsCode);
1: Exit(tdsDesign);
else
Exit(tdsOther);
end;
end;
procedure TDTXTabMaster.ToggleFormUnit;
begin
case TabDisplayState of
tdsCode:
ShowDesigner(SourceEditorManagerIntf.ActiveEditor);
tdsDesign:
ShowCode(SourceEditorManagerIntf.ActiveEditor);
end;
end;
procedure TDTXTabMaster.JumpToCompilerMessage(
ASourceEditor: TSourceEditorInterface);
begin
SourceEditorManagerIntf.ActiveEditor := ASourceEditor;
ShowCode(ASourceEditor);
end;
procedure TDTXTabMaster.ShowCode(ASourceEditor: TSourceEditorInterface);
begin
if ASourceEditor = nil then
Exit;
FindModulePageControl(ASourceEditor).PageIndex := 0;
end;
procedure TDTXTabMaster.ShowDesigner(ASourceEditor: TSourceEditorInterface; AIndex: Integer);
var
LPageCtrl: TModulePageControl;
begin
if ASourceEditor = nil then
Exit;
LPageCtrl := FindModulePageControl(ASourceEditor);
if not LPageCtrl.Pages[1].TabVisible then
Exit;
LPageCtrl.PageIndex := 1;
end;
procedure TDTXTabMaster.ShowForm(AForm: TCustomForm);
var
LEditor: TSourceEditorInterface;
begin
LEditor := FindSourceEditorForDesigner(AForm.Designer);
SourceEditorManagerIntf.ActiveEditor := LEditor;
ShowDesigner(LEditor);
end;
{ TDTXComponentsMaster }
function TDTXComponentsMaster.DrawNonVisualComponents(ALookupRoot: TComponent
): Boolean;
var
LFormData: TDesignFormData;
LPageCtrl: TModulePageControl;
begin
Result := True;
LFormData := FindDesignFormData(FormEditingHook.GetDesignerForm(ALookupRoot){ALookupRoot as TCustomForm});
if LFormData = nil then
Exit;
LPageCtrl := FindModulePageControl(LFormData.Form.LastActiveSourceWindow);
if (LPageCtrl = nil) or (LPageCtrl.Resizer = nil) or (LPageCtrl.Resizer.FMainDTU = nil) then
Exit;
Result := LPageCtrl.Resizer.FMainDTU.ShowNonVisualComponents;
end;
{ TSpartaMainIDE }
class procedure TSpartaMainIDE.Screen_FormAdded(Sender: TObject; Form: TCustomForm);
var
LSourceEditor: TSourceEditorInterface;
LFormData: TDesignFormData;
i: Integer;
LPageCtrl: TModulePageControl;
begin
if IsFormDesign(Form) then
begin
// Form like TForm1 etc...
if (csDesignInstance in Form.ComponentState) or (Form is TNonFormProxyDesignerForm) then
begin
LFormData := TDesignFormData.Create(Form);
LFormData.FHiding:=True;
dsgForms.Add(LFormData);
LSourceEditor := FindSourceEditorForDesigner(Form.Designer);
if LSourceEditor <> nil then
begin
LPageCtrl := FindModulePageControl(LSourceEditor);
if LPageCtrl <> nil then
begin
LPageCtrl.ShowDesignPage;
LPageCtrl.DesignFormData := LFormData;
end;
end;
PostMessage(Form.Handle, WM_SETNOFRAME, 0, 0);
end;
end
else
begin
if not BoundInitialized then
begin
for i := 0 to Screen.FormCount - 1 do
if Screen.Forms[i] = Form then
Continue
else
begin
Screen.Forms[i].AddHandlerOnChangeBounds(GlobalOnChangeBounds);
// if POPUP_WINDOWS is defined then show all forms on main form
if (LazarusIDE.GetMainBar = Screen.Forms[i]) then
Continue;
{$IFDEF POPUP_WINDOWS}
Screen.Forms[i].PopupMode := pmExplicit;
Screen.Forms[i].PopupParent := LazarusIDE.GetMainBar as TCustomForm;
{$ENDIF}
end;
BoundInitialized := True;
end;
if Form is TSourceEditorWindowInterface then
begin
Form.AddHandlerOnChangeBounds(GlobalSNOnChangeBounds);
Form.PopupMode := pmExplicit;
end
else
begin
Form.AddHandlerOnChangeBounds(GlobalOnChangeBounds);
{$IFDEF POPUP_WINDOWS}
Form.PopupMode := pmExplicit;
{$ENDIF}
end;
{$IFDEF POPUP_WINDOWS}
Form.PopupParent := LazarusIDE.GetMainBar as TCustomForm;
{$ENDIF}
Forms.Add(Form);
end;
end;
class procedure TSpartaMainIDE.TryFreeFormData(Form: TCustomForm);
var
LSEWD: TSourceEditorWindowData;
mpc: TModulePageControl;
LFormData: TDesignFormData;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
LIterator2: THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>.TIterator;
{$ENDIF}
begin
{$IFNDEF USE_POPUP_PARENT_DESIGNER}
Form.ParentWindow := 0;
Application.ProcessMessages; // For TFrame - System Error. Code: 1400. Invalid window handle.
{$ENDIF}
LFormData := FindDesignFormData(Form);
dsgForms.Remove(LFormData);
{$IFDEF USE_GENERICS_COLLECTIONS}
for LSEWD in SourceEditorWindows.Values do
begin
if LSEWD.ActiveDesignFormData <> nil then
if LSEWD.ActiveDesignFormData.Form.Form = Form then
LSEWD.FActiveDesignFormData := nil; // important - we can't call OnChange tab, because tab don't exist anymore
for mpc in LSEWD.FPageCtrlList.Values do
if mpc.DesignFormData <> nil then
if mpc.DesignFormData.Form.Form = Form then
mpc.DesignFormData := nil;
end;
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
LSEWD := LIterator.Value;
if LSEWD.ActiveDesignFormData <> nil then
if LSEWD.ActiveDesignFormData.Form.Form = Form then
LSEWD.FActiveDesignFormData := nil; // important - we can't call OnChange tab, because tab don't exist anymore
LIterator2 := LSEWD.FPageCtrlList.Iterator;
if LIterator2 <> nil then
try
repeat
mpc := LIterator2.Value;
if mpc.DesignFormData <> nil then
if mpc.DesignFormData.Form.Form = Form then
mpc.DesignFormData := nil;
until not LIterator2.next;
finally
LIterator2.Free;
end;
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
LFormData.Free;
end;
class procedure TSpartaMainIDE.Screen_FormDel(Sender: TObject; Form: TCustomForm);
begin
if not IsFormDesign(Form) then
begin
if Form is TSourceEditorWindowInterface then
Form.RemoveHandlerOnChangeBounds(GlobalSNOnChangeBounds)
else
Form.RemoveHandlerOnChangeBounds(GlobalOnChangeBounds)
end
else
TryFreeFormData(Form);
end;
class procedure TSpartaMainIDE.WindowCreate(Sender: TObject);
var
LSourceEditorWindow: TSourceEditorWindowInterface;
begin
if Sender.ClassNameIs('TSourceNotebook') then
begin
LSourceEditorWindow := Sender as TSourceEditorWindowInterface;
{$IFDEF USE_GENERICS_COLLECTIONS}
SourceEditorWindows.Add(LSourceEditorWindow, TSourceEditorWindowData.Create(LSourceEditorWindow));
{$ELSE}
SourceEditorWindows.insert(LSourceEditorWindow, TSourceEditorWindowData.Create(LSourceEditorWindow));
{$ENDIF}
end;
end;
class procedure TSpartaMainIDE.WindowDestroy(Sender: TObject);
var
p: Pointer;
f: TDesignFormData absolute p;
begin
for p in dsgForms do
if f.FForm.LastActiveSourceWindow = Sender then
f.FForm.LastActiveSourceWindow := nil;
{$IFDEF USE_GENERICS_COLLECTIONS}
SourceEditorWindows.Remove(Sender as TSourceEditorWindowInterface);
{$ELSE}
SourceEditorWindows[Sender as TSourceEditorWindowInterface].Free;
SourceEditorWindows.Delete(Sender as TSourceEditorWindowInterface);
{$ENDIF}
if LastActiveSourceEditorWindow = Sender then
LastActiveSourceEditorWindow := nil;
end;
class procedure TSpartaMainIDE.WindowShow(Sender: TObject);
var
LWindow: TSourceEditorWindowInterface;
LWindowData: TSourceEditorWindowData;
LDesignedForm: IDesignedForm;
begin
LWindow := Sender as TSourceEditorWindowInterface;
{$IFDEF USE_GENERICS_COLLECTIONS}
if not SourceEditorWindows.TryGetValue(LWindow, LWindowData) or
(LWindowData.ActiveDesignFormData = nil)
then
Exit;
{$ELSE}
if not SourceEditorWindows.contains(LWindow) then
Exit;
if SourceEditorWindows.GetData(LWindow).ActiveDesignFormData = nil then
Exit;
{$ENDIF}
LDesignedForm := LWindowData.ActiveDesignFormData as IDesignedForm;
LDesignedForm.ShowWindow;
end;
class procedure TSpartaMainIDE.WindowHide(Sender: TObject);
var
LWindow: TSourceEditorWindowInterface;
LWindowData: TSourceEditorWindowData;
LDesignedForm: IDesignedForm;
begin
LWindow := Sender as TSourceEditorWindowInterface;
{$IFDEF USE_GENERICS_COLLECTIONS}
if not SourceEditorWindows.TryGetValue(LWindow, LWindowData) or
(LWindowData.ActiveDesignFormData = nil)
then
Exit;
{$ELSE}
if not SourceEditorWindows.contains(LWindow) then
Exit;
LWindowData := SourceEditorWindows[LWindow];
if LWindowData.ActiveDesignFormData = nil then
Exit;
{$ENDIF}
LDesignedForm := LWindowData.ActiveDesignFormData as IDesignedForm;
LDesignedForm.HideWindow;
end;
class procedure TSpartaMainIDE.EditorActivated(Sender: TObject);
var
LDesigner: TIDesigner;
LSourceEditor: TSourceEditorInterface;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>.TIterator;
{$ENDIF}
function LastSourceEditorNotFound: boolean;
var
i: Integer;
se: TSourceEditorInterface;
begin
if (LastActiveSourceEditorWindow = nil) or (LastActiveSourceEditor = nil) then
Exit(False);
{$IFDEF USE_GENERICS_COLLECTIONS}
for se in SourceEditorWindows[LastActiveSourceEditorWindow].FPageCtrlList.Keys do
begin
Result := True;
for i := 0 to LastActiveSourceEditorWindow.Count - 1 do
if se = LastActiveSourceEditorWindow.Items[i] then
begin
Result := False;
Break;
end;
if Result then
begin
LastActiveSourceEditor := se; // after moving code editor into other window, sometimes IDE switch to other tab :\ damn... this line prevent this.
Exit;
end;
end;
{$ELSE}
LIterator := SourceEditorWindows[LastActiveSourceEditorWindow].FPageCtrlList.Iterator;
if LIterator <> nil then
try
repeat
se := LIterator.Key;
Result := True;
for i := 0 to LastActiveSourceEditorWindow.Count - 1 do
if se = LastActiveSourceEditorWindow.Items[i] then
begin
Result := False;
Break;
end;
if Result then
begin
LastActiveSourceEditor := se; // after moving code editor into other window, sometimes IDE switch to other tab :\ damn... this line prevent this.
Exit;
end;
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
Result := False;
end;
var
LPageCtrl: TModulePageControl;
LSourceEditorWindow: TSourceEditorWindowInterface;
LDesignFormData: TDesignFormData;
begin
if Sender is TSourceEditorInterface then
begin
LSourceEditor := TSourceEditorInterface(Sender);
// if we create directly new project then Activate is called without EditorCreate...
if not (LSourceEditor.EditorControl.Parent.Parent is TModulePageControl) then
begin
// possible is situation when we moved tab into other window
// then was not called event EditorDestroy - that generates problems with switching tabs
// or when we moving tab to first window ( then is raising : duplicates not allowed in dictionary).
if LastSourceEditorNotFound then
EditorDestroyed(nil);
EditorCreate(Sender);
end;
LDesigner := LSourceEditor.GetDesigner(True);
// should be performed during EditorCreate (parent of parent is module page ctrl)
LPageCtrl := TModulePageControl(LSourceEditor.EditorControl.Parent.Parent);
if LPageCtrl = nil then
Exit;
if LDesigner = nil then
LPageCtrl.HideDesignPage
else
begin
if LPageCtrl.Resizer = nil then
LPageCtrl.FResizer := TResizer.Create(LPageCtrl.Pages[1]);
LPageCtrl.ShowDesignPage;
end;
LSourceEditorWindow := TSourceEditorWindowInterface(LPageCtrl.Owner);
LastActiveSourceEditorWindow := LSourceEditorWindow;
LastActiveSourceEditor := LSourceEditor;
LDesignFormData := FindDesignFormData(LPageCtrl);
// when we switch tab, design form should be hidden
if (LDesigner = nil) or (LDesignFormData = nil) then
SourceEditorWindows[LSourceEditorWindow].ActiveDesignFormData := nil
else
begin
// during form loading for example from package, ActiveDesignFormData assignment,
// blocks the message queue responsible for hiding form
// We can't check it because there are some forms where designing is not handled yet.
// (for that kind of forms is returned empty designformdata)
// maybe we can fix this in future
if not LDesignFormData.FHiding then
// Prevent unexpected events (when is deactivated some control outside designed form)
if (LDesignFormData.Form.LastActiveSourceWindow = LSourceEditorWindow)
// important!!! for many error - switching between editors...
and (LPageCtrl.PageIndex = 1) then
SourceEditorWindows[LSourceEditorWindow].ActiveDesignFormData := LDesignFormData
else
SourceEditorWindows[LSourceEditorWindow].ActiveDesignFormData := nil;
end;
case LPageCtrl.PageIndex of
0: if LDesignFormData <> nil then {$IFNDEF USE_POPUP_PARENT_DESIGNER}LDesignFormData.Form.HideWindow{$ENDIF};
1:
begin
LazarusIDE.DoShowDesignerFormOfSrc(LSourceEditorWindow.ActiveEditor);
// for lfm edition...
with LDesignFormData as IDesignedForm do
if not LDesignFormData.FHiding and (RealBorderStyle <> bsNone) then
begin
BeginUpdate;
//RealBorderIcons := [];
//RealBorderStyle := bsNone;
Form.Show;
EndUpdate;
LPageCtrl.BoundToDesignTabSheet;
PostMessage(Form.Handle, WM_BoundToDesignTabSheet, 0, 0);
end;
end;
end;
end
else
begin
RefreshAllSourceWindowsModulePageControl;
end;
end;
class procedure TSpartaMainIDE.EditorDestroyed(Sender: TObject);
var
LSourceEditor: TSourceEditorInterface;
LPageCtrl: TModulePageControl;
LSourceEditorWindow: TSourceEditorWindowInterface;
LFormData: TDesignFormData;
begin
// sender is here as special parameter, because is possible situation where is moved editor
// to another window and was not triggered EditorDestroy - for more info goto editoractivate
if Sender = nil then
LSourceEditor := LastActiveSourceEditor
else
LSourceEditor := TSourceEditorInterface(Sender);
// parent don't exist anymore and we must search in each window...
if Sender = nil then // but not for Sender = nil :P
LPageCtrl := SourceEditorWindows[LastActiveSourceEditorWindow].FPageCtrlList[LastActiveSourceEditor]
else
LPageCtrl := AbsoluteFindModulePageControl(LSourceEditor);
if LPageCtrl = nil then
Exit;
LFormData := FindDesignFormData(LSourceEditor.GetDesigner(False));
// goto first comment (forced destroy)
if Sender = nil then
LSourceEditorWindow := LastActiveSourceEditorWindow
else
LSourceEditorWindow := TSourceEditorWindowInterface(LPageCtrl.Owner);
if LFormData <> nil then
begin
SourceEditorWindows[LSourceEditorWindow].ActiveDesignFormData := nil;
LFormData.Form.LastActiveSourceWindow := nil;
end;
SourceEditorWindows[LSourceEditorWindow].RemovePageCtrl(LSourceEditor);
LPageCtrl.Free;
if LastActiveSourceEditor = LSourceEditor then
LastActiveSourceEditor := nil;
end;
class procedure TSpartaMainIDE.EditorCreate(Sender: TObject);
var
LSourceEditor: TSourceEditorInterface;
function CreateModulePageControl: TModulePageControl;
var
LNewTabSheet: TTabSheet;
LSourceEditorWindow: TSourceEditorWindowInterface;
LParent: TWinControl;
begin
Result := TModulePageControl.Create(LSourceEditor.EditorControl.Owner);
Result.TabPosition := tpBottom;
Result.Align:=alClient;
LParent := LSourceEditor.EditorControl.Parent;
LNewTabSheet := TTabSheet.Create(Result);
LNewTabSheet.PageControl := Result;
LNewTabSheet.Caption := 'Code';
LSourceEditor.EditorControl.Parent := LNewTabSheet; // ! SynEdit :)
LNewTabSheet := TTabSheet.Create(Result);
LNewTabSheet.PageControl := Result;
LNewTabSheet.Caption := 'Designer';
Result.OnChange := TabChange;
Result.Parent := LParent;
LSourceEditorWindow := TSourceEditorWindowInterface(Result.Owner);
SourceEditorWindows[LSourceEditorWindow].AddPageCtrl(LSourceEditor, Result)
end;
begin
LSourceEditor := Sender as TSourceEditorInterface;
if not (LSourceEditor.EditorControl.Parent.Parent is TModulePageControl) then
CreateModulePageControl;
end;
class procedure TSpartaMainIDE.TabChange(Sender: TObject);
var
LActiveSourceWindow: TSourceEditorWindowInterface;
w: TSourceEditorWindowInterface;
{$IFDEF USE_GENERICS_COLLECTIONS}
p: TPair<TSourceEditorInterface, TModulePageControl>;
{$ELSE}
p: THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>.TPair;
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
LIterator2: THashmap<TSourceEditorInterface, TModulePageControl, THash_TObject>.TIterator;
{$ENDIF}
LDesigner: TIDesigner;
LFormData: TDesignFormData;
LPageCtrl: TModulePageControl;
LSourceWndData: TSourceEditorWindowData;
begin
// activate proper source editor window when user is clicking on page.
// (at clicking time can be active other source window)
LActiveSourceWindow := TComponent(Sender).Owner as TSourceEditorWindowInterface;
if LActiveSourceWindow <> SourceEditorManagerIntf.ActiveSourceWindow then
SourceEditorManagerIntf.ActiveSourceWindow := LActiveSourceWindow;
LPageCtrl := TModulePageControl(Sender);
// in case there is no module and is visible page other than code page.
if (LActiveSourceWindow.ActiveEditor <> nil) and (LPageCtrl <> nil) then
begin
LDesigner := LActiveSourceWindow.ActiveEditor.GetDesigner(True);
LFormData := FindDesignFormData(LDesigner);
{$IFDEF USE_GENERICS_COLLECTIONS}
if (LFormData <> nil) and SourceEditorWindows.TryGetValue(LActiveSourceWindow, LSourceWndData) then
begin
case LPageCtrl.ActivePageIndex of
0:
begin
LSourceWndData.ActiveDesignFormData := nil;
end;
1:
begin
// deactivate design tab in other page control :)
for w in SourceEditorWindows.Keys do
if w = LActiveSourceWindow then
Continue
else
for p in SourceEditorWindows[w].FPageCtrlList do
if (p.Value.DesignFormData = LFormData) and (p.Value <> Sender) then
begin
IDETabMaster.ShowCode(p.Key);
end;
LSourceWndData.ActiveDesignFormData := LFormData;
// to handle windows with different size
LPageCtrl.BoundToDesignTabSheet;
end;
end;
end;
{$ELSE}
if (LFormData <> nil) and SourceEditorWindows.contains(LActiveSourceWindow) then
begin
LSourceWndData := SourceEditorWindows[LActiveSourceWindow];
case LPageCtrl.ActivePageIndex of
0:
begin
LSourceWndData.ActiveDesignFormData := nil;
end;
1:
begin
// deactivate design tab in other page control :)
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
w := LIterator.Key;
if w = LActiveSourceWindow then
Continue
else
begin
LIterator2 := SourceEditorWindows[w].FPageCtrlList.Iterator;
if LIterator2 <> nil then
try
repeat
p := LIterator2.Data;
if (p.Value.DesignFormData = LFormData) and (p.Value <> Sender) then
IDETabMaster.ShowCode(p.Key);
until not LIterator2.next;
finally
LIterator2.Free;
end;
end;
until not LIterator.next;
finally
LIterator.Free;
end;
LSourceWndData.ActiveDesignFormData := LFormData;
// to handle windows with different size
LPageCtrl.BoundToDesignTabSheet;
end;
end;
end;
{$ENDIF}
end;
end;
class procedure TSpartaMainIDE.GlobalOnChangeBounds(Sender: TObject);
var
sewd: TSourceEditorWindowData;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
{$ENDIF}
begin
{$IFDEF USE_GENERICS_COLLECTIONS}
for sewd in SourceEditorWindows.Values do
begin
sewd.OnChangeBounds(Sender);
end;
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
sewd := LIterator.Value;
sewd.OnChangeBounds(Sender)
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
end;
class procedure TSpartaMainIDE.GlobalSNOnChangeBounds(Sender: TObject);
var
LWindow: TSourceEditorWindowInterface;
LWindowData: TSourceEditorWindowData;
LDesignForm: TDesignFormData;
begin
// Check parent. Maybe is different? If yes then window changed state (docked/undocked) and we need to perform few actions
LWindow := Sender as TSourceEditorWindowInterface;
// dock/undock event :)
{$IFDEF USE_GENERICS_COLLECTIONS}
if not SourceEditorWindows.TryGetValue(LWindow, LWindowData) then
Exit;
{$ELSE}
if not SourceEditorWindows.contains(LWindow) then
Exit;
LWindowData := SourceEditorWindows[LWindow];
{$ENDIF}
if LWindowData.FLastTopParent <> LWindow.GetTopParent then
begin
LWindowData.FLastTopParent := LWindow.GetTopParent;
// refresh for popupparent
LDesignForm := LWindowData.ActiveDesignFormData;
LWindowData.ActiveDesignFormData := nil;
LWindowData.ActiveDesignFormData := LDesignForm;
// ...
//PostMessage(LWindow.Handle, WM_BoundToDesignTabSheet, 0, 0);
if LDesignForm <> nil then
begin
{$IFNDEF USE_POPUP_PARENT_DESIGNER}
LDesignForm.Form.Form.ParentWindow := FindModulePageControl(LWindow).Resizer.FResizerFrame.pClient.Handle;
{$ENDIF}
PostMessage(LDesignForm.Form.Form.Handle, WM_BoundToDesignTabSheet, 0, 0);
end;
end;
LWindowData.OnChangeBounds(Sender);
end;
{$IFDEF USE_POPUP_PARENT_DESIGNER}
class procedure TDesignerIDEBoss.OnBeforeClose(Sender: TObject);
begin
isIdeDestroyed := True;
end;
{$ENDIF}
class procedure TSpartaMainIDE.OnShowDesignerForm(Sender: TObject; AEditor: TSourceEditorInterface;
AComponentPaletteClassSelected: Boolean);
var
LForm: TDesignFormData;
LPageCtrl, p: TModulePageControl;
w: TSourceEditorWindowInterface;
e: TSourceEditorInterface;
{$IFNDEF USE_GENERICS_COLLECTIONS}
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
{$ENDIF}
begin
LForm := FindDesignFormData(TCustomForm(Sender).Designer);
if LForm = nil then
Exit;
if LForm.FHiding then
Exit;
LPageCtrl := FindModulePageControl(SourceEditorManagerIntf.ActiveEditor);
if LPageCtrl = nil then
Exit; // it should not happen but who knows :P Lazarus IDE is sometimes mischievous
if AComponentPaletteClassSelected then
begin
// if form is already opened do nothing, if not then show form for active module.
{$IFDEF USE_GENERICS_COLLECTIONS}
for w in SourceEditorWindows.Keys do
begin
e := w.ActiveEditor;
if (e = nil) or (e.GetDesigner(True) <> LForm.Form.Form.Designer) then
Continue;
p := FindModulePageControl(e);
if p.PageIndex = 1 then
Exit;
end;
{$ELSE}
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
w := LIterator.Key;
e := w.ActiveEditor;
if (e = nil) or (e.GetDesigner(True) <> LForm.Form.Form.Designer) then
Continue;
p := FindModulePageControl(e);
if p.PageIndex = 1 then
Exit;
until not LIterator.next;
finally
LIterator.Free;
end;
{$ENDIF}
end;
IDETabMaster.ShowDesigner(SourceEditorManagerIntf.ActiveEditor);
end;
class procedure TSpartaMainIDE.OnShowSrcEditor(Sender: TObject);
begin
IDETabMaster.ShowCode(Sender as TSourceEditorInterface);
end;
class procedure TSpartaMainIDE.OnShowMethod(const Name: String);
var
LForm: TDesignFormData;
LSecondEditor: TSourceEditorInterface = nil;
i: Integer;
LSourceWindow: TSourceEditorWindowInterface;
begin
LForm := FindDesignFormData(FormEditingHook.GetCurrentDesigner);
if LForm = nil then
Exit;
for i := 0 to SourceEditorManagerIntf.SourceWindowCount - 1 do
begin
LSourceWindow := SourceEditorManagerIntf.SourceWindows[i];
if LForm.Form.LastActiveSourceWindow = LSourceWindow then
Continue;
if LSourceWindow.ActiveEditor <> nil then
if LSourceWindow.ActiveEditor.GetDesigner(True) = LForm.Form.Form.Designer then
begin
LSecondEditor := LSourceWindow.ActiveEditor;
Break;
end;
end;
if LSecondEditor = nil then
begin
if LForm.Form.LastActiveSourceWindow <> nil then
begin
IDETabMaster.ShowCode(LForm.Form.LastActiveSourceWindow.ActiveEditor);
end;
end
else
begin
IDETabMaster.ShowCode(LSecondEditor);
end;
if LSecondEditor <> nil then
begin
LazarusIDE.DoShowMethod(LSecondEditor, Name);
end;
end;
class procedure TSpartaMainIDE.OnDesignRefreshPropertyValues;
var
LForm: TCustomForm;
LSourceWindow: TSourceEditorWindowInterface;
LFormData: TDesignFormData;
LPageCtrl: TModulePageControl;
function RootIsSelected: Boolean;
var
LSelection: TPersistentSelectionList;
i: integer;
begin
Result := False;
LSelection := TPersistentSelectionList.Create;
GlobalDesignHook.GetSelection(LSelection);
for i := 0 to LSelection.Count - 1 do
if LSelection.Items[i] = GlobalDesignHook.LookupRoot then
begin
Result := True;
Break;
end;
LSelection.Free;
end;
begin
if (GlobalDesignHook.LookupRoot is TCustomFrame) then
begin
if not RootIsSelected then
Exit;
LForm := FormEditingHook.GetDesignerForm(GlobalDesignHook.LookupRoot);
LFormData := FindDesignFormData(LForm);
LSourceWindow := (LFormData as IDesignedForm).LastActiveSourceWindow;
LPageCtrl := FindModulePageControl(LSourceWindow);
TFakeFrame(LForm).SetBounds(LForm.Left-1,LForm.Top-1,TFakeFrame(LForm).Width,TFakeFrame(LForm).Height);
//LPageCtrl.BoundToDesignTabSheet;
end
else
if (GlobalDesignHook.LookupRoot is TCustomForm) then
begin
if not RootIsSelected then
Exit;
LForm := TCustomForm(GlobalDesignHook.LookupRoot);
LFormData := FindDesignFormData(LForm);
LFormData.RepaintFormImages;
end;
end;
{$IFNDEF USE_GENERICS_COLLECTIONS}
class procedure FreeSourceEditorWindowsValues;
var
LIterator: THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.TIterator;
begin
LIterator := SourceEditorWindows.Iterator;
if LIterator <> nil then
try
repeat
LIterator.Value.Free;
until not LIterator.next;
finally
LIterator.Free;
end;
end;
{$ENDIF}
initialization
dsgForms := Classes.TList.Create;
{$IFDEF USE_GENERICS_COLLECTIONS}
SourceEditorWindows := TObjectDictionary<TSourceEditorWindowInterface, TSourceEditorWindowData>.Create([doOwnsValues]);
{$ELSE}
SourceEditorWindows := THashmap<TSourceEditorWindowInterface, TSourceEditorWindowData, THash_TObject>.Create();
{$ENDIF}
Forms := Classes.TList.Create;
finalization
Forms.Free;
{$IFNDEF USE_GENERICS_COLLECTIONS}
FreeSourceEditorWindowsValues;
{$ENDIF}
SourceEditorWindows.Free;
FreeAndNil(dsgForms);
end.