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 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
|
{%MainUnit gtk3int.pas}
{ TGtk3WidgetSet }
var
Gtk3MPF: TGPollFunc;
function Gtk3PollFunction(ufds:PGPollFD; nfsd:guint; timeout:gint):gint; cdecl;
begin
Result := nfsd;
if TimeOut = -1 then
Gtk3WidgetSet.FMainPoll := ufds
else
Gtk3WidgetSet.FMainPoll := nil;
if Gtk3MPF <> nil then
begin
// writeln('Gtk3PollFunction timeout ',TimeOut,' nfsd ',nfsd,' ufds.revents ',ufds^.revents);
Gtk3MPF(ufds, nfsd, timeout);
end;
end;
{hook into gtk3 main event loop, used for testing purposes only atm.}
procedure Gtk3MainEventLoop(AEvent: PGdkEvent; AData: gPointer); cdecl;
var
AList: PGList;
APt: TPoint;
AWindow: HWND;
AComboBox: TGtk3ComboBox;
AWidget: gpointer;
AContext: Pcairo_t;
x: Double;
y: Double;
x2: Double;
y2: Double;
ARegion: Pcairo_region_t;
ARect: Tcairo_rectangle_int_t;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('** TGtk3WidgetSet.Gtk3MainEventLoop **');
{$ENDIF}
// even this does not work correct
(*
if (AEvent^.type_ = GDK_CONFIGURE) then
begin
AWidget := g_object_get_data(AEvent^.configure.window,'lclwidget');
if AWidget <> nil then
begin
if wtWindow in TGtk3Widget(AWidget).WidgetType then
begin
TGtk3Window(AWidget).Gtk3ActivateWindow(AEvent);
DebugLn('** WindowState event ',dbgsName(TGtk3Widget(AWidget).LCLObject),' windowState=',dbgs(TGtk3Window(AWidget).GetWindowState));
end else
DebugLn('** WindowState event not wtWindow ',dbgsName(TGtk3Widget(AWidget).LCLObject));
end else
DebugLn('** WindowState event UNKNOWN WINDOW !!!');
end;
*)
(*
if (AEvent^.type_ = GDK_EXPOSE) then
begin
AWidget := g_object_get_data(AEvent^.expose.window,'lclwidget');
if (AWidget <> nil) then
begin
ARegion := gdk_window_get_clip_region(AEvent^.expose.window);
cairo_region_get_extents(ARegion, @ARect);
DebugLn('Gtk3MainEventLoop*** EXPOSED ',dbgsName(TGtk3Widget(AWidget).LCLObject),
' ownswindow ',dbgs(TGtk3Widget(AWidget).GetContainerWidget^.get_has_window),
' window ',dbgHex(PtrUInt(AEvent^.expose.window)),
' extents ',Format('x %d y %d x2 %d y2 %d',[ARect.x, ARect.y, ARect.width, ARect.height]));
(* do not use this otherwise painting is corrupted !!!! testing purposes only
AContext := gdk_cairo_create(AEvent^.expose.window);
cairo_clip_extents(AContext, @x, @y, @x2, @y2);
DebugLn('Gtk3MainEventLoop*** EXPOSED ',dbgsName(TGtk3Widget(AWidget).LCLObject),
' window ',dbgHex(PtrUInt(AEvent^.expose.window)),
' extents ',Format('x %2.2n y %2.2n x2 %2.2n y2 %2.2n',[x, y, x2, y2]));
cairo_surface_flush(cairo_get_target(AContext));
cairo_surface_mark_dirty(cairo_get_target(AContext));
cairo_destroy(AContext);
*)
end;
end;
*)
gtk_main_do_event(AEvent);
end;
procedure TGtk3WidgetSet.Gtk3Create;
var
AGtkThread: PGThread;
AId: String;
begin
g_type_init;
gtk_init(@argc, @argv);
AGtkThread := g_thread_self();
AId := 'org.lcl.thread_' + dbgHex(PtrUInt(AGtkThread));
FGtk3Application := TGtkApplication.new(PgChar(AId), G_APPLICATION_NON_UNIQUE);
// FGtk3Application^.set_application_id(PgChar(AId));
FGtk3Application^.register(nil, nil);
GTK3WidgetSet := Self;
end;
procedure TGtk3WidgetSet.Gtk3Destroy;
begin
Gtk3MPF := nil;
GTK3WidgetSet := nil;
WakeMainThread := nil;
if Assigned(FAppIcon) then
FAppIcon^.unref;
FAppIcon := nil;
end;
procedure TGtk3WidgetSet.SetDefaultAppFontName;
var
AValue: TGValue;
begin
FillByte(AValue, SizeOf(AValue), 0);
AValue.init(G_TYPE_STRING);
g_object_get_property(gtk_settings_get_default, 'gtk-font-name', @AValue);
FDefaultAppFontName := AValue.get_string;
AValue.unset;
end;
procedure TGtk3WidgetSet.InitSysColorBrushes;
var
i: integer;
LogBrush: TLogBrush;
begin
LogBrush.lbHatch := 0;
FillChar(LogBrush, SizeOf(TLogBrush), 0);
for i := Low(FSysColorBrushes) to High(FSysColorBrushes) do
begin
LogBrush.lbColor := GetSysColor(i);
FSysColorBrushes[i] := CreateBrushIndirect(LogBrush);
TGtk3Brush(FSysColorBrushes[i]).Shared := True;
end;
end;
procedure TGtk3WidgetSet.FreeSysColorBrushes;
procedure DeleteAndNilObject(var h: HGDIOBJ);
begin
if h <> 0 then
TGtk3Brush(h).Shared := False;
DeleteObject(h);
h := 0;
end;
var
i: Integer;
begin
for i := Low(FSysColorBrushes) to High(FSysColorBrushes) do
if FSysColorBrushes[i] <> HBRUSH(-1) then
DeleteAndNilObject(FSysColorBrushes[i]);
end;
{$IFNDEF UNIX}
procedure TGtk3WidgetSet.DoWakeMainThread(Sender: TObject);
begin
g_main_context_wakeup(g_main_context_default);
CheckSynchronize;
end;
{$ENDIF}
function TGtk3WidgetSet.CreateDCForWidget(AWidget: PGtkWidget;
AWindow: PGdkWindow; cr: Pcairo_t): HDC;
begin
if AWindow <> nil then
begin
Result := HDC(TGtk3DeviceContext.Create(AWindow, False))
end else
begin
if cr <> nil then
Result := HDC(TGtk3DeviceContext.CreateFromCairo(AWidget, Cr))
else
Result := HDC(TGtk3DeviceContext.Create(AWidget, False));
end;
TGtk3DeviceContext(Result).CanRelease := True;
end;
procedure TGtk3WidgetSet.AddWindow(AWindow: PGtkWindow);
var
AList: PGList;
begin
if Assigned(FGtk3Application) then
FGtk3Application^.add_window(AWindow);
end;
{$IFDEF UNIX}
var
threadsync_pipein, threadsync_pipeout: cint;
threadsync_giochannel: pgiochannel;
childsig_pending: boolean;
procedure ChildEventHandler({%H-}sig: longint; {%H-}siginfo: psiginfo;
{%H-}sigcontext: psigcontext); cdecl;
begin
childsig_pending := true;
WakeMainThread(nil);
end;
procedure InstallSignalHandler;
var
child_action: sigactionrec;
begin
child_action.sa_handler := @ChildEventHandler;
fpsigemptyset(child_action.sa_mask);
child_action.sa_flags := 0;
fpsigaction(SIGCHLD, @child_action, nil);
end;
function threadsync_iocallback({%H-}source: PGIOChannel; {%H-}condition: TGIOCondition;
data: gpointer): gboolean; cdecl;
var
thrashspace: array[1..1024] of byte;
begin
// read the sent bytes
fpread(threadsync_pipein, {%H-}thrashspace[1], 1);
Result := true;
// one of children signaled ?
if childsig_pending then
begin
childsig_pending := false;
TGtk3WidgetSet(data).ProcessChildSignal;
end;
// execute the to-be synchronized method
if IsMultiThread then
CheckSynchronize;
end;
procedure TGtk3WidgetSet.InitSynchronizeSupport;
begin
WakeMainThread := @PrepareSynchronize;
assignpipe(threadsync_pipein, threadsync_pipeout);
threadsync_giochannel := g_io_channel_unix_new(threadsync_pipein);
g_io_add_watch(threadsync_giochannel, G_IO_IN, @threadsync_iocallback, Self);
end;
procedure TGtk3WidgetSet.ProcessChildSignal;
var
pid: tpid;
reason: TChildExitReason;
status: integer;
info: dword;
handler: PChildSignalEventHandler;
begin
repeat
status:=0;
pid := fpwaitpid(-1, status, WNOHANG);
if pid <= 0 then break;
if wifexited(status) then
begin
reason := cerExit;
info := wexitstatus(status);
end else
if wifsignaled(status) then
begin
reason := cerSignal;
info := wtermsig(status);
end else
continue;
handler := FChildSignalHandlers;
while handler <> nil do
begin
if handler^.pid = pid then
begin
handler^.OnEvent(handler^.UserData, reason, info);
break;
end;
handler := handler^.NextHandler;
end;
until false;
end;
procedure TGtk3WidgetSet.PrepareSynchronize(AObject: TObject);
var
thrash: char;
begin
// wake up GUI thread by sending a byte through the threadsync pipe
thrash:='l';
fpwrite(threadsync_pipeout, thrash, 1);
end;
{$ENDIF}
constructor TGtk3WidgetSet.Create;
var
AValue: TGValue;
i: Integer;
begin
SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide, exOverflow, exUnderflow, exPrecision]);
inherited Create;
FCSSTheme := TStringList.Create;
FThemeName := '';
FTimerData := TFPList.Create;
{$IFDEF GTK3DEBUGCORE}
DebugLn('** TGtk3WidgetSet.Create **');
{$ENDIF}
Gtk3Create;
FMainPoll := nil;
Gtk3MPF := g_main_context_get_poll_func(g_main_context_default);
g_main_context_set_poll_func(g_main_context_default, @Gtk3PollFunction);
{install our event handler, so we can see all events before its delivery to GdkWindows}
gdk_event_handler_set(@Gtk3MainEventLoop, Self, nil);
{$IFDEF UNIX}
InitSynchronizeSupport;
// InstallSignalHandler;
{$ELSE}
WakeMainThread := @DoWakeMainThread;
{$ENDIF}
CharSetEncodingList := TList.Create;
CreateDefaultCharsetEncodings;
FillByte(AValue, SizeOf(AValue), 0);
AValue.init(G_TYPE_BOOLEAN);
AValue.set_boolean(True);
g_object_set_property(gtk_settings_get_default,'gtk-button-images',@AValue);
AValue.unset;
FGlobalCursor := 0;
FAppIcon := nil;
FStockNullBrush := 0;
FStockBlackBrush := 0;
FStockLtGrayBrush := 0;
FStockGrayBrush := 0;
FStockDkGrayBrush := 0;
FStockWhiteBrush := 0;
FStockNullPen := 0;
FStockBlackPen := 0;
FStockWhitePen := 0;
FStockSystemFont := 0;
FStockDefaultDC := 0;
Styles := TStringList.Create;
InitStockItems;
// initialize default app font name
SetDefaultAppFontName;
// InitSysColorBrushes;
for i := Low(FSysColorBrushes) to High(FSysColorBrushes) do
FSysColorBrushes[i] := HBRUSH(-1);
// g_object_set_property(gtk_settings_get_default,'gtk-enable-mnemonics',@AValue);
// g_object_set_property(gtk_settings_get_default,'gtk-auto-mnemonics',@AValue);
end;
destructor TGtk3WidgetSet.Destroy;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('** TGtk3WidgetSet.Destroy **');
{$ENDIF}
ReleaseAllStyles;
Styles.Free;
Styles := nil;
FreeStockItems;
Gtk3Destroy;
FTimerData.Free;
Gtk3DefaultContext.Free;
Gtk3ScreenContext.Free;
if Assigned(CharSetEncodingList) then
begin
ClearCharsetEncodings;
FreeAndNil(CharSetEncodingList);
end;
FreeSysColorBrushes;
FCSSTheme.Free;
inherited Destroy;
end;
function TGtk3WidgetSet.LCLPlatform: TLCLPlatform;
begin
Result := lpGtk3;
end;
procedure TGtk3WidgetSet.AppInit(var ScreenInfo: TScreenInfo);
//var
// AId: String;
var
ScreenDC: HDC;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.AppInit');
{$ENDIF}
ScreenDC := GetDC(0);
try
ScreenInfo.PixelsPerInchX := GetDeviceCaps(ScreenDC, LOGPIXELSX);
ScreenInfo.PixelsPerInchY := GetDeviceCaps(ScreenDC, LOGPIXELSY);
ScreenInfo.ColorDepth := GetDeviceCaps(ScreenDC, BITSPIXEL);
finally
ReleaseDC(0, ScreenDC);
end;
end;
procedure TGtk3WidgetSet.LoadCSSTheme;
var
ACSSProvider: PGtkCssProvider;
ASettings: PGtkSettings;
AValue: TGValue;
begin
ASettings := gtk_settings_get_default;
FillByte(AValue, SizeOf(AValue), 0);
AValue.init(G_TYPE_STRING);
ASettings^.get_property('gtk-theme-name', @AValue);
FThemeName := AValue.get_string;
AValue.unset;
ACSSProvider := gtk_css_provider_get_named(PGChar(FThemeName), '');
if not Assigned(ACSSProvider) then
exit;
{$note from here we must parse css and get eg tooltip background-color and color etc.}
FCSSTheme.Text := gtk_css_provider_to_string(ACSSProvider);
end;
procedure TGtk3WidgetSet.ClearCSSTheme;
begin
FCSSTheme.Clear;
end;
function TGtk3WidgetSet.GetCSSTheme(AList: TStrings): boolean;
begin
Result := FCSSTheme.Count > 0;
if not Result then
LoadCSSTheme;
AList.Assign(FCSSTheme);
end;
function TGtk3WidgetSet.GetThemeName: string;
begin
if FThemeName = '' then
LoadCSSTheme;
Result := FThemeName;
end;
procedure TGtk3WidgetSet.AppRun(const ALoop: TApplicationMainLoop);
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.AppRun');
{$ENDIF}
if Assigned(ALoop) then
ALoop;
end;
procedure TGtk3WidgetSet.AppWaitMessage;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.AppWaitMessage');
{$ENDIF}
gtk_main_iteration;
end;
procedure TGtk3WidgetSet.AppProcessMessages;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.AppProcessMessages');
{$ENDIF}
while gtk_events_pending do
gtk_main_iteration_do(False);
end;
procedure TGtk3WidgetSet.AppTerminate;
var
AList: PGList;
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.AppTerminate ',dbgs(gtk_main_level));
{$ENDIF}
// g_main_context_release(g_main_context_default);
if Assigned(FGtk3Application) then
begin
FGtk3Application^.quit;
AList := FGtk3Application^.get_windows;
if Assigned(AList) then
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.Gtk3Destroy app Windows list ',dbgs(g_list_length(AList)));
{$ENDIF}
g_list_free(AList);
end else
begin
{$IFDEF GTK3DEBUGCORE}
DebugLn('TGtk3WidgetSet.Gtk3Destroy app Windows list is null ');
{$ENDIF}
end;
FGtk3Application^.release;
FGtk3Application^.unref;
FGtk3Application := nil;
end;
if gtk_main_level > 0 then
gtk_main_quit;
end;
procedure TGtk3WidgetSet.AppMinimize;
begin
DebugLn('TGtk3WidgetSet.AppMinimize missing');
end;
procedure TGtk3WidgetSet.AppRestore;
begin
DebugLn('TGtk3WidgetSet.AppRestore missing');
end;
procedure TGtk3WidgetSet.AppBringToFront;
begin
DebugLn('TGtk3WidgetSet.AppBringToFront missing');
end;
procedure TGtk3WidgetSet.AppSetIcon(const Small, Big: HICON);
var
DoDestroyIcon: Boolean;
AIcon: PGdkPixbuf;
begin
// DebugLn('TGtk3WidgetSet.AppSetIcon Small=',dbgHex(Small),' Big=',dbgHex(Big));
DoDestroyIcon := Big = 0;
if DoDestroyIcon then
begin
if Assigned(FAppIcon) then
FAppIcon^.unref;
FAppIcon := nil;
end else
begin
AIcon := TGtk3Image(Big).Handle;
FAppIcon := PGdkPixbuf(AIcon)^.copy;
end;
end;
procedure TGtk3WidgetSet.AppSetTitle(const ATitle: string);
begin
if Assigned(Application.MainForm) and (Application.MainForm.HandleAllocated) then
begin
TGtk3Window(Application.MainForm.Handle).Title := ATitle;
end;
end;
function TGtk3WidgetSet.AppRemoveStayOnTopFlags(const ASystemTopAlso: Boolean
): Boolean;
begin
Result := inherited AppRemoveStayOnTopFlags(ASystemTopAlso);
end;
function TGtk3WidgetSet.AppRestoreStayOnTopFlags(const ASystemTopAlso: Boolean
): Boolean;
begin
Result := inherited AppRestoreStayOnTopFlags(ASystemTopAlso);
end;
function TGtk3WidgetSet.CreateStandardCursor(ACursor: SmallInt): HCURSOR;
var
CursorValue: Integer;
begin
Result := 0;
if ACursor < crLow then Exit;
if ACursor > crHigh then Exit;
case TCursor(ACursor) of
crDefault: CursorValue := GDK_LEFT_PTR;
crArrow: CursorValue := GDK_Arrow;
crCross: CursorValue := GDK_Cross;
crIBeam: CursorValue := GDK_XTerm;
crSizeNESW: CursorValue := GDK_BOTTOM_LEFT_CORNER;
crSizeNS: CursorValue := GDK_SB_V_DOUBLE_ARROW;
crSizeNWSE: CursorValue := GDK_TOP_LEFT_CORNER;
crSizeWE: CursorValue := GDK_SB_H_DOUBLE_ARROW;
crSizeNW: CursorValue := GDK_TOP_LEFT_CORNER;
crSizeN: CursorValue := GDK_TOP_SIDE;
crSizeNE: CursorValue := GDK_TOP_RIGHT_CORNER;
crSizeW: CursorValue := GDK_LEFT_SIDE;
crSizeE: CursorValue := GDK_RIGHT_SIDE;
crSizeSW: CursorValue := GDK_BOTTOM_LEFT_CORNER;
crSizeS: CursorValue := GDK_BOTTOM_SIDE;
crSizeSE: CursorValue := GDK_BOTTOM_RIGHT_CORNER;
crUpArrow: CursorValue := GDK_LEFT_PTR;
crHourGlass:CursorValue := GDK_WATCH;
crHSplit: CursorValue := GDK_SB_H_DOUBLE_ARROW;
crVSplit: CursorValue := GDK_SB_V_DOUBLE_ARROW;
crAppStart: CursorValue := GDK_LEFT_PTR;
crHelp: CursorValue := GDK_QUESTION_ARROW;
crHandPoint:CursorValue := GDK_Hand2;
crSizeAll: CursorValue := GDK_FLEUR;
else
CursorValue := -1;
end;
if CursorValue <> -1 then
Result := HCURSOR({%H-}PtrUInt(gdk_cursor_new(CursorValue)));
end;
function TGtk3WidgetSet.DCGetPixel(CanvasHandle: HDC; X, Y: integer
): TGraphicsColor;
var
ANewPix: PGdkPixbuf;
begin
{$IFDEF GTK3DEBUGNOTIMPLEMENTED}
DebugLn('WARNING: TGtk3WidgetSet.DCGetPixel not implemented ...');
{$ENDIF}
Result := 0;
if IsValidDC(CanvasHandle) then
begin
if (TGtk3DeviceContext(CanvasHandle).ParentPixmap <> nil) then
begin
ANewPix := gdk_pixbuf_new_subpixbuf(TGtk3DeviceContext(CanvasHandle).ParentPixmap, X, Y, 1, 1);
// cairo_get_c
// gdk_pixbuf_get_pixels(ANewPix);
ANewPix^.unref;
end;
end;
end;
procedure TGtk3WidgetSet.DCSetPixel(CanvasHandle: HDC; X, Y: integer;
AColor: TGraphicsColor);
var
ASavedPenColor: TColor;
cr: PCairo_t;
begin
if IsValidDC(CanvasHandle) then
begin
cr := TGtk3DeviceContext(CanvasHandle).Widget;
ASavedPenColor := TGtk3DeviceContext(CanvasHandle).CurrentPen.Color;
TGtk3DeviceContext(CanvasHandle).CurrentPen.Color := AColor;
cairo_move_to(cr, X, Y);
cairo_line_to(cr, X, Y);
cairo_stroke(cr);
TGtk3DeviceContext(CanvasHandle).CurrentPen.Color := ASavedPenColor;
end;
end;
procedure TGtk3WidgetSet.DCRedraw(CanvasHandle: HDC);
begin
{$IFDEF GTK3DEBUGNOTIMPLEMENTED}
DebugLn('WARNING: TGtk3WidgetSet.DCRedraw not implemented ...');
{$ENDIF}
end;
procedure TGtk3WidgetSet.DCSetAntialiasing(CanvasHandle: HDC; AEnabled: Boolean
);
begin
// inherited DCSetAntialiasing(CanvasHandle, AEnabled);
if IsValidDC(CanvasHandle) then
begin
if AEnabled then
cairo_set_antialias(TGtk3DeviceContext(CanvasHandle).Widget, CAIRO_ANTIALIAS_DEFAULT)
else
cairo_set_antialias(TGtk3DeviceContext(CanvasHandle).Widget, CAIRO_ANTIALIAS_NONE);
end;
end;
procedure TGtk3WidgetSet.SetDesigning(AComponent: TComponent);
begin
// inherited SetDesigning(AComponent);
end;
function gtk3TimerProc(Data: gPointer): gBoolean; cdecl;
var
TimerInfo: PGtkITimerinfo;
begin
Result := False;
TimerInfo := PGtkITimerinfo(Data);
if (FTimerData = nil) or (FTimerData.IndexOf(Data)<0) then
begin
Result := False // timer was killed
end else
begin
if TimerInfo^.TimerFunc <> nil then
begin
TimerInfo^.TimerFunc;
Result := True; // timer will go on
end else
begin
Result := False; // stop timer
end;
end;
if Result and (FTimerData.IndexOf(Data)<0) then
begin
// timer was killed
// -> stop timer
Result := False;
end;
end;
procedure gtk3TimerDestroyed(Data: gPointer); cdecl;
var
TimerInfo: PGtkITimerinfo;
begin
if (FTimerData <> nil) and Assigned(Data) and
(FTimerData.IndexOf(Data) >= 0) then
begin
TimerInfo := PGtkITimerinfo(Data);
FTimerData.Remove(Data);
Dispose(TimerInfo);
end;
end;
function TGtk3WidgetSet.CreateTimer(Interval: integer; TimerFunc: TWSTimerProc
): THandle;
var
TimerInfo: PGtkITimerinfo;
begin
if ((Interval < 1) or (not Assigned(TimerFunc)))
then
Result := 0
else begin
New(TimerInfo);
FillByte(TimerInfo^,SizeOf(TGtkITimerinfo),0);
TimerInfo^.TimerFunc := TimerFunc;
{$IFDEF VerboseTimer}
DebugLn(['TGtk3WidgetSet.CreateTimer Interval=',dbgs(Interval)]);
{$ENDIF}
Result:= g_timeout_add_full(0 {G_PRIORITY_DEFAULT}, Interval, @gtk3TimerProc, TimerInfo, @gtk3TimerDestroyed);
if Result = 0 then
Dispose(TimerInfo)
else begin
TimerInfo^.TimerFunc := TimerFunc;
TimerInfo^.TimerHandle:=Result;
FTimerData.Add(TimerInfo);
end;
end;
end;
function TGtk3WidgetSet.DestroyTimer(TimerHandle: THandle): boolean;
var
n: integer;
TimerInfo: PGtkITimerinfo;
begin
Result := False;
n := FTimerData.Count;
while (n > 0) do
begin
dec (n);
TimerInfo := PGtkITimerinfo(FTimerData.Items[n]);
if (TimerInfo^.TimerHandle = guint(TimerHandle)) then
begin
// in gtk3 timeout is automatically removed
TimerInfo^.TimerHandle := 0;
// g_timeout_remove(TimerInfo^.TimerHandle);
FTimerData.Delete(n);
Dispose(TimerInfo);
end;
end;
Result := True;
end;
function TGtk3WidgetSet.IsValidDC(const DC: HDC): Boolean;
begin
Result := DC <> 0;
end;
function TGtk3WidgetSet.IsValidGDIObject(const AGdiObject: HGDIOBJ): Boolean;
begin
Result := AGdiObject <> 0;
end;
function TGtk3WidgetSet.IsValidHandle(const AHandle: HWND): Boolean;
begin
Result := AHandle <> 0;
end;
procedure TGtk3WidgetSet.InitStockItems;
var
LogBrush: TLogBrush;
logPen : TLogPen;
begin
FillChar(LogBrush,SizeOf(TLogBrush),0);
LogBrush.lbStyle := BS_NULL;
FStockNullBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockNullBrush).Shared := True;
LogBrush.lbStyle := BS_SOLID;
LogBrush.lbColor := $000000;
FStockBlackBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockBlackBrush).Shared := True;
LogBrush.lbColor := $C0C0C0;
FStockLtGrayBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockLtGrayBrush).Shared := True;
LogBrush.lbColor := $808080;
FStockGrayBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockGrayBrush).Shared := True;
LogBrush.lbColor := $404040;
FStockDkGrayBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockDkGrayBrush).Shared := True;
LogBrush.lbColor := $FFFFFF;
FStockWhiteBrush := CreateBrushIndirect(LogBrush);
TGtk3Brush(FStockWhiteBrush).Shared := True;
LogPen.lopnStyle := PS_NULL;
LogPen.lopnWidth := Point(0, 0); // create cosmetic pens
LogPen.lopnColor := $FFFFFF;
FStockNullPen := CreatePenIndirect(LogPen);
TGtk3Pen(FStockNullPen).Shared := True;
LogPen.lopnStyle := PS_SOLID;
FStockWhitePen := CreatePenIndirect(LogPen);
TGtk3Pen(FStockWhitePen).Shared := True;
LogPen.lopnColor := $000000;
FStockBlackPen := CreatePenIndirect(LogPen);
TGtk3Pen(FStockBlackPen).Shared := True;
FStockSystemFont := 0; // styles aren't initialized yet
FStockDefaultDC := 0; // app must be initialized
end;
procedure TGtk3WidgetSet.FreeStockItems;
procedure DeleteAndNilObject(var h: HGDIOBJ);
begin
if h <> 0 then
TGtk3ContextObject(h).Shared := False;
DeleteObject(h);
h := 0;
end;
begin
DeleteAndNilObject(FStockNullBrush);
DeleteAndNilObject(FStockBlackBrush);
DeleteAndNilObject(FStockLtGrayBrush);
DeleteAndNilObject(FStockGrayBrush);
DeleteAndNilObject(FStockDkGrayBrush);
DeleteAndNilObject(FStockWhiteBrush);
DeleteAndNilObject(FStockNullPen);
DeleteAndNilObject(FStockBlackPen);
DeleteAndNilObject(FStockWhitePen);
DeleteAndNilObject(FStockSystemFont);
end;
function TGtk3WidgetSet.CreateDefaultFont: HFONT;
var
AFont: TGtk3Font;
cr: Pcairo_t;
begin
Result := 0;
cr := gdk_cairo_create(gdk_get_default_root_window);
AFont := TGtk3Font.Create(cr, nil);
cairo_destroy(cr);
Result := HFONT(AFont);
end;
|