lazarus/lcl/interfaces/gtk3
2017-06-10 11:43:19 +00:00
..
gtk3bindings Gtk3: removed gdk_pixbuf_gettext which does not exist in gdk-pixbuf.issue #31677 2017-04-20 16:14:54 +00:00
alllclintfunits.pas
gtk3cellrenderer.pas LCL: combobox, listbox: fix drawing of customdrawn items. Change TOwnerDrawStateType.odPainted to odBackgroundPainted 2017-06-10 11:43:19 +00:00
gtk3defines.inc
gtk3int.pas gtk3: started theme handling via GtkStyleProvider, using css theming by gtk3. 2017-05-25 13:12:00 +00:00
gtk3lclintf.inc
gtk3lclintfh.inc
gtk3object.inc gtk3: started theme handling via GtkStyleProvider, using css theming by gtk3. 2017-05-25 13:12:00 +00:00
gtk3objects.pas LCL: Use a helper function for testing fontname 'default'. Issue #31940, patch from AlexeyT. 2017-06-03 18:56:34 +00:00
gtk3private.pas
gtk3procs.pas gtk3: implemented Gtk3MouseWheel() event 2017-05-26 13:49:35 +00:00
gtk3widgets.pas lcl: combo box: add new styles csOwnerDrawEditableFixed and csOwnerDrawEditableVariable as replacement for the old ReadOnly property 2017-06-05 19:27:43 +00:00
gtk3winapi.inc gtk3: fix assertions 2017-05-26 12:25:58 +00:00
gtk3winapih.inc
gtk3wsbuttons.pp
gtk3wscalendar.pp
gtk3wschecklst.pp
gtk3wscomctrls.pp gtk3: fixed assertions in TGtk3Notebook, implemented GetTabRect GetTabIndex 2017-05-26 12:00:19 +00:00
gtk3wscontrols.pp LCL: Use a helper function for testing fontname 'default'. Issue #31940, patch from AlexeyT. 2017-06-03 18:56:34 +00:00
gtk3wsdialogs.pp GTK2/GTK3: Fix TOpenDialog.Files if ofAllowMultiSelect is not in Options. Issue #0031133. 2016-12-17 16:48:52 +00:00
gtk3wsextctrls.pp
gtk3wsextdlgs.pp
gtk3wsfactory.pas
gtk3wsforms.pp gtk3: fixed gtk3 assertion in form SetBounds() 2017-05-24 18:13:10 +00:00
gtk3wsimglist.pp
gtk3wsmenus.pp
gtk3wsspin.pp
gtk3wsstdctrls.pp LCL: combo box: deprecate ReadOnly property 2017-06-05 19:07:31 +00:00
interfaces.pp
Makefile
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.