lazarus/lcl/pairsplitter.pas
mattias c49518c55c published BorderSpacing for many controls
git-svn-id: trunk@6429 -
2004-12-27 19:40:59 +00:00

371 lines
9.8 KiB
ObjectPascal

{ $Id$ }
{
/***************************************************************************
pairsplitter.pas
----------------
Component Library Controls
***************************************************************************/
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.LCL, included in this distribution, *
* for details about the copyright. *
* *
* This program 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. *
* *
*****************************************************************************
Author: Mattias Gaertner
Abstract:
TPairSplitter component. A component with two TPairSplitterSide childs.
Both child components can contain other components and the childs are
divided by a splitter which can be dragged by the user.
}
unit PairSplitter;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
LCLType, LCLProc, LMessages, Graphics, GraphType, LCLIntf, Controls;
type
TCustomPairSplitter = class;
{ TPairSplitterSide }
TPairSplitterSide = class(TWinControl)
private
fCreatedBySplitter: boolean;
function GetSplitter: TCustomPairSplitter;
protected
procedure SetParent(AParent: TWinControl); override;
procedure WMPaint(var PaintMessage: TLMPaint); message LM_PAINT;
procedure Paint; virtual;
property Align;
property Anchors;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
public
property Splitter: TCustomPairSplitter read GetSplitter;
property Visible;
property Left;
property Top;
property Width;
property Height;
published
property ChildSizing;
property ClientWidth;
property ClientHeight;
property Enabled;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnResize;
property ShowHint;
property ParentShowHint;
property PopupMenu;
end;
{ TCustomPairSplitter }
TPairSplitterType = (
pstHorizontal,
pstVertical
);
TCustomPairSplitter = class(TWinControl)
private
FPosition: integer;
FSides: array[0..1] of TPairSplitterSide;
FSplitterType: TPairSplitterType;
fDoNotCreateSides: boolean;
function GetPosition: integer;
function GetSides(Index: integer): TPairSplitterSide;
procedure SetPosition(const AValue: integer);
procedure SetSplitterType(const AValue: TPairSplitterType);
procedure AddSide(ASide: TPairSplitterSide);
procedure RemoveSide(ASide: TPairSplitterSide);
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure CreateWnd; override;
procedure UpdatePosition;
procedure CreateSides;
procedure Loaded; override;
class function IsSupportedByInterface: boolean;
function ChildClassAllowed(ChildClass: TClass): boolean; override;
public
property Sides[Index: integer]: TPairSplitterSide read GetSides;
property SplitterType: TPairSplitterType read FSplitterType
write SetSplitterType default pstHorizontal;
property Position: integer read GetPosition write SetPosition;
end;
{ TPairSplitter }
TPairSplitter = class(TCustomPairSplitter)
published
property Align;
property Anchors;
property BorderSpacing;
property Enabled;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnResize;
property OnChangeBounds;
property ShowHint;
property SplitterType;
property ParentShowHint;
property PopupMenu;
property Position;
property Visible;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Additional',[TPairSplitter]);
RegisterNoIcon([TPairSplitterSide]);
end;
{ TPairSplitterSide }
function TPairSplitterSide.GetSplitter: TCustomPairSplitter;
begin
if (Parent<>nil) and (Parent is TCustomPairSplitter) then
Result:=TCustomPairSplitter(Parent)
else
Result:=nil;
end;
procedure TPairSplitterSide.SetParent(AParent: TWinControl);
var
ASplitter: TCustomPairSplitter;
begin
CheckNewParent(AParent);
// remove from side list of old parent
ASplitter:=Splitter;
if ASplitter<>nil then begin
ASplitter.RemoveSide(Self);
end;
inherited SetParent(AParent);
// add to side list of new parent
ASplitter:=Splitter;
if ASplitter<>nil then begin
ASplitter.AddSide(Self);
end;
end;
procedure TPairSplitterSide.WMPaint(var PaintMessage: TLMPaint);
begin
if (csDestroying in ComponentState) or (not HandleAllocated) then exit;
Include(FControlState, csCustomPaint);
inherited WMPaint(PaintMessage);
Paint;
Exclude(FControlState, csCustomPaint);
end;
procedure TPairSplitterSide.Paint;
var
ACanvas: TControlCanvas;
begin
if csDesigning in ComponentState then begin
ACanvas := TControlCanvas.Create;
with ACanvas do begin
Control := Self;
Pen.Style := psDash;
Frame(0,0,Width-1,Height-1);
Free;
end;
end;
end;
constructor TPairSplitterSide.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FCompStyle := csPairSplitterSide;
ControlStyle:=ControlStyle+[csAcceptsControls];
end;
destructor TPairSplitterSide.Destroy;
begin
inherited Destroy;
end;
{ TCustomPairSplitter }
function TCustomPairSplitter.GetSides(Index: integer): TPairSplitterSide;
begin
if (Index<0) or (Index>1) then
RaiseGDBException('TCustomPairSplitter.GetSides: Index out of bounds');
Result:=FSides[Index];
end;
function TCustomPairSplitter.GetPosition: integer;
begin
if HandleAllocated and (not (csLoading in ComponentState)) then
UpdatePosition;
Result:=FPosition;
end;
procedure TCustomPairSplitter.SetPosition(const AValue: integer);
begin
if FPosition=AValue then exit;
FPosition:=AValue;
if FPosition<0 then
FPosition:=0;
if HandleAllocated and (not (csLoading in ComponentState)) then
PairSplitterSetPosition(Handle,FPosition);
end;
procedure TCustomPairSplitter.SetSplitterType(const AValue: TPairSplitterType);
begin
if FSplitterType=AValue then exit;
FSplitterType:=AValue;
if HandleAllocated then RecreateWnd;
end;
procedure TCustomPairSplitter.AddSide(ASide: TPairSplitterSide);
var
i: Integer;
begin
if ASide=nil then exit;
i:=Low(FSides);
repeat
if FSides[i]=ASide then exit;
if FSides[i]=nil then begin
FSides[i]:=ASide;
if HandleAllocated then
PairSplitterAddSide(Handle,ASide.Handle,i);
break;
end;
inc(i);
if i>High(FSides) then
RaiseGDBException('TCustomPairSplitter.AddSide no free side left');
until false;
end;
procedure TCustomPairSplitter.RemoveSide(ASide: TPairSplitterSide);
var
i: Integer;
begin
if ASide=nil then exit;
for i:=Low(FSides) to High(FSides) do
if FSides[i]=ASide then begin
if HandleAllocated and ASide.HandleAllocated then
PairSplitterRemoveSide(Handle,ASide.Handle,i);
FSides[i]:=nil;
end;
// if the user deletes a side at designtime, autocreate a new one
if (csDesigning in ComponentState) then
CreateSides;
end;
constructor TCustomPairSplitter.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FCompStyle := csPairSplitter;
ControlStyle:=ControlStyle-[csAcceptsControls];
FSplitterType:=pstHorizontal;
SetInitialBounds(0, 0, 90, 90);
FPosition:=45;
CreateSides;
end;
destructor TCustomPairSplitter.Destroy;
var
i: Integer;
begin
// destroy the sides
fDoNotCreateSides:=true;
for i:=Low(FSides) to High(FSides) do
if (FSides[i]<>nil) and (FSides[i].fCreatedBySplitter) then
FSides[i].Free;
inherited Destroy;
end;
procedure TCustomPairSplitter.CreateWnd;
var
i: Integer;
APosition: Integer;
begin
inherited CreateWnd;
for i:=Low(FSides) to High(FSides) do
if FSides[i]<>nil then
PairSplitterAddSide(Handle,FSides[i].Handle,i);
APosition:=FPosition;
PairSplitterSetPosition(Handle,APosition);
if not (csLoading in ComponentState) then
FPosition:=APosition;
end;
procedure TCustomPairSplitter.UpdatePosition;
var
CurPosition: Integer;
begin
if HandleAllocated then begin
CurPosition:=-1;
PairSplitterSetPosition(Handle,CurPosition);
FPosition:=CurPosition;
end;
end;
procedure TCustomPairSplitter.CreateSides;
var
ASide: TPairSplitterSide;
i: Integer;
begin
if fDoNotCreateSides or (csDestroying in ComponentState)
or (csLoading in ComponentState)
or ((Owner<>nil) and (csLoading in Owner.ComponentState)) then exit;
// create the missing side controls
for i:=Low(FSides) to High(FSides) do
if FSides[i]=nil then begin
// For streaming it is important that the side controls are owned by
// the owner of the splitter
ASide:=TPairSplitterSide.Create(Owner);
ASide.fCreatedBySplitter:=true;
ASide.Parent:=Self;
end;
end;
procedure TCustomPairSplitter.Loaded;
begin
inherited Loaded;
CreateSides;
if HandleAllocated then
PairSplitterSetPosition(Handle,FPosition);
end;
function TCustomPairSplitter.IsSupportedByInterface: boolean;
begin
Result:=PairSplitterGetInterfaceInfo;
end;
function TCustomPairSplitter.ChildClassAllowed(ChildClass: TClass): boolean;
begin
Result:=ChildClass.InheritsFrom(TPairSplitterSide);
end;
end.