mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 02:19:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			223 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			223 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
 ***************************************************************************
 | 
						|
 *                                                                         *
 | 
						|
 *   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.        *
 | 
						|
 *                                                                         *
 | 
						|
 ***************************************************************************
 | 
						|
 | 
						|
  Author: Mattias Gaertner
 | 
						|
 | 
						|
  Abstract:
 | 
						|
    TNonControlForm is a designer form to design non TControl components like
 | 
						|
    TDataModule.
 | 
						|
}
 | 
						|
unit NonControlDesigner;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
uses
 | 
						|
  Classes, SysUtils, Math, LCLProc, Graphics, GraphType, Forms, Controls,
 | 
						|
  IDEProcs, DesignerProcs, FormEditingIntf, CustomNonFormDesigner;
 | 
						|
  
 | 
						|
type
 | 
						|
 | 
						|
  { TNonControlDesignerForm }
 | 
						|
 | 
						|
  TNonControlDesignerForm = class(TCustomNonFormDesignerForm)
 | 
						|
  private
 | 
						|
    FFrameWidth: integer;
 | 
						|
    FMediator: TDesignerMediator;
 | 
						|
    procedure SetMediator(const AValue: TDesignerMediator);
 | 
						|
  protected
 | 
						|
    procedure SetFrameWidth(const AValue: integer); virtual;
 | 
						|
    procedure DoSetBounds(ALeft, ATop, AWidth, AHeight: integer); override;
 | 
						|
    procedure Notification(AComponent: TComponent; Operation: TOperation);
 | 
						|
          override;
 | 
						|
  public
 | 
						|
    constructor Create(TheOwner: TComponent); override;
 | 
						|
    destructor Destroy; override;
 | 
						|
    procedure Paint; override;
 | 
						|
    procedure DoLoadBounds; override;
 | 
						|
    procedure DoSaveBounds; override;
 | 
						|
  public
 | 
						|
    property FrameWidth: integer read FFrameWidth write SetFrameWidth;
 | 
						|
    property Mediator: TDesignerMediator read FMediator write SetMediator;
 | 
						|
  end;
 | 
						|
  
 | 
						|
  
 | 
						|
implementation
 | 
						|
 | 
						|
 | 
						|
{ TNonControlDesignerForm }
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.SetMediator(const AValue: TDesignerMediator);
 | 
						|
begin
 | 
						|
  if FMediator=AValue then exit;
 | 
						|
  if FMediator<>nil then begin
 | 
						|
    FMediator.LCLForm:=nil;
 | 
						|
    FMediator.RemoveFreeNotification(Self);
 | 
						|
  end;
 | 
						|
  FMediator:=AValue;
 | 
						|
  if FMediator<>nil then begin
 | 
						|
    FMediator.LCLForm:=Self;
 | 
						|
    FMediator.FreeNotification(Self);
 | 
						|
    DoLoadBounds;
 | 
						|
  end;
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.SetFrameWidth(const AValue: integer);
 | 
						|
begin
 | 
						|
  if FFrameWidth = AValue then 
 | 
						|
    Exit;
 | 
						|
  FFrameWidth := AValue;
 | 
						|
  Invalidate;
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.DoSetBounds(ALeft, ATop, AWidth,
 | 
						|
  AHeight: integer);
 | 
						|
begin
 | 
						|
  inherited DoSetBounds(ALeft, ATop, AWidth, AHeight);
 | 
						|
  if Mediator<>nil then
 | 
						|
    Mediator.SetFormBounds(LookupRoot,BoundsRect,ClientRect);
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.Notification(AComponent: TComponent;
 | 
						|
  Operation: TOperation);
 | 
						|
begin
 | 
						|
  inherited Notification(AComponent, Operation);
 | 
						|
  if Operation=opRemove then begin
 | 
						|
    if FMediator=AComponent then FMediator:=nil;
 | 
						|
  end;
 | 
						|
end;
 | 
						|
 | 
						|
constructor TNonControlDesignerForm.Create(TheOwner: TComponent);
 | 
						|
begin
 | 
						|
  inherited Create(TheOwner);
 | 
						|
  FFrameWidth := 1;
 | 
						|
  ControlStyle := ControlStyle - [csAcceptsControls];
 | 
						|
end;
 | 
						|
 | 
						|
destructor TNonControlDesignerForm.Destroy;
 | 
						|
begin
 | 
						|
  try
 | 
						|
    FreeAndNil(FMediator);
 | 
						|
  except
 | 
						|
    on E: Exception do begin
 | 
						|
      debugln(['TNonControlDesignerForm.Destroy freeing mediator failed: ',E.Message]);
 | 
						|
    end;
 | 
						|
  end;
 | 
						|
  inherited Destroy;
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.Paint;
 | 
						|
var
 | 
						|
  ARect: TRect;
 | 
						|
begin
 | 
						|
  inherited Paint;
 | 
						|
  with Canvas do begin
 | 
						|
    Brush.Color:=clWhite;
 | 
						|
    ARect:=Rect(FrameWidth,FrameWidth,
 | 
						|
        Self.ClientWidth-FrameWidth,
 | 
						|
        Self.ClientHeight-FrameWidth);
 | 
						|
    FillRect(ARect);
 | 
						|
    ARect:=Rect(0,0,Self.ClientWidth+1,Self.ClientHeight+1);
 | 
						|
    Pen.Color:=clBlack;
 | 
						|
    Frame3d(ARect, FrameWidth, bvLowered);
 | 
						|
    if (Mediator<>nil) and (LookupRoot<>nil) then
 | 
						|
      Mediator.Paint;
 | 
						|
  end;
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.DoLoadBounds;
 | 
						|
 | 
						|
  procedure SetNewBounds(NewLeft, NewTop, NewWidth, NewHeight: integer);
 | 
						|
  begin
 | 
						|
    if NewWidth<=0 then NewWidth:=Width;
 | 
						|
    if NewHeight<=0 then NewHeight:=Height;
 | 
						|
 | 
						|
    NewWidth:=Max(20,Min(NewWidth,Screen.Width-50));
 | 
						|
    NewHeight:=Max(20,Min(NewHeight,Screen.Height-50));
 | 
						|
    NewLeft:=Max(0,Min(NewLeft,Screen.Width-NewWidth-50));
 | 
						|
    NewTop:=Max(0,Min(NewTop,Screen.Height-NewHeight-50));
 | 
						|
 | 
						|
    //debugln('TNonControlDesignerForm.DoLoadBounds (TDataModule) ',dbgsName(LookupRoot),' ',dbgs(NewLeft),',',dbgs(NewTop),',',dbgs(NewWidth),',',dbgs(NewHeight));
 | 
						|
    SetBounds(NewLeft,NewTop,Max(20,NewWidth),Max(NewHeight,20));
 | 
						|
  end;
 | 
						|
 | 
						|
var
 | 
						|
  CurDataModule: TDataModule;
 | 
						|
  NewLeft, NewTop: integer;
 | 
						|
  NewWidth, NewHeight: Integer;
 | 
						|
  NewBounds, NewClientRect: TRect;
 | 
						|
begin
 | 
						|
  inherited DoLoadBounds;
 | 
						|
  if LookupRoot=nil then exit;
 | 
						|
 | 
						|
  if LookupRoot is TDataModule then 
 | 
						|
  begin
 | 
						|
    CurDataModule := TDataModule(LookupRoot);
 | 
						|
    NewLeft := CurDataModule.DesignOffset.X;
 | 
						|
    NewTop := CurDataModule.DesignOffset.Y;
 | 
						|
    NewWidth := CurDataModule.DesignSize.X;
 | 
						|
    NewHeight := CurDataModule.DesignSize.Y;
 | 
						|
    
 | 
						|
    SetNewBounds(NewLeft, NewTop, NewWidth, NewHeight);
 | 
						|
  end else begin
 | 
						|
    if Mediator<>nil then begin
 | 
						|
      Mediator.GetFormBounds(LookupRoot,NewBounds,NewClientRect);
 | 
						|
      NewLeft:=NewBounds.Left;
 | 
						|
      NewTop:=NewBounds.Top;
 | 
						|
      NewWidth:=NewBounds.Right-NewBounds.Left;
 | 
						|
      NewHeight:=NewBounds.Bottom-NewBounds.Top;
 | 
						|
      if (NewClientRect.Left<>NewClientRect.Right)
 | 
						|
      or (NewClientRect.Top<>NewClientRect.Bottom) then begin
 | 
						|
        // use the clientrect (the Width, Height depends on window theme)
 | 
						|
        NewWidth:=NewClientRect.Right-NewClientRect.Left+Width-ClientWidth;
 | 
						|
        NewHeight:=NewClientRect.Bottom-NewClientRect.Top+Height-ClientHeight;
 | 
						|
      end;
 | 
						|
    end else begin
 | 
						|
      GetComponentLeftTopOrDesignInfo(LookupRoot,NewLeft,NewTop);
 | 
						|
      NewWidth:=Width;
 | 
						|
      NewHeight:=Height;
 | 
						|
    end;
 | 
						|
    SetNewBounds(NewLeft, NewTop, NewWidth, NewHeight);
 | 
						|
  end;
 | 
						|
end;
 | 
						|
 | 
						|
procedure TNonControlDesignerForm.DoSaveBounds;
 | 
						|
begin
 | 
						|
  if LookupRoot is TDataModule then begin
 | 
						|
    with TDataModule(LookupRoot) do begin
 | 
						|
      DesignOffset:=Point(Left,Top);
 | 
						|
      DesignSize:=Point(Width,Height);
 | 
						|
      //debugln('TNonControlDesignerForm.DoSaveBounds (TDataModule) ',dbgsName(LookupRoot),' ',dbgs(DesignOffset.X),',',dbgs(DesignOffset.Y));
 | 
						|
    end;
 | 
						|
  end else if LookupRoot<>nil then begin
 | 
						|
    //debugln(['TNonControlDesignerForm.DoSaveBounds ',dbgsName(LookupRoot),' ',dbgs(Left),',',dbgs(Top),' ',DbgSName(Mediator)]);
 | 
						|
    if Mediator<>nil then begin
 | 
						|
      Mediator.SetFormBounds(LookupRoot,BoundsRect,ClientRect);
 | 
						|
    end else begin
 | 
						|
      SetComponentLeftTopOrDesignInfo(LookupRoot,Left,Top);
 | 
						|
    end;
 | 
						|
  end;
 | 
						|
  inherited DoSaveBounds;
 | 
						|
end;
 | 
						|
 | 
						|
end.
 | 
						|
 |