lazarus/lcl/interfaces/gtk3
2020-05-26 22:25:15 +00:00
..
gtk3bindings Gtk3: added Gdk3 api - needed for monitor. issue #36963 2020-04-24 15:25:09 +00:00
alllclintfunits.pas
gtk3cellrenderer.pas ComboBox: implement TComboBoxStyle.IsOwnerDrawn and .IsVariable and use them instead of the in [] syntax 2020-05-26 22:25:15 +00:00
gtk3defines.inc
gtk3int.pas LCL-GTK3: Update for swapped R/B colors. Issue #36374, patch from Anton Kavalenka. 2020-04-01 10:43:20 +00:00
gtk3lclintf.inc Gtk3: use best of system visual to avoid assertions about row stride calculations. 2020-04-09 13:22:31 +00:00
gtk3lclintfh.inc LCL: Remove deprecated function FontCanUTF8. All widgetsets returned True, including GTK(2) and QT(5). Not implementing it caused bugs. 2019-12-20 17:45:44 +00:00
gtk3object.inc LCL-GTK3: OOP approach in SelectObject, hatched brushes implemented etc. Issue #36744, patch from Anton Kavalenka. 2020-04-08 15:16:12 +00:00
gtk3objects.pas LCL-GTK3: Implement CreateRoundRectRgn and CreateEllipticRgn. Issue #37075, patch from Anton Kavalenka. 2020-05-15 22:20:36 +00:00
gtk3private.pas
gtk3procs.pas LCL-GTK3: Deal with GDK_KEY_Escape. Remove a duplicate test for nil Widget. 2020-05-20 15:20:21 +00:00
gtk3widgets.pas ComboBox: implement TComboBoxStyle.IsOwnerDrawn and .IsVariable and use them instead of the in [] syntax 2020-05-26 22:25:15 +00:00
gtk3winapi.inc LCL-GTK3: Implement CreateRoundRectRgn and CreateEllipticRgn. Issue #37075, patch from Anton Kavalenka. 2020-05-15 22:20:36 +00:00
gtk3winapih.inc LCL-GTK3: Implement CreateRoundRectRgn and CreateEllipticRgn. Issue #37075, patch from Anton Kavalenka. 2020-05-15 22:20:36 +00:00
gtk3wsbuttons.pp LCL-GTK3: Update for swapped R/B colors. Issue #36374, patch from Anton Kavalenka. 2020-04-01 10:43:20 +00:00
gtk3wscalendar.pp LCL/Calendar: Remove option dsStartMonday from Calendar.DisplaySettings and replace it by Delphi-compatible Calendar.FirstDayOfWeek 2020-05-25 14:16:57 +00:00
gtk3wschecklst.pp
gtk3wscomctrls.pp gtk3: implementation for listview sortindication. Patch by Anton Kavalenka. bug #36596 2020-01-17 19:36:58 +00:00
gtk3wscontrols.pp gtk3: implemented TWinControl.PaintTo() 2020-04-09 12:54:46 +00:00
gtk3wsdialogs.pp Gtk3: implemented color/font dialogs. Patch by Anton Kavalenka. issue #36416 2020-04-17 17:02:28 +00:00
gtk3wsextctrls.pp LCL-GTK3: Cleanup for TGtk3Panel. Issue #36586, patch from CudaText man. 2020-01-17 22:55:34 +00:00
gtk3wsextdlgs.pp
gtk3wsfactory.pas Gtk3: implemented color/font dialogs. Patch by Anton Kavalenka. issue #36416 2020-04-17 17:02:28 +00:00
gtk3wsforms.pp gtk3: fixed gtk3 assertion in form SetBounds() 2017-05-24 18:13:10 +00:00
gtk3wsimglist.pp LCL-GTK3: OOP approach in SelectObject, hatched brushes implemented etc. Issue #36744, patch from Anton Kavalenka. 2020-04-08 15:16:12 +00:00
gtk3wsmenus.pp Gtk3: fixed setting of radio menuitems. issue #36937 2020-04-20 15:53:19 +00:00
gtk3wsspin.pp
gtk3wssplitter.pas LCL-GTK3: Add forgotten unit gtk3wssplitter. Issue #34106, 2018-10-22 21:53:50 +00:00
gtk3wsstdctrls.pp Gtk3: fixed TListBox.MultiSelect. issue #36971 2020-04-28 17:00:50 +00:00
gtk3wstrayicon.pas LCL-GTK3: Implement TrayIcon for GTK3 widgetset. Issue #36209, patch from David Bannon. 2019-10-28 10:40:33 +00:00
interfaces.pp
issues.xml LCL: TPageControl properties were implemented for Windows. Add restriction notes for other widgetsets. Issue #34867. 2020-03-18 18:54:09 +00:00
Makefile Support Haiku build. Makefiles are generated from Makefile.fpc files using proper tools. Issue #36316, patch from Alfred. 2020-04-05 11:35:01 +00:00
Makefile.compiled
Makefile.fpc
README.txt

TODO:
* Cursors
* Themes (gtk3themes)
* Paint system (brush is critical)
* Paint system coordinates and transformations.
* Paint system text
* RawImage (bitmap, device)
* Other missing ws controls (trayicon, dragimagelist, splitter etc).
* Clipboard
* Caret
* Dialogs
* Designer
* Fix modal windows behaviour under kwin (metacity and xfwm works ok for now).
* For beta status move all signal handlers into separate unit, so gtk3widgets stay
  clean.
* Keep interface as simple as possible ! *
* If there's any problem which is fixed unlogical code,
  check if it's gtk3 bug first.



*KNOWN PROBLEMS:
1. GtkTextView inside GtkScrolledWindow with disabled scrollbars (GTK_POLICY_NONE)
   grows memo control. Seem that it's fixed in 3.8.2
   https://bugzilla.gnome.org/show_bug.cgi?id=688472
   https://bugzilla.gnome.org/show_bug.cgi?id=658928
   POSSIBLE SOLUTION IS TO OVERRIDE PGtkTextViewClass() for get_preferred_size

2. cairo clip rect in paint event have strange bounds when it paints only part
   of control (added temporary workaround after TGtk3Widget.GtkEventPaint call).

3. Window state isn't accurate (GtkWindow active/inactive property isn't updated
   correctly by gtk.

4. GtkNotebook switch-page cannot control is we forbid page switch when user clicks
   on it (tab).

Some links about gtk3:
http://igurublog.wordpress.com/tag/gtk3/


*NAMING OF UNITS* inside of gtk3bindings subdirectory:
All units are prefixed with laz eg. lazgtk3.pas to avoid
clashes with future versions of fpc which will probably have package named gtk3
and gtk3.pas unit inside.