1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
{ Example widgetset.
It does not have any useful implementation, it only provides the classes
and published properties to define a child-parent relationship and some
coordinates. The Lazarus designer will do the rest:
Opening, closing, editing forms of this example widgetset.
At designtime the TMyWidgetMediator will paint.
Copyright (C) 2009 Mattias Gaertner mattias@freepascal.org
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
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. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.
}
unit MyWidgetSet;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Math, types;
type
IMyWidgetDesigner = interface(IUnknown)
procedure InvalidateRect(Sender: TObject; ARect: TRect; Erase: boolean);
end;
{ TMyWidget }
TMyWidget = class(TComponent)
private
FAcceptChildrenAtDesignTime: boolean;
FBorderBottom: integer;
FBorderLeft: integer;
FBorderRight: integer;
FBorderTop: integer;
FCaption: string;
FChilds: TFPList; // list of TMyWidget
FHeight: integer;
FLeft: integer;
FParent: TMyWidget;
FTop: integer;
FVisible: boolean;
FWidth: integer;
function GetChilds(Index: integer): TMyWidget;
procedure SetBorderBottom(const AValue: integer);
procedure SetBorderLeft(const AValue: integer);
procedure SetBorderRight(const AValue: integer);
procedure SetBorderTop(const AValue: integer);
procedure SetCaption(const AValue: string);
procedure SetHeight(const AValue: integer);
procedure SetLeft(const AValue: integer);
procedure SetParent(const AValue: TMyWidget);
procedure SetTop(const AValue: integer);
procedure SetVisible(const AValue: boolean);
procedure SetWidth(const AValue: integer);
protected
procedure InternalInvalidateRect({%H-}ARect: TRect; {%H-}Erase: boolean); virtual;
procedure SetName(const NewName: TComponentName); override;
procedure SetParentComponent(Value: TComponent); override;
procedure GetChildren(Proc: TGetChildProc; Root: TComponent); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Parent: TMyWidget read FParent write SetParent;
function ChildCount: integer;
property Children[Index: integer]: TMyWidget read GetChilds;
function HasParent: Boolean; override;
function GetParentComponent: TComponent; override;
procedure SetBounds(NewLeft, NewTop, NewWidth, NewHeight: integer); virtual;
procedure InvalidateRect(ARect: TRect; Erase: boolean);
procedure Invalidate;
property AcceptChildrenAtDesignTime: boolean read FAcceptChildrenAtDesignTime;
published
property Left: integer read FLeft write SetLeft;
property Top: integer read FTop write SetTop;
property Width: integer read FWidth write SetWidth;
property Height: integer read FHeight write SetHeight;
property Visible: boolean read FVisible write SetVisible;
property BorderLeft: integer read FBorderLeft write SetBorderLeft default 5;
property BorderRight: integer read FBorderRight write SetBorderRight default 5;
property BorderTop: integer read FBorderTop write SetBorderTop default 20;
property BorderBottom: integer read FBorderBottom write SetBorderBottom default 5;
property Caption: string read FCaption write SetCaption;
end;
TMyWidgetClass = class of TMyWidget;
{ TMyForm }
TMyForm = class(TMyWidget)
private
FDesigner: IMyWidgetDesigner;
protected
procedure InternalInvalidateRect(ARect: TRect; Erase: boolean); override;
public
constructor Create(AOwner: TComponent); override;
property Designer: IMyWidgetDesigner read FDesigner write FDesigner;
end;
{ TMyButton
A widget that does not allow children at design time }
TMyButton = class(TMyWidget)
public
constructor Create(AOwner: TComponent); override;
end;
{ TMyGroupBox
A widget that does allow children at design time }
TMyGroupBox = class(TMyWidget)
end;
implementation
{ TMyWidget }
function TMyWidget.GetChilds(Index: integer): TMyWidget;
begin
Result:=TMyWidget(FChilds[Index]);
end;
procedure TMyWidget.SetBorderBottom(const AValue: integer);
begin
if FBorderBottom=AValue then exit;
FBorderBottom:=AValue;
Invalidate;
end;
procedure TMyWidget.SetBorderLeft(const AValue: integer);
begin
if FBorderLeft=AValue then exit;
FBorderLeft:=AValue;
Invalidate;
end;
procedure TMyWidget.SetBorderRight(const AValue: integer);
begin
if FBorderRight=AValue then exit;
FBorderRight:=AValue;
Invalidate;
end;
procedure TMyWidget.SetBorderTop(const AValue: integer);
begin
if FBorderTop=AValue then exit;
FBorderTop:=AValue;
Invalidate;
end;
procedure TMyWidget.SetCaption(const AValue: string);
begin
if FCaption=AValue then exit;
FCaption:=AValue;
Invalidate;
end;
procedure TMyWidget.SetHeight(const AValue: integer);
begin
SetBounds(Left,Top,Width,AValue);
end;
procedure TMyWidget.SetLeft(const AValue: integer);
begin
SetBounds(AValue,Top,Width,Height);
end;
procedure TMyWidget.SetParent(const AValue: TMyWidget);
begin
if FParent=AValue then exit;
if FParent<>nil then begin
Invalidate;
FParent.FChilds.Remove(Self);
end;
FParent:=AValue;
if FParent<>nil then begin
FParent.FChilds.Add(Self);
end;
Invalidate;
end;
procedure TMyWidget.SetTop(const AValue: integer);
begin
SetBounds(Left,AValue,Width,Height);
end;
procedure TMyWidget.SetVisible(const AValue: boolean);
begin
if FVisible=AValue then exit;
FVisible:=AValue;
Invalidate;
end;
procedure TMyWidget.SetWidth(const AValue: integer);
begin
SetBounds(Left,Top,AValue,Height);
end;
procedure TMyWidget.InternalInvalidateRect(ARect: TRect; Erase: boolean);
begin
// see TMyForm
end;
procedure TMyWidget.SetName(const NewName: TComponentName);
begin
if Name=Caption then Caption:=NewName;
inherited SetName(NewName);
end;
procedure TMyWidget.SetParentComponent(Value: TComponent);
begin
if Value is TMyWidget then
Parent:=TMyWidget(Value);
end;
function TMyWidget.HasParent: Boolean;
begin
Result:=Parent<>nil;
end;
function TMyWidget.GetParentComponent: TComponent;
begin
Result:=Parent;
end;
procedure TMyWidget.GetChildren(Proc: TGetChildProc; Root: TComponent);
var
i: Integer;
begin
for i:=0 to ChildCount-1 do
if Children[i].Owner=Root then
Proc(Children[i]);
if Root = self then
for i:=0 to ComponentCount-1 do
if Components[i].GetParentComponent = nil then
Proc(Components[i]);
end;
constructor TMyWidget.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FChilds:=TFPList.Create;
FBorderLeft:=5;
FBorderRight:=5;
FBorderBottom:=5;
FBorderTop:=20;
FAcceptChildrenAtDesignTime:=true;
end;
destructor TMyWidget.Destroy;
begin
Parent:=nil;
while ChildCount>0 do Children[ChildCount-1].Free;
FreeAndNil(FChilds);
inherited Destroy;
end;
function TMyWidget.ChildCount: integer;
begin
Result:=FChilds.Count;
end;
procedure TMyWidget.SetBounds(NewLeft, NewTop, NewWidth, NewHeight: integer);
begin
if (Left=NewLeft) and (Top=NewTop) and (Width=NewWidth) and (Height=NewHeight) then
exit;
Invalidate;
FLeft:=NewLeft;
FTop:=NewTop;
FWidth:=NewWidth;
FHeight:=NewHeight;
Invalidate;
end;
procedure TMyWidget.InvalidateRect(ARect: TRect; Erase: boolean);
begin
ARect.Left:=Max(0,ARect.Left);
ARect.Top:=Max(0,ARect.Top);
ARect.Right:=Min(Width,ARect.Right);
ARect.Bottom:=Max(Height,ARect.Bottom);
if Parent<>nil then begin
OffsetRect(ARect,Left+Parent.BorderLeft,Top+Parent.BorderTop);
Parent.InvalidateRect(ARect,Erase);
end else begin
InternalInvalidateRect(ARect,Erase);
end;
end;
procedure TMyWidget.Invalidate;
begin
InvalidateRect(Rect(0,0,Width,Height),false);
end;
{ TMyForm }
procedure TMyForm.InternalInvalidateRect(ARect: TRect; Erase: boolean);
begin
if (Parent=nil) and (Designer<>nil) then
Designer.InvalidateRect(Self,ARect,Erase);
end;
constructor TMyForm.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
end;
{ TMyButton }
constructor TMyButton.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FAcceptChildrenAtDesignTime:=false;
end;
end.
|