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 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
|
{
*****************************************************************************
* WSControls.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.
*****************************************************************************
}
unit Gtk3WSControls;
{$mode objfpc}{$H+}
{$I gtk3defines.inc}
interface
////////////////////////////////////////////////////
// I M P O R T A N T
////////////////////////////////////////////////////
// 1) Only class methods allowed
// 2) Class methods have to be published and virtual
// 3) To get as little as posible circles, the uses
// clause should contain only those LCL units
// needed for registration. WSxxx units are OK
// 4) To improve speed, register only classes in the
// initialization section which actually
// implement something
// 5) To enable your XXX widgetset units, look at
// the uses clause of the XXXintf.pp
////////////////////////////////////////////////////
uses
Classes,
////////////////////////////////////////////////////
// To get as little as posible circles,
// uncomment only when needed for registration
////////////////////////////////////////////////////
Controls, Graphics, LCLType, Types, LCLProc,
////////////////////////////////////////////////////
WSLCLClasses, WSControls, WSProc, LazGtk3, LazGdk3, LazGlib2, LazGObject2,
gtk3widgets, LazPango1,
{ TODO: remove when CreateHandle/Component code moved }
InterfaceBase;
type
{ TGtk3WSDragImageListResolution }
TGtk3WSDragImageListResolution = class(TWSDragImageListResolution)
published
class function BeginDrag(const ADragImageList: TDragImageListResolution; Window: HWND; AIndex, X, Y: Integer): Boolean; override;
class function DragMove(const ADragImageList: TDragImageListResolution; X, Y: Integer): Boolean; override;
class procedure EndDrag(const ADragImageList: TDragImageListResolution); override;
class function HideDragImage(const ADragImageList: TDragImageListResolution;
ALockedWindow: HWND; DoUnLock: Boolean): Boolean; override;
class function ShowDragImage(const ADragImageList: TDragImageListResolution;
ALockedWindow: HWND; X, Y: Integer; DoLock: Boolean): Boolean; override;
end;
TGtk3WSDragImageListResolutionClass = class of TGtk3WSDragImageListResolution;
{ TGtk3WSControl }
TGtk3WSControl = class(TWSControl)
end;
TGtk3WSControlClass = class of TGtk3WSControl;
{ TGtk3WSWinControl }
TGtk3WSWinControl = class(TWSWinControl)
published
class procedure AddControl(const AControl: TControl); override;
class function CanFocus(const AWincontrol: TWinControl): Boolean; override;
class function GetClientBounds(const AWincontrol: TWinControl; var ARect: TRect): Boolean; override;
class function GetClientRect(const AWincontrol: TWinControl; var ARect: TRect): Boolean; override;
class procedure GetPreferredSize(const AWinControl: TWinControl; var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean); override;
class function GetDefaultClientRect(const AWinControl: TWinControl; const aLeft, aTop, aWidth, aHeight: integer; var aClientRect: TRect): boolean; override;
class function GetDesignInteractive(const AWinControl: TWinControl; AClientPos: TPoint): Boolean; override;
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
class function GetTextLen(const AWinControl: TWinControl; var ALength: Integer): Boolean; override;
class procedure SetBiDiMode(const AWinControl: TWinControl; UseRightToLeftAlign, UseRightToLeftReading, UseRightToLeftScrollBar : Boolean); override;
class procedure SetBorderStyle(const AWinControl: TWinControl; const ABorderStyle: TBorderStyle); override;
class procedure SetBounds(const AWinControl: TWinControl; const ALeft, ATop, AWidth, AHeight: Integer); override;
class procedure SetColor(const AWinControl: TWinControl); override;
class procedure SetChildZPosition(const AWinControl, AChild: TWinControl; const AOldPos, ANewPos: Integer; const AChildren: TFPList); override;
class procedure SetFont(const AWinControl: TWinControl; const AFont: TFont); override;
class procedure SetPos(const AWinControl: TWinControl; const ALeft, ATop: Integer); override;
class procedure SetSize(const AWinControl: TWinControl; const AWidth, AHeight: Integer); override;
class procedure SetText(const AWinControl: TWinControl; const AText: String); override;
class procedure SetCursor(const AWinControl: TWinControl; const ACursor: HCursor); override;
class procedure SetShape(const AWinControl: TWinControl; const AShape: HBITMAP); override;
{ TODO: move AdaptBounds: it is only used in winapi interfaces }
class procedure AdaptBounds(const AWinControl: TWinControl;
var Left, Top, Width, Height: integer; var SuppressMove: boolean); override;
class procedure ConstraintsChange(const AWinControl: TWinControl); override;
class function CreateHandle(const AWinControl: TWinControl;
const AParams: TCreateParams): TLCLIntfHandle; override;
class procedure DestroyHandle(const AWinControl: TWinControl); override;
class procedure DefaultWndHandler(const AWinControl: TWinControl; var AMessage); override;
class procedure Invalidate(const AWinControl: TWinControl); override;
class procedure PaintTo(const AWinControl: TWinControl; ADC: HDC; X, Y: Integer); override;
class procedure ShowHide(const AWinControl: TWinControl); override; //TODO: rename to SetVisible(control, visible)
class procedure ScrollBy(const AWinControl: TWinControl; DeltaX, DeltaY: integer); override;
end;
TGtk3WSWinControlClass = class of TGtk3WSWinControl;
{ TGtk3WSCustomControl }
TGtk3WSCustomControl = class(TGtk3WSWinControl)
published
class function CreateHandle(const AWinControl: TWinControl;
const AParams: TCreateParams): TLCLIntfHandle; override;
end;
implementation
uses SysUtils, gtk3objects, gtk3procs;
{ TGtk3WSWinControl }
class procedure TGtk3WSWinControl.AdaptBounds(const AWinControl: TWinControl;
var Left, Top, Width, Height: integer; var SuppressMove: boolean);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.AdaptBounds');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.ConstraintsChange(const AWinControl: TWinControl);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.ConstraintsChange');
{$ENDIF}
end;
class function TGtk3WSWinControl.CreateHandle(const AWinControl: TWinControl;
const AParams: TCreateParams): TLCLIntfHandle;
begin
// For now default to the old creation routines
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.CreateHandle');
{$ENDIF}
Result := 0;
end;
class procedure TGtk3WSWinControl.DestroyHandle(const AWinControl: TWinControl);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.DestroyHandle ',dbgsName(AWinControl),' handle ',dbgs(AWinControl.HandleAllocated));
{$ENDIF}
if AWinControl.HandleAllocated then
begin
TGtk3Widget(AWinControl.Handle).Free;
end;
end;
class procedure TGtk3WSWinControl.DefaultWndHandler(const AWinControl: TWinControl; var AMessage);
begin
// WidgetSet.CallDefaultWndHandler(AWinControl, AMessage);
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.DefaultWndHandler');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.AddControl(const AControl: TControl);
var
AHandle: TGtk3Widget;
AWidget: PGtkWidget;
AParent: TWinControl;
AChild: PGtkWidget;
begin
if not WSCheckHandleAllocated(TWinControl(AControl), 'AddControl') then
Exit;
AParent := TWinControl(AControl).Parent;
AHandle := TGtk3Widget(AParent.Handle);
AWidget := AHandle.Widget;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE) OR DEFINED(GTK3DEBUGREPARENTING)}
DebugLn('TGtk3WSWinControl.AddControl ',dbgsName(AControl),' LEFT=',dbgs(AControl.Left),' TOP=',dbgs(AControl.Top),
' PARENT=',dbgsName(AParent));
{$ENDIF}
// better use this, since it sets position imediatelly if its child of container
// so, reduce flickering.
TGtk3Widget(TWinControl(AControl).Handle).SetParent(AHandle, AControl.Left, AControl.Top);
end;
class function TGtk3WSWinControl.CanFocus(const AWincontrol: TWinControl): Boolean;
begin
// lets consider that by deafult all WinControls can be focused
Result := False;
if AWinControl.HandleAllocated then
Result := TGtk3Widget(AWinControl.Handle).CanFocus;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGFOCUS)}
DebugLn('TGtk3WSWinControl.CanFocus ',dbgsName(AWinControl),' result ',dbgs(Result));
{$ENDIF}
end;
class function TGtk3WSWinControl.GetClientBounds(const AWincontrol: TWinControl; var ARect: TRect): Boolean;
begin
// for now default to the WinAPI version
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('TGtk3WSWinControl.GetClientBounds ',dbgsName(AWinControl));
{$ENDIF}
Result := False;
if AWinControl.HandleAllocated then
begin
ARect := TGtk3Widget(AWinControl.Handle).getClientBounds;
Result := True;
end else
ARect := Rect(0, 0, 0, 0);
//TODO: USE winapi version
// Gtk3WidgetSet.GetClientBounds(AWincontrol.Handle, ARect);
end;
class function TGtk3WSWinControl.GetClientRect(const AWincontrol: TWinControl; var ARect: TRect): Boolean;
begin
// for now default to the WinAPI version
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('TGtk3WSWinControl.GetClientRect ',dbgsName(AWinControl));
{$ENDIF}
//TODO: USE winapi version
Result := False;
if AWinControl.HandleAllocated then
begin
ARect := TGtk3Widget(AWinControl.Handle).getClientRect;
Result := True;
end else
ARect := Rect(0, 0, 0, 0);
// Result := Gtk3WidgetSet.GetClientRect(AWincontrol.Handle, ARect);
end;
{------------------------------------------------------------------------------
Function: TGtk3WSWinControl.GetText
Params: Sender: The control to retrieve the text from
Returns: the requested text
Retrieves the text from a control.
------------------------------------------------------------------------------}
class function TGtk3WSWinControl.GetText(const AWinControl: TWinControl; var AText: String): Boolean;
begin
Result := False;
if not WSCheckHandleAllocated(AWinControl, 'GetText') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.GetText ',dbgsName(AWinControl));
{$ENDIF}
AText := TGtk3Widget(AWinControl.Handle).Text;
Result := True;
end;
class function TGtk3WSWinControl.GetTextLen(const AWinControl: TWinControl; var ALength: Integer): Boolean;
var
S: String;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.GetTextLen');
{$ENDIF}
Result := GetText(AWinControl, S);
if Result
then ALength := Length(S);
end;
class procedure TGtk3WSWinControl.SetBiDiMode(const AWinControl: TWinControl; UseRightToLeftAlign, UseRightToLeftReading, UseRightToLeftScrollBar : Boolean);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetBiDiMode');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.GetPreferredSize(const AWinControl: TWinControl;
var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.GetPreferredSize');
{$ENDIF}
PreferredWidth := 0;
PreferredHeight := 0;
end;
class function TGtk3WSWinControl.GetDefaultClientRect(
const AWinControl: TWinControl; const aLeft, aTop, aWidth, aHeight: integer;
var aClientRect: TRect): boolean;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.GetDefaultClientRect ',dbgsName(AWinControl),' handle=',dbgs(AWinControl.HandleAllocated));
{$ENDIF}
Result:=false;
end;
class function TGtk3WSWinControl.GetDesignInteractive(
const AWinControl: TWinControl; AClientPos: TPoint): Boolean;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.GetDesignInteractive');
{$ENDIF}
Result := False;
end;
class procedure TGtk3WSWinControl.Invalidate(const AWinControl: TWinControl);
begin
if not WSCheckHandleAllocated(AWinControl, 'Invalidate') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.Invalidate');
{$ENDIF}
TGtk3Widget(AWinControl.Handle).Update(nil);
end;
class procedure TGtk3WSWinControl.PaintTo(const AWinControl: TWinControl; ADC: HDC;
X, Y: Integer);
begin
if not WSCheckHandleAllocated(AWincontrol, 'PaintTo') or (ADC = 0) then
Exit;
{.$IFDEF GTK3DEBUGCORE}
DebugLn('WARNING: TGtk3WSWinControl.PaintTo not implemented');
{.$ENDIF}
end;
class procedure TGtk3WSWinControl.SetBounds(const AWinControl: TWinControl; const ALeft, ATop, AWidth, AHeight: Integer);
var
AWidget: PGtkWidget;
ARect: TGdkRectangle;
Alloc: TGtkAllocation;
AMinSize, ANaturalSize: gint;
begin
if not WSCheckHandleAllocated(AWinControl, 'SetBounds') then
Exit;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('TGtk3WSWinControl.SetBounds ',dbgsName(AWinControl),Format(' ALeft %d ATop %d AWidth %d AHeight %d',[ALeft, ATop, AWidth, AHeight]));
{$ENDIF}
AWidget := TGtk3Widget(AWinControl.Handle).Widget;
ARect.x := ALeft;
ARect.y := ATop;
ARect.width := AWidth;
ARect.Height := AHeight;
with Alloc do
begin
x := ALeft;
y := ATop;
width := AWidth;
height := AHeight;
end;
TGtk3Widget(AWinControl.Handle).BeginUpdate;
try
{fixes gtk3 assertion}
AWidget^.get_preferred_width(@AMinSize, @ANaturalSize);
AWidget^.get_preferred_height(@AMinSize, @ANaturalSize);
AWidget^.size_allocate(@ARect);
AWidget^.set_size_request(AWidth, AHeight);
if AWinControl.Parent <> nil then
TGtk3Widget(AWinControl.Handle).move(ALeft, ATop);
// we must trigger get_preferred_width after changing size
if wtProgressBar in TGtk3Widget(AWinControl.Handle).WidgetType then
TGtk3Widget(AWinControl.Handle).getContainerWidget^.set_size_request(AWidth, AHeight);
finally
TGtk3Widget(AWinControl.Handle).EndUpdate;
end;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('TGtk3WSWinControl.SetBounds ',dbgsName(AWinControl),' isRealized=',dbgs(AWidget^.get_realized),
' IsMapped=',dbgs(AWidget^.get_mapped));
{$ENDIF}
end;
class procedure TGtk3WSWinControl.SetBorderStyle(const AWinControl: TWinControl; const ABorderStyle: TBorderStyle);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetBorderStyle') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetBorderStyle');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.SetChildZPosition(
const AWinControl, AChild: TWinControl; const AOldPos, ANewPos: Integer;
const AChildren: TFPList);
var
Reorder: TFPList;
n: Integer;
Child: TWinControl;
begin
if not WSCheckHandleAllocated(AWinControl, 'SetChildZPosition') then
Exit;
if not WSCheckHandleAllocated(AChild, 'SetChildZPosition (child)') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetChildZPosition');
{$ENDIF}
if (ANewPos <= 0) or (ANewPos >= AChildren.Count - 1) then
begin
// simple
if ANewPos <= 0 then // bottom
TGtk3Widget(AChild.Handle).lowerWidget
else
TGtk3Widget(AChild.Handle).raiseWidget;
end else
begin
if (ANewPos >= 0) and (ANewPos < AChildren.Count -1) then
begin
Reorder := TFPList.Create;
for n := AChildren.Count - 1 downto 0 do
Reorder.Add(AChildren[n]);
Child := TWinControl(Reorder[ANewPos + 1]);
if Child.HandleAllocated then
TGtk3Widget(AChild.Handle).stackUnder(TGtk3Widget(Child.Handle).Widget)
else
TGtk3Widget(AChild.Handle).lowerWidget;
Reorder.Free;
end;
end;
end;
class procedure TGtk3WSWinControl.SetColor(const AWinControl: TWinControl);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetColor') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetColor ',dbgsName(AWinControl));
{$ENDIF}
TGtk3Widget(AWinControl.Handle).Color := AWinControl.Color;
end;
class procedure TGtk3WSWinControl.SetCursor(const AWinControl: TWinControl; const ACursor: HCursor);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetCursor') then
Exit;
{$IFDEF GTK3DEBUGNOTIMPLEMENTED}
// quiet for now
// DebugLn('TGtk3WSWinControl.SetCursor not implemented');
{$ENDIF}
TGtk3Widget(AWinControl.Handle).SetCursor(ACursor);
end;
class procedure TGtk3WSWinControl.SetShape(const AWinControl: TWinControl;
const AShape: HBITMAP);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetShape') then
Exit;
{$IFDEF GTK3DEBUGNOTIMPLEMENTED}
DebugLn('TGtk3WSWinControl.SetShape not implemented');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.SetFont(const AWinControl: TWinControl; const AFont: TFont);
var
AWidget: TGtk3Widget;
AGtkFont: PPangoFontDescription;
APangoStyle: TPangoStyle;
begin
if not WSCheckHandleAllocated(AWinControl, 'SetFont') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetFont ',dbgsName(AWinControl),' font.Size=',dbgs(AFont.Size),' font.Height=',dbgs(AFont.Height),' ASize=',dbgs(ASize),
' pxPerInch ',dbgs(AFont.PixelsPerInch));
{$ENDIF}
AWidget := TGtk3Widget(AWinControl.Handle);
if IsFontNameDefault(AFont.Name) then
begin
AGtkFont := TGtk3Widget(AWinControl.Handle).Font;
if AFont.Size <> 0 then
pango_font_description_set_absolute_size(AGtkFont, Abs(AFont.Size) * PANGO_SCALE);
end else
begin
AGtkFont := pango_font_description_from_string(PgChar(AFont.Name));
pango_font_description_set_family(AGtkFont, PgChar(AFont.Name));
if AFont.Size <> 0 then
pango_font_description_set_size(AGtkFont, Abs(AFont.Size) * PANGO_SCALE);
end;
if fsItalic in AFont.Style then
APangoStyle := PANGO_STYLE_ITALIC
else
APangoStyle := PANGO_STYLE_NORMAL;
pango_font_description_set_style(AGtkFont, APangoStyle);
if fsBold in AFont.Style then
pango_font_description_set_weight(AGtkFont, PANGO_WEIGHT_BOLD);
AWidget.Font := AGtkFont;
AWidget.FontColor := AFont.Color;
end;
class procedure TGtk3WSWinControl.SetPos(const AWinControl: TWinControl; const ALeft, ATop: Integer);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetPos') then
Exit;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('WARNING: TGtk3WSWinControl.SetPos is not implemented. *****');
{$ENDIF}
end;
class procedure TGtk3WSWinControl.SetSize(const AWinControl: TWinControl; const AWidth, AHeight: Integer);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetSize') then
Exit;
{$IF DEFINED(GTK3DEBUGCORE) OR DEFINED(GTK3DEBUGSIZE)}
DebugLn('WARNING: TGtk3WSWinControl.SetSize is not implemented. *****');
{$ENDIF}
end;
{------------------------------------------------------------------------------
Method: TGtk3WSWinControl.SetText
Params: AWinControl - the calling object
AText - String to be set as label/text for a control
Returns: Nothing
Sets the label text on a widget
------------------------------------------------------------------------------}
class procedure TGtk3WSWinControl.SetText(const AWinControl: TWinControl; const AText: String);
begin
if not WSCheckHandleAllocated(AWinControl, 'SetText') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.SetText ',dbgsName(AWinControl));
{$ENDIF}
TGtk3Widget(AWinControl.Handle).Text := AText;
end;
class procedure TGtk3WSWinControl.ShowHide(const AWinControl: TWinControl);
begin
if not WSCheckHandleAllocated(AWinControl, 'ShowHide') then
Exit;
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WSWinControl.ShowHide ',dbgsName(AWinControl));
{$ENDIF}
TGtk3Widget(AWinControl.Handle).Visible := AWinControl.HandleObjectShouldBeVisible;
if TGtk3Widget(AWinControl.Handle).Visible then
begin
TGtk3Widget(AWinControl.Handle).ShowAll;
// imediatelly realize (create widget handles), so we'll get updated bounds
// and everything just on time.
if not (wtScrollingWin in TGtk3Widget(AWinControl.Handle).WidgetType) then
PGtkWidget(TGtk3Widget(AWinControl.Handle).GetContainerWidget)^.realize;
end;
end;
class procedure TGtk3WSWinControl.ScrollBy(const AWinControl: TWinControl;
DeltaX, DeltaY: integer);
var
Scrolled: PGtkScrolledWindow;
Adjustment: PGtkAdjustment;
h, v: Double;
NewPos: Double;
begin
{.$IFDEF GTK3DEBUGCORE}
// DebugLn('TGtk3WSWinControl.ScrollBy not implemented ');
{.$ENDIF}
if not AWinControl.HandleAllocated then exit;
Scrolled := TGtk3ScrollingWinControl(AWinControl.Handle).GetScrolledWindow;
if not Gtk3IsScrolledWindow(Scrolled) then
exit;
{$note below is old gtk2 implementation}
TGtk3ScrollingWinControl(AWinControl.Handle).ScrollX := TGtk3ScrollingWinControl(AWinControl.Handle).ScrollX + DeltaX;
TGtk3ScrollingWinControl(AWinControl.Handle).ScrollY := TGtk3ScrollingWinControl(AWinControl.Handle).ScrollY + DeltaY;
//TODO: change this part like in Qt using ScrollX and ScrollY variables
//GtkAdjustment calculation isn't good here (can go below 0 or over max)
// DebugLn('TGtk3WSWinControl.ScrollBy DeltaX=',dbgs(DeltaX),' DeltaY=',dbgs(DeltaY));
exit;
Adjustment := gtk_scrolled_window_get_hadjustment(Scrolled);
if Adjustment <> nil then
begin
h := gtk_adjustment_get_value(Adjustment);
NewPos := Adjustment^.upper - Adjustment^.page_size;
if h - DeltaX <= NewPos then
NewPos := h - DeltaX;
if NewPos < 0 then
NewPos := 0;
gtk_adjustment_set_value(Adjustment, NewPos);
end;
Adjustment := gtk_scrolled_window_get_vadjustment(Scrolled);
if Adjustment <> nil then
begin
v := gtk_adjustment_get_value(Adjustment);
NewPos := Adjustment^.upper - Adjustment^.page_size;
if v - DeltaY <= NewPos then
NewPos := v - DeltaY;
if NewPos < 0 then
NewPos := 0;
// writeln('OldValue ',dbgs(V),' NewValue ',dbgs(NewPos),' upper=',dbgs(Adjustment^.upper - Adjustment^.page_size));
gtk_adjustment_set_value(Adjustment, NewPos);
end;
AWinControl.Invalidate;
end;
{ TGtk3WSCustomControl }
class function TGtk3WSCustomControl.CreateHandle(
const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle;
var
Gtk3CustomControl: TGtk3CustomControl;
begin
Gtk3CustomControl := TGtk3CustomControl.Create(AWinControl, AParams);
Result := TLCLIntfHandle(Gtk3CustomControl);
end;
{ TGtk3WSDragImageListResolution }
class function TGtk3WSDragImageListResolution.BeginDrag(const ADragImageList: TDragImageListResolution;
Window: HWND; AIndex, X, Y: Integer): Boolean;
begin
Result := False;
end;
class function TGtk3WSDragImageListResolution.DragMove(const ADragImageList: TDragImageListResolution;
X, Y: Integer): Boolean;
begin
Result := False;
end;
class procedure TGtk3WSDragImageListResolution.EndDrag(const ADragImageList: TDragImageListResolution);
begin
end;
class function TGtk3WSDragImageListResolution.HideDragImage(const ADragImageList: TDragImageListResolution;
ALockedWindow: HWND; DoUnLock: Boolean): Boolean;
begin
Result := False;
end;
class function TGtk3WSDragImageListResolution.ShowDragImage(const ADragImageList: TDragImageListResolution;
ALockedWindow: HWND; X, Y: Integer; DoLock: Boolean): Boolean;
begin
Result := False;
end;
end.
|