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 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
{%MainUnit ../control.pp}
{******************************************************************************
TDockZone
******************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
procedure TDockZone.SetLimitBegin(const AValue: Integer);
// sets the left/top coord of zone.
begin
case FOrientation of
doHorizontal: Top := AValue;
doVertical: Left := AValue;
else
raise Exception.Create('TDockZone.SetLimitBegin');
end;
end;
procedure TDockZone.SetLimitSize(const AValue: Integer);
// sets the zone width/height.
begin
case FOrientation of
doHorizontal: Height := AValue;
doVertical: Width := AValue;
else
raise Exception.Create('TDockZone.SetLimitSize');
end;
end;
procedure TDockZone.SetHeight(const AValue: Integer);
begin
if not Visible then
Exit;
if (FChildControl <> nil) then
FChildControl.Height := AValue
else
FBounds.Bottom := AValue;
end;
procedure TDockZone.SetLeft(const AValue: Integer);
begin
if not Visible then
Exit;
if (FChildControl <> nil) then
FChildControl.Left := AValue
else
FBounds.Left := AValue;
end;
procedure TDockZone.SetTop(const AValue: Integer);
begin
if not Visible then
Exit;
if (FChildControl <> nil) then
FChildControl.Top := AValue
else
FBounds.Top := AValue;
end;
procedure TDockZone.SetWidth(const AValue: Integer);
begin
if not Visible then
Exit;
if (FChildControl <> nil) then
FChildControl.Width := AValue
else
FBounds.Right := AValue;
end;
function TDockZone.GetHeight: Integer;
begin
if not Visible then
Exit(0);
if FTree.RootZone = Self then
Result := FTree.FDockSite.ClientHeight
else
if (FChildControl <> nil) then
Result := FChildControl.Height
else
begin
if FParentZone.Orientation = doHorizontal then
Result := FBounds.Bottom
else
Result := FParentZone.Height;
end;
end;
function TDockZone.GetLeft: Integer;
begin
if not Visible then
Exit(0);
if FTree.RootZone = Self then
Result := 0
else
if (FChildControl <> nil) then
Result := FChildControl.Left
else
begin
if FParentZone.Orientation = doVertical then
Result := FBounds.Left
else
Result := FParentZone.Left;
end;
end;
function TDockZone.GetLimitBegin: Integer;
// returns the left/top coord of zone.
begin
case FOrientation of
doHorizontal: Result := Top;
doVertical: Result := Left;
else
raise Exception.Create('TDockZone.GetLimitBegin');
end;
end;
function TDockZone.GetLimitSize: Integer;
// returns the zone width/height.
begin
case FOrientation of
doHorizontal: Result := Height;
doVertical: Result := Width;
else
raise Exception.Create('TDockZone.GetLimitSize');
end;
end;
function TDockZone.GetTop: Integer;
begin
if not Visible then
Exit(0);
if FTree.RootZone = Self then
Result := 0
else
if (FChildControl <> nil) then
Result := FChildControl.Top
else
begin
if FParentZone.Orientation = doHorizontal then
Result := FBounds.Top
else
Result := FParentZone.Top;
end;
end;
function TDockZone.GetVisible: Boolean;
// a zone is visible if one of its child zones contain a visible control
begin
if Assigned(FChildControl) then
Result := FChildControl.Visible
else
Result := FirstVisibleChild<>nil;
end;
function TDockZone.GetVisibleChildCount: Integer;
var
Zone: TDockZone;
begin
Result := 0;
Zone := FirstVisibleChild;
while Zone <> nil do begin
Zone := Zone.NextVisible;
Inc(Result);
end;
end;
function TDockZone.GetWidth: Integer;
begin
if not Visible then
Exit(0);
if FTree.RootZone = Self then
Result := FTree.FDockSite.ClientWidth
else
if (FChildControl <> nil) then
Result := FChildControl.Width
else
begin
if FParentZone.Orientation = doVertical then
Result := FBounds.Right
else
Result := FParentZone.Width;
end;
end;
function TDockZone.GetNextVisibleZone: TDockZone;
begin
Result := FNextSibling;
while Assigned(Result) and not Result.Visible do
Result := Result.FNextSibling;
end;
constructor TDockZone.Create(TheTree: TDockTree; TheChildControl: TControl);
begin
FTree := TheTree;
FChildControl := TheChildControl;
FBounds := Rect(0, 0, 0, 0);
end;
function TDockZone.FindZone(AControl: TControl): TDockZone;
begin
Result := nil;
if AControl = ChildControl then
begin
Result := Self;
exit;
end;
if FFirstChildZone <> nil then
begin
Result := FFirstChildZone.FindZone(AControl);
if Result <> nil then exit;
end;
if FNextSibling <> nil then
Result := FNextSibling.FindZone(AControl);
end;
function TDockZone.FirstVisibleChild: TDockZone;
begin
if FFirstChildZone<>nil then begin
if FFirstChildZone.Visible then
Result:=FFirstChildZone
else
Result:=FFirstChildZone.GetNextVisibleZone;
end else begin
Result:=nil;
end;
end;
function TDockZone.NextVisible: TDockZone;
begin
Result:=FNextSibling;
while (Result<>nil) and (not Result.Visible) do Result:=Result.FNextSibling;
end;
function TDockZone.PrevVisible: TDockZone;
begin
Result:=FPrevSibling;
while (Result<>nil) and (not Result.Visible) do Result:=Result.FPrevSibling;
end;
procedure TDockZone.AddAsFirstChild(NewChildZone: TDockZone);
begin
NewChildZone.FParentZone:=Self;
NewChildZone.FNextSibling:=FFirstChildZone;
if FFirstChildZone<>nil then
FFirstChildZone.FPrevSibling:=NewChildZone;
FFirstChildZone:=NewChildZone;
inc(FChildCount);
end;
procedure TDockZone.AddAsLastChild(NewChildZone: TDockZone);
var
LastChild: TDockZone;
begin
NewChildZone.FParentZone:=Self;
LastChild:=GetLastChild;
NewChildZone.FPrevSibling:=LastChild;
if LastChild<>nil then
LastChild.FNextSibling:=NewChildZone
else
FFirstChildZone:=NewChildZone;
inc(FChildCount);
end;
procedure TDockZone.AddSibling(NewZone: TDockZone; InsertAt: TAlign);
var
LinkAfter: TDockZone;
begin
case InsertAt of
alLeft, alTop: LinkAfter := FPrevSibling;
alRight, alBottom: LinkAfter := Self;
else
raise Exception.Create('TDockZone.AddSibling: unhandled insertion');
end;
if LinkAfter = nil then
Parent.AddAsFirstChild(NewZone)
else
begin
NewZone.FPrevSibling := LinkAfter;
NewZone.FNextSibling := LinkAfter.NextSibling;
NewZone.FParentZone := Parent;
if LinkAfter.NextSibling <> nil then
LinkAfter.NextSibling.FPrevSibling := NewZone;
LinkAfter.FNextSibling := NewZone;
end;
end;
procedure TDockZone.ReplaceChild(OldChild, NewChild: TDockZone);
begin
NewChild.FParentZone := Self;
NewChild.FNextSibling := OldChild.FNextSibling;
NewChild.FPrevSibling := OldChild.FPrevSibling;
if NewChild.FNextSibling <> nil then
NewChild.FNextSibling.FPrevSibling := NewChild;
if NewChild.FPrevSibling <> nil then
NewChild.FPrevSibling.FNextSibling := NewChild;
if FFirstChildZone = OldChild then
FFirstChildZone := NewChild;
OldChild.FNextSibling := nil;
OldChild.FPrevSibling := nil;
OldChild.FParentZone := nil;
end;
function TDockZone.GetLastChild: TDockZone;
begin
Result:=FFirstChildZone;
if Result=nil then exit;
while (Result.FNextSibling<>nil) do Result:=Result.FNextSibling;
end;
function TDockZone.GetIndex: Integer;
var
Zone: TDockZone;
begin
Result:=0;
Zone:=PrevSibling;
while Zone<>nil do begin
inc(Result);
Zone:=Zone.PrevSibling;
end;
end;
procedure TDockZone.Remove(ChildZone: TDockZone);
begin
if ChildZone.Parent <> Self then
raise Exception.Create('TDockZone.Remove');
if ChildZone=FFirstChildZone then FFirstChildZone:=ChildZone.FNextSibling;
if ChildZone.FNextSibling<>nil then
ChildZone.FNextSibling.FPrevSibling:=ChildZone.FPrevSibling;
if ChildZone.FPrevSibling<>nil then
ChildZone.FPrevSibling.FNextSibling:=ChildZone.FNextSibling;
ChildZone.FPrevSibling:=nil;
ChildZone.FNextSibling:=nil;
ChildZone.FParentZone:=nil;
dec(FChildCount);
end;
// included by control.pp
|