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 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
|
{%MainUnit ../forms.pp}
{
*****************************************************************************
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.
*****************************************************************************
}
const
IntfBarKind: array[TScrollBarKind] of Integer =
(
SB_HORZ,
SB_VERT
);
TrackToPolicyMap: array[Boolean] of integer =
(
SB_POLICY_DISCONTINUOUS,
SB_POLICY_CONTINUOUS
);
procedure TControlScrollBar.SetPosition(const Value: Integer);
var
MaxPos, PrevPosition: Integer;
ScrollInfo: TScrollInfo;
begin
if csLoading in FControl.ComponentState then
begin
FPosition := Value;
Exit;
end;
if Value < 0 then
begin
SetPosition(0);
exit;
end;
if GetAutoScroll then
begin
if Value > FAutoRange then
begin
{$IFDEF VerboseScrollingWinControl}
if DebugCondition then
DebugLn(['TControlScrollBar.SetPosition FAutoRange Value=',Value,' > AutoRange=',FAutoRange]);
{$ENDIF}
SetPosition(FAutoRange);
exit;
end;
end;
MaxPos := Range - Page;
if (MaxPos >= 0) and (Value > MaxPos) then
begin
{$IFDEF VerboseScrollingWinControl}
if DebugCondition then
DebugLn(['TControlScrollBar.SetPosition Range Value=',Value,' > Range=',Range]);
{$ENDIF}
SetPosition(MaxPos);
exit;
end;
{$IFDEF VerboseScrollingWinControl}
if DebugCondition then
DebugLn(['TControlScrollBar.SetPosition Value=',Value,' FPosition=',FPosition]);
{$ENDIF}
if Value = FPosition then
exit;
PrevPosition := FPosition;
// position has to be set before FControl.ScrollBy !!!
FPosition := Value;
// scroll logical client area of FControl
if Kind = sbVertical then
FControl.ScrollBy(0, PrevPosition - FPosition)
else
FControl.ScrollBy(PrevPosition - FPosition, 0);
// check that the new position is also set on the scrollbar
if HandleAllocated and (GetScrollPos(ControlHandle, IntfBarKind[Kind]) <> FPosition) then
begin
InvalidateScrollInfo;
{$IFDEF VerboseScrollingWinControl}
if DebugCondition then
DebugLn(['TControlScrollBar.SetPosition FPosition=',FPosition]);
{$ENDIF}
// send position to interface and store it back to FPosition (this way LCL will have actual position value)
FillChar(ScrollInfo,SizeOf(ScrollInfo), 0);
ScrollInfo.cbSize := SizeOf(ScrollInfo);
ScrollInfo.fMask := SIF_POS;
ScrollInfo.nPos := FPosition;
FPosition := SetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo, ScrollBarShouldBeVisible);
end;
end;
function TControlScrollBar.GetIncrement: TScrollBarInc;
begin
Result := FIncrement;
end;
function TControlScrollBar.GetPage: TScrollBarInc;
var
ScrollInfo: TScrollInfo;
begin
if HandleAllocated and (not (FControl is TScrollingWinControl)) then
begin
ScrollInfo.fMask := SIF_PAGE;
GetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo);
if FPage<>ScrollInfo.nPage then
begin
FPage := ScrollInfo.nPage;
InvalidateScrollInfo;
end;
end;
Result := FPage;
end;
function TControlScrollBar.GetPosition: Integer;
var
ScrollInfo: TScrollInfo;
begin
if HandleAllocated and (not (FControl is TScrollingWinControl)) then
begin
ScrollInfo.fMask := SIF_POS;
GetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo);
if FPosition <> ScrollInfo.nPos then
begin
FPosition := ScrollInfo.nPos;
InvalidateScrollInfo;
end;
end;
Result := FPosition;
end;
function TControlScrollBar.GetRange: Integer;
var
ScrollInfo: TScrollInfo;
NewRange: Integer;
begin
if HandleAllocated and (not (FControl is TScrollingWinControl)) then
begin
ScrollInfo.fMask := SIF_Range + SIF_Page;
GetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo);
NewRange := ScrollInfo.nMax - ScrollInfo.nMin;
if NewRange <> FRange then
begin
FRange := NewRange;
InvalidateScrollInfo;
end;
end;
Result := FRange;
end;
function TControlScrollBar.GetSmooth: Boolean;
begin
Result := FSmooth;
end;
procedure TControlScrollBar.SetIncrement(const AValue: TScrollBarInc);
begin
// This value is only used by the ScrollHandler procedure
FIncrement := AValue;
end;
procedure TControlScrollBar.SetPage(const AValue: TScrollBarInc);
begin
if FPage = AValue then exit;
FPage := AValue;
ControlUpdateScrollBars;
end;
function TControlScrollBar.GetSize: integer;
var
KindID: integer;
begin
if Kind = sbHorizontal then
KindID := SM_CYHSCROLL
else
KindID := SM_CXVSCROLL;
if HandleAllocated then
Result := LCLIntf.GetScrollBarSize(ControlHandle,KindID)
else
Result := GetSystemMetrics(KindID);
end;
procedure TControlScrollBar.SetRange(const AValue: Integer);
begin
if not (csLoading in FControl.ComponentState) then
if FControl is TScrollingWinControl then
TScrollingWinControl(FControl).FAutoScroll := False;
InternalSetRange(AValue);
end;
procedure TControlScrollBar.SetVisible(const AValue: Boolean);
begin
if FVisible = AValue then
Exit;
FVisible := AValue;
ControlUpdateScrollBars;
end;
procedure TControlScrollBar.SetSmooth(const AValue: Boolean);
begin
// only used by the ScrollHandler procedure
FSmooth := AValue;
end;
procedure TControlScrollBar.UpdateScrollBar;
var
ScrollInfo: TScrollInfo;
NewVisible: Boolean;
begin
if HandleAllocated and (FControl is TScrollingWinControl) then
begin
FillChar(ScrollInfo, SizeOf(ScrollInfo), 0);
ScrollInfo.cbSize := SizeOf(ScrollInfo);
ScrollInfo.fMask := SIF_ALL;
ScrollInfo.nMin := 0;
ScrollInfo.nMax := FRange;
ScrollInfo.nPos := FPosition;
ScrollInfo.nPage := FPage;
ScrollInfo.nTrackPos := FPosition;
NewVisible := ScrollBarShouldBeVisible;
if (not FOldScrollInfoValid) or (not CompareMem(@ScrollInfo, @FOldScrollInfo, SizeOf(TScrollInfo))) then
begin
FOldScrollInfo := ScrollInfo;
SetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo, NewVisible);
// update policy too
ScrollInfo.fMask := SIF_UPDATEPOLICY;
ScrollInfo.nTrackPos := TrackToPolicyMap[FTracking];
SetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo, NewVisible);
ShowScrollBar(ControlHandle, IntfBarKind[Kind], NewVisible);
end
else
if (not FOldScrollInfoValid) or (FOldVisible <> NewVisible) then
ShowScrollBar(ControlHandle, IntfBarKind[Kind], NewVisible);
FOldVisible := NewVisible;
FOldScrollInfoValid := True;
{$IFDEF VerboseScrollingWinControl}
//if DebugCondition then
DebugLn(['TControlScrollBar.UpdateScrollBar ',DbgSName(FControl),' ',DbgSName(Self),' ',dbgs(Kind),' FVisible=',FVisible,' Range=',FRange,' FPosition=',FPosition,' FPage=',FPage,' FAutoRange=',FAutoRange,' ShouldVisible=',NewVisible,' IsVisible=',IsScrollBarVisible]);
{$ENDIF}
end;
SetPosition(FPosition);
if FControl is TScrollingWinControl then
begin
// I am not positive that this is right, but it appeared to be when I
// compared results to Delphi 4
if FSmooth then
FIncrement := Max(low(FIncrement),FPage div 10);
end;
end;
procedure TControlScrollBar.InvalidateScrollInfo;
begin
FOldScrollInfoValid := False;
end;
{$ifdef VerboseScrollingWinControl}
function TControlScrollBar.DebugCondition: Boolean;
begin
Result := (Kind = sbHorizontal);
end;
{$endif}
function TControlScrollBar.GetAutoScroll: boolean;
begin
if FControl is TScrollingWinControl then
Result := TScrollingWinControl(FControl).AutoScroll
else
Result := False;
end;
procedure TControlScrollBar.ScrollHandler(var Message: TLMScroll);
var
NewPos: Longint;
begin
if (csDesigning in FControl.ComponentState) then
exit; //prevent wierdness in IDE.
NewPos := FPosition;
case Message.ScrollCode of
SB_LINEUP:
Dec(NewPos, FIncrement);
SB_LINEDOWN:
Inc(NewPos, FIncrement);
SB_PAGEUP:
Dec(NewPos, FPage);
SB_PAGEDOWN:
Inc(NewPos, FPage);
SB_THUMBPOSITION:
NewPos := Message.Pos;
SB_THUMBTRACK:
if Tracking then
NewPos := Message.Pos;
SB_TOP:
NewPos := 0;
SB_BOTTOM:
NewPos := Range;
else
Exit;
end;
{$IFDEF VerboseScrollingWinControl}
if DebugCondition then
DebugLn(['TControlScrollBar.ScrollHandler Message.ScrollCode=',Message.ScrollCode,' FPosition=',FPosition,' NewPos=',NewPos,' Range=',Range]);
{$ENDIF}
if NewPos < 0 then
NewPos := 0;
if NewPos > FRange then
NewPos := FRange;
if NewPos<>FPosition then
begin
InvalidateScrollInfo;
SetPosition(NewPos);
Message.Result := 1;
end;
end;
procedure TControlScrollBar.ControlUpdateScrollBars;
begin
if ([csLoading, csDestroying] * FControl.ComponentState <> []) then
Exit;
if not HandleAllocated then
Exit;
if FControl is TScrollingWinControl then
TScrollingWinControl(FControl).UpdateScrollBars;
end;
procedure TControlScrollBar.InternalSetRange(const AValue: Integer);
var
NewRange: Integer;
begin
NewRange := AValue;
if NewRange < 0 then
NewRange := 0;
if FRange = NewRange then
Exit;
FRange := NewRange;
{$IFDEF VerboseScrollingWinControl}
//if DebugCondition then
DebugLn(['TControlScrollBar.InternalSetRange ',dbgs(Kind),' ',Self,' FRange=',FRange]);
{$ENDIF}
ControlUpdateScrollBars;
end;
function TControlScrollBar.HandleAllocated: boolean;
begin
Result := (FControl <> nil) and FControl.HandleAllocated;
end;
function TControlScrollBar.IsRangeStored: boolean;
begin
Result := not GetAutoScroll;
end;
procedure TControlScrollBar.SetTracking(const AValue: Boolean);
var
ScrollInfo: TScrollInfo;
begin
if FTracking = AValue then Exit;
FTracking := AValue;
if not HandleAllocated then
Exit;
FillChar(ScrollInfo,SizeOf(ScrollInfo), 0);
ScrollInfo.cbSize := SizeOf(ScrollInfo);
ScrollInfo.fMask := SIF_UPDATEPOLICY;
ScrollInfo.nTrackPos := TrackToPolicyMap[FTracking];
SetScrollInfo(ControlHandle, IntfBarKind[Kind], ScrollInfo, ScrollBarShouldBeVisible);
end;
function TControlScrollBar.ControlHandle: HWnd;
begin
Result := FControl.Handle;
end;
function TControlScrollBar.ControlSize: integer;
begin
if Kind = sbVertical then
Result := FControl.Width
else
Result := FControl.Height;
end;
constructor TControlScrollBar.Create(AControl: TWinControl;
AKind: TScrollBarKind);
begin
inherited Create;
FControl := AControl;
FKind := AKind;
FPage := 80;
FIncrement := 8;
FPosition := 0;
FRange := 0;
FSmooth := False;
FTracking := False;
FVisible := True;
end;
procedure TControlScrollBar.Assign(Source: TPersistent);
begin
if Source is TControlScrollBar then
begin
with Source as TControlScrollBar do
begin
Self.Increment := Increment;
Self.Position := Position;
Self.Range := Range;
Self.Visible := Visible;
Self.Smooth := Smooth;
// page and size depend on FControl, so no need to copy them
end;
end
else
inherited Assign(Source);
end;
function TControlScrollBar.IsScrollBarVisible: Boolean;
begin
Result := FVisible;
if HandleAllocated then
Result := GetScrollbarVisible(ControlHandle, IntfBarKind[Kind]);
end;
function TControlScrollBar.ScrollPos: Integer;
begin
if Visible then
Result := Position
else
Result := 0;
end;
function TControlScrollBar.GetOtherScrollBar: TControlScrollBar;
begin
if Kind = sbVertical then
Result := GetHorzScrollBar
else
Result := GetVertSCrollbar;
end;
function TControlScrollBar.ClientSize: integer;
begin
if Kind = sbVertical then
Result := FControl.ClientWidth
else
Result := FControl.ClientHeight;
end;
function TControlScrollBar.ClientSizeWithBar: integer;
begin
Result := ClientSize;
if not IsScrollBarVisible then
Result := Max(0,Result-GetSize-GetSystemMetrics(SM_SWSCROLLBARSPACING));
end;
function TControlScrollBar.ClientSizeWithoutBar: integer;
begin
Result:=ClientSize;
if IsScrollBarVisible then
Result := Min(ControlSize, Result+GetSize+GetSystemMetrics(SM_SWSCROLLBARSPACING));
end;
function TControlScrollBar.GetHorzScrollBar: TControlScrollBar;
begin
if FControl is TScrollingWinControl then
Result := TScrollingWinControl(FControl).HorzScrollBar
else
Result := nil;
end;
function TControlScrollBar.GetVertScrollBar: TControlScrollBar;
begin
if FControl is TScrollingWinControl then
Result := TScrollingWinControl(FControl).VertScrollBar
else
Result := nil;
end;
function TControlScrollBar.ScrollBarShouldBeVisible: Boolean;
begin
Result := FVisible and (FRange > FPage);
end;
// included by forms.pp
|