GTK+

























































GTK+
GTK+ logo.svg

The gtk3-widget-factory is a collection of examples demonstrating many of the GUI widgets in GTK+ version 3
The gtk3-widget-factory is a collection of examples demonstrating many of the GUI widgets in GTK+ version 3

Original author(s)
Spencer Kimball, Peter Mattis
Developer(s)
The GNOME Project, eXperimental Computing Facility (XCF)
Initial release April 14, 1998; 20 years ago (1998-04-14)
Stable release 3.24.1 (September 19, 2018; 2 months ago (2018-09-19)[1]) [±]
Preview release 3.94 / 3.23.0
(June 28, 2018; 5 months ago (2018-06-28)
June 21, 2018; 5 months ago (2018-06-21))
[±]

Repository
  • gitlab.gnome.org/GNOME/gtk.git
Edit this at Wikidata
Written in
C[2]
Operating system
Linux, Unix-like, macOS, Windows
Type Widget toolkit
License
LGPL version 2.1
Website gtk.org

GTK+ (formerly GIMP Toolkit) is a cross-platform widget toolkit for creating graphical user interfaces (GUI).[3] It is licensed under the terms of the GNU Lesser General Public License, allowing both free and proprietary software to use it. It is, along with Qt, one of the most popular tool-kits for the Wayland and X11 windowing systems.[4]




Contents






  • 1 Software architecture


    • 1.1 GIMP Drawing Kit (GDK)


    • 1.2 GTK+ Scene Graph Kit (GSK)


    • 1.3 GtkInspector


    • 1.4 GUI designers


      • 1.4.1 GtkBuilder




    • 1.5 Language bindings


      • 1.5.1 Gtk#




    • 1.6 GtkSourceView


    • 1.7 GtkSpell




  • 2 Development


    • 2.1 Build automation


    • 2.2 Criticisms




  • 3 Use


    • 3.1 Applications


    • 3.2 Desktop environments


      • 3.2.1 Current


      • 3.2.2 Inactive


      • 3.2.3 Miscellaneous




    • 3.3 Window managers




  • 4 Example


  • 5 History


    • 5.1 Linux Unix


    • 5.2 macOS


    • 5.3 Windows


    • 5.4 OpenVMS


    • 5.5 Releases




  • 6 See also


  • 7 References


  • 8 Bibliography


  • 9 External links





Software architecture




Simplified software architecture of GTK+. Pango, GDK, ATK, GIO, Cairo and GLib





GDK contains back-ends to X11, Wayland, Broadway (HTTP), Quartz, and GDI and relies on Cairo for the rendering. Its new SceneGraph is work-in-progress.


The GTK+ library contains a set of graphical control elements (widgets), version 3.22.16 contains 186 active and 36 deprecated widgets.[5] GTK+ is an object-oriented widget toolkit written in the programming language C; it uses GObject, that is the GLib object system, for the object orientation. While GTK+ is mainly for windowing systems based on X11 and Wayland, it works on other platforms, including Microsoft Windows (interfaced with the Windows API), and macOS (interfaced with Quartz). There is also an HTML5 back-end named Broadway[6][7].


GTK+ can be configured to change the look of the widgets drawn; this is done using different display engines. Several display engines exist which try to emulate the look of the native widgets on the platform in use.


Starting with version 2.8, released in 2005, GTK+ began the transition to using Cairo to render most of its graphical control elements widgets.[8] Since GTK+ version 3.0, all the rendering is done using Cairo.[citation needed]


On 2018-Jan-26 at DevConf.cz Matthias Clasen gave an overview of the current state of GTK+ 4 development, including a high-level explanation of how rendering and input worked in GTK+ 3, what changes are being made in GTK+ 4 (>3.90), and why.[9]



GIMP Drawing Kit (GDK)



GDK acts as a wrapper around the low-level functions provided by the underlying windowing and graphics systems.


GDK is found in the /gdk directory.



GTK+ Scene Graph Kit (GSK)



GSK is the rendering and scene graph API for GTK+. GSK lies between the graphical control elements (widgets) and the rendering. GSK was finally merged into GTK+ version 3.90 released March 2017.


GSK is found in the /gsk directory.



GtkInspector


GtkInspector was introduced with version 3.14.[10][11]
GtkInspector can only be invoked after installing the development package libgtk-3-dev/gtk+-devel.



GUI designers


There are several GUI designers for GTK+. The following projects are active as of July 2011:




  • Glade, supports GtkBuilder, which is a GTK+ built-in GUI description format.


  • Gazpacho, GUI builder for the GTK+ toolkit written in Python[12]

  • Crow Designer, relies on its own GuiXml format and GuiLoader library.[13]


  • Stetic, part of MonoDevelop, oriented toward Gtk#.



GtkBuilder


GtkBuilder allows user interfaces to be designed without writing code. The interface is described in an Extensible Markup Language (XML) file, which is then loaded at runtime and the objects created automatically. The Glade Interface Designer allows creation of the user interface in a what you see is what you get (WYSIWYG) manner. The description of the user interface is independent from the programming language being used.



Language bindings



A library written in one programming language may be used in another language if bindings are written; GTK+ has a range of bindings for various languages.[14]



Gtk#

















































Gtk#
Gtk Sharp Logo.png
Developer(s) Xamarin
Initial release March 12, 2004; 14 years ago (2004-03-12)
Stable release
2.12.41[15]
/ September 22, 2016; 2 years ago (2016-09-22)
Preview release
2.99.3[16]
/ June 6, 2014; 4 years ago (2014-06-06)

Repository
  • gitlab.gnome.org/GNOME/gtk.git
Edit this at Wikidata
Written in
C#, XML, Perl, C
Operating system
Windows, macOS, Linux
Type Widget toolkit
License GNU Lesser General Public License
Website mono-project.com/GtkSharp

Gtk# is a set of .NET Framework bindings for the GTK+ graphical user interface (GUI) toolkit and assorted GNOME libraries. The library facilitates building graphical GNOME applications using Mono or any other compliant Common Language Runtime (CLR). Gtk# is an event-driven system like any other modern windowing library where every widget allows associating handler methods, which get called when certain events occur.


Applications built using Gtk# will run on many platforms including Linux, Windows and macOS. The Mono packages for Windows include GTK+, Gtk# and a native theme to make applications look like native Windows applications. Starting with Mono 1.9, running Gtk# applications on macOS no longer requires running an X11 server.[17]


Glade Interface Designer can be used with the Glade# bindings to easily design GUI applications. A GUI designer named Stetic is integrated with the MonoDevelop integrated development environment (IDE).


In addition to support the standard GTK/GNOME stack of development tools, the gtk-dotnet.dll assembly provides a bridge to consume functionality available on the .NET stack. At this point this includes the functionality to use System.Drawing to draw on a widget.



GtkSourceView



For syntax highlighting there is GtkSourceView, "source code editing widget".


GtkSourceView is maintained separately from GTK+ as a library: gtksourceview. There are plans to rename to gsv.



GtkSpell


GtkSpell is a distinct library separate to GTK+. GtkSpell depends on GTK+ and Enchant. Enchant is a wrapper for ispell, hunspell, etc, the actual spell checker engine/software.
GtkSpell uses GTK's GtkTextView widget, to highlight misspelled words and offer replacement.


  • gtkspell.sourceforge.net


Development


GTK+ is mainly developed by The GNOME Project, which also develops the GNOME Development Platform and the GNOME Desktop Environment.[18]


GTK+ development is loosely managed. Discussion chiefly occurs on several public mailing lists.[19] GNOME developers and users gather at an annual GNOME Users And Developers European Conference GUADEC meeting to discuss GNOME's current state and future direction.[20] GNOME incorporates standards and programs from freedesktop.org to better interoperate with other desktops.


GTK+ is mainly written in C.[21] Many language bindings are available.


On September 1, 2016 a post on the GTK development blog denoted, among other things, the future numbering scheme of GTK+.[22] GTK+ version 3.22 from autumn 2016 shall be the last 3.x release. After that all resources will move to the GTK+ 4 development series with the version names 3.90, 3.92, etc. Even as the 4.x series enters development, notable applications still use GTK+ 2.x and have not been ported to 3.22. Regarding the future of legacy software using GTK+, there is no collective project to port GTK+ 2.x software to 3.22.



Build automation


In former times GTK+ (and GNOME, GLib, etc.) utilized the GNU Build System (named Autotools) as the build automation system of choice.


Since 14 Aug 2017, the master branch of GTK+ builds with Meson, and the Autotools build system files have been dropped.[23]



Criticisms


The most common criticism of GTK+ is a lack of backward-compatibility in major updates, most notably in the application programming interface (API)[24] and theming.[25]


The compatibility breaks between minor releases during the GTK+ 3.x development cycle was explained by Benjamin Otte as due to strong pressures to innovate, such as providing the features modern users expect and supporting the increasingly influential Wayland display server protocol. With the release of GTK+ 4, the pressure from the need to innovate will have been released and the balance between stability and innovation will tip toward stability.[26] Similarly, recent changes to theming are specifically intended to improve and stabilise that part of the API, meaning some investment now should be rewarded later.



  • Dirk Hohndel, codeveloper of Subsurface and member of Intel's Open-Source Technology Center, criticized the GTK+ developers for being abrasive and ignoring most community requests.[27]

  • Hong Jen Yee, developer of LXDE (which of the GTK version will be dropped and all efforts will be focused on the Qt port.[28]), expressed disdain for version 3 of the GTK+ toolkit's radical API changes and increased memory usage, and ported PCMan File Manager (PCManFM) to Qt additionally. PCManFM is being developed with a GTK+ and with a Qt backend at the same time.[29]

  • The Audacious music player plans to move back to GTK+ version 2 starting with version 3.6, with the long-term goal of migrating to Qt.[30] The reasons stated by the developers for this include a transition to client-side window decorations, which they claim cause the application to look "GNOME-y and out of place."[31]


  • Wireshark has switched to Qt due to not having a good experience with GTK+'s cross-platform support.[32]



Use




The GTK+ support for Wayland, co-requisites applications to be adapted to Wayland also




Screenshot of GIMP 2.8 - GTK+ is responsible for managing the interface components of the program, including the menus, buttons, and input fields.



Applications



Some notable applications that use or once used GTK+ as a widget toolkit include:



  • GNOME Core Applications – as part of GNOME desktop environment, developed in concert with GTK+ itself.




  • AbiWord – Word processor


  • Anjuta – Integrated development environment (IDE)


  • Ardour – Digital audio workstation


  • Chromium – Web browser (Until version 34, replaced by Aura in version 35+)[citation needed]


  • Ekiga (formerly GnomeMeeting) – VoIP and video conferencing application


  • GNU Emacs can use GTK when running on X.


  • Evolution – Personal information manager


  • gconfig – Linux kernel source configuration utility.


  • Geany – a lightweight cross-platform IDE and GTK+ text editor based on Scintilla.


  • GIMP – Raster graphics editor


  • Gnumeric – Spreadsheet application


  • Gramps – Genealogy software


  • Inkscape – Vector graphics editor for SVG


  • LiVES – Video editor


  • Midori – Minimalistic web browser using GTKWebKit as rendering engine and GTK+ as widget toolkit


  • Pidgin – Instant messenger application




Desktop environments



Several desktop environments utilize GTK+ as the widget toolkit.



Current




  • GNOME, based on GTK+, meaning that programs native to GNOME use GTK+


  • Budgie, built from scratch for the SolusOS successor, Solus Operating System
    • Planning to port to and focus on Qt



  • Cinnamon, a fork of GNOME 3 and uses GTK+ version 3


  • MATE, a fork of GNOME 2, which is updated to support GTK+ 3


  • Xfce, currently based on GTK+ 2 with support for and eventual plans for a migration to GTK+ 3


  • Pantheon uses GTK+ 3 exclusively, being developed by elementary OS


  • Sugar, a desktop environment for youth primary education, which uses GTK+, especially PyGTK


  • KDE, though based on Qt, has integration with GTK+ written programs and themes since version 4.2



Inactive




  • Unity, the former default desktop environment of Ubuntu


  • LXDE (Lightweight X11 Desktop Environment) is based on GTK+ 2


  • Access Linux Platform (successor of the Palm OS PDA platform)

  • Consort, the GNOME 3.4 Fallback Mode – fork from SolusOS


  • GPE, the GPE Palmtop Environment


  • ROX Desktop, a lightweight desktop, with features from the GUI of RISC OS



Miscellaneous


GTK+ programs can be run on desktop environments based on X11 and Wayland, or window managers even those not made with GTK+, provided the needed libraries are installed; this includes macOS if X11.app is installed. GTK+ can be also run on Microsoft Windows, where it is used by some popular cross-platform applications like Pidgin and GIMP. wxWidgets, a cross-platform GUI tool-kit, uses GTK+ on Linux.[33] Other ports include DirectFB (used by the Debian installer, for example) and ncurses.[34]



Window managers


The following window managers use GTK+:




  • Aewm

  • AfterStep

  • Amaterus

  • Consortium

  • IceWM

  • Marco

  • Metacity

  • Muffin

  • Mutter

  • Sawfish

  • Wmg

  • Xfwm




Example


Documentation is available here:


  • developer.gnome.org/gtk3/stable/

The following code presents a graphical GTK+ hello-world program in the C programming language. This program has a window with the title "Hello, world!" and a label with similar text.


// helloworld.c

#include <gtk/gtk.h>

int main (int argc, char *argv)
{
GtkWidget *window;
GtkWidget *label;

gtk_init(&argc, &argv);

/* Create the main, top level window */
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);

/* Give it the title */
gtk_window_set_title(GTK_WINDOW(window), "Hello, world!");

/* Center the window */
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);

/* Set the window's default size */
gtk_window_set_default_size(GTK_WINDOW(window), 200, 100);

/*
** Map the destroy signal of the window to gtk_main_quit;
** When the window is about to be destroyed, we get a notification and
** stop the main GTK+ loop by returning 0
*/
g_signal_connect(window, "destroy", G_CALLBACK(gtk_main_quit), NULL);

/*
** Assign the variable "label" to a new GTK label,
** with the text "Hello, world!"
*/
label = gtk_label_new("Hello, world!");

/* Plot the label onto the main window */
gtk_container_add(GTK_CONTAINER(window), label);

/* Make sure that everything, window and label, are visible */
gtk_widget_show_all(window);

/*
** Start the main loop, and do nothing (block) until
** the application is closed
*/
gtk_main();

return 0;
}

Needs installing the libraries first in debian or derivatives:



$ sudo apt-get install libgtk-3-dev


Using pkg-config in a Unix shell, this code can be compiled with the following command:



$ cc -Wall `pkg-config --cflags gtk+-3.0` -o helloworld helloworld.c `pkg-config --libs gtk+-3.0`


Invoke the program



$ ./helloworld



History



Linux Unix


GTK+ was originally designed and used in the GNU Image Manipulation Program (GIMP) as a replacement of the Motif toolkit; at some point Peter Mattis became disenchanted with Motif and began to write his own GUI toolkit named the GIMP toolkit and had successfully replaced Motif by the 0.60 release of GIMP.[35] Finally GTK was re-written to be object-oriented and was renamed GTK+.[36] This was first used in the 0.99 release of GIMP. GTK+ was subsequently adopted for maintenance by the GNOME Foundation, which uses it in the GNOME desktop environment.


The GTK+ 2.0.0 release series introduced new features which include improved text rendering using Pango, a new theme engine, improved accessibility using the Accessibility Toolkit, transition to Unicode using UTF-8 strings, and a more flexible API. Starting with version 2.8, GTK+ 2 depends on the Cairo graphics library for rendering vector graphics.


GTK+ version 3.0.0 included revised input device handling, support for themes written with CSS-like syntax, and the ability to receive information about other opened GTK+ applications.



macOS


With Quartz-Backend[37] GTK+ is available in macOS.[38]



Windows



  • After GTK+ 2.24.10 and 3.6.4 Development of Windows with Installer was closed by Gnome. Installation of MSYS2 on Windows is a good way to use actual GTK+.[39]

  • GTK+ 2.24.10 and 3.6.4 is available in Internet, but very buggy and limited against actual versions.[40][41]

  • A Version for Windows 64-bit is prepared by Tom Schoonjans with 2.24.32 (actual like Linux) and 3.22.30 (actual like Linux) available.[42]

  • Windows 10 Fall Creators Edition include Windows Subsystem for Linux (WSL). With Linux like Ubuntu or Debian from the App-Sore and a X-Server like Xming or VcXsvr thousands of programs like GTK+ 2 or 3 are running with X-Server or terminal support.



OpenVMS


HP stated that their goal was to merge the needed OpenVMS changes into the GTK+ Version 1.3 development stream[43], however this never materialised. The latest version of GTK+ for OpenVMS is version 1.2.10.[44]



Releases




















































































































































































































The GNOME team releases new versions on a regular basis.[63]



See also




  • Client-Side Decoration

  • List of widget toolkits


  • GDK – the GIMP Drawing Kit lies between the xlib and the GTK+ library, handling basic rendering such as drawing primitives, raster graphics (bitmaps), cursors, fonts, as well as window events and drag-and-drop functionality


  • gtkmm – C++ bindings for GTK+


  • Qt - cross platform framework and toolkit


  • Xojo - cross-platform development tool and framework


  • Enlightenment Foundation Libraries (EFL) – widget toolkit written for the Enlightenment window manager


  • FLTK – A light, cross-platform, non-native widget toolkit


  • FOX toolkit – A fast, open source, cross-platform widget toolkit


  • IUP – a multi-platform toolkit for building native graphical user interfaces

  • Ultimate++


  • Visual Component Library (VCL)



References





  1. ^ https://github.com/GNOME/gtk/releases/tag/3.24.1


  2. ^ "The GTK+ Open Source Project on Ohloh". Ohloh.net. Retrieved 2014-02-17..mw-parser-output cite.citation{font-style:inherit}.mw-parser-output q{quotes:"""""""'""'"}.mw-parser-output code.cs1-code{color:inherit;background:inherit;border:inherit;padding:inherit}.mw-parser-output .cs1-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Lock-green.svg/9px-Lock-green.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-lock-limited a,.mw-parser-output .cs1-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Lock-gray-alt-2.svg/9px-Lock-gray-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Lock-red-alt-2.svg/9px-Lock-red-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration{color:#555}.mw-parser-output .cs1-subscription span,.mw-parser-output .cs1-registration span{border-bottom:1px dotted;cursor:help}.mw-parser-output .cs1-hidden-error{display:none;font-size:100%}.mw-parser-output .cs1-visible-error{font-size:100%}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration,.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left,.mw-parser-output .cs1-kern-wl-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right,.mw-parser-output .cs1-kern-wl-right{padding-right:0.2em}


  3. ^ The GTK+ Team. "GTK+ Features". Retrieved 8 September 2014.


  4. ^ "Developing X applications".


  5. ^ "GTK+ 3 Reference Manual". Retrieved 2017-07-15.


  6. ^ "Using GTK+ with Broadway". GNOME Developer. GNOME. Retrieved 6 March 2018.


  7. ^ "Broadway - GitHub symbiose/symbiose Wiki". GitHub. Retrieved 6 March 2018.


  8. ^ "GTK+ to Use Cairo Vector Engine". Retrieved 2009-12-27.


  9. ^ "Matthias Clasen DevConf.cz 2018 talk about GTK+ 4" (PDF). 2018-01-26.


  10. ^ "Introducing GtkInspector". 2014-05-15.


  11. ^ "Another GtkInspector update". 2014-07-11.


  12. ^ "Gazpacho in Debian".


  13. ^ "Nothing-personal - A development site for Crow Designer, GuiLoader and Rally - Google Project Hosting". Retrieved 2014-02-17.


  14. ^ The GTK+ Team. "GTK+ Language Bindings". www.gtk.org. Retrieved 3 June 2017.


  15. ^ "Release 2.12.41".


  16. ^ "Release 2.99.3".


  17. ^ "Download Gtk#". The GTK+ Project.


  18. ^ "GNOME Quick SWOT Analysis". The GNOME Project. Retrieved March 18, 2014.


  19. ^ "GTK+ and GNOME Mailing Lists". The GNOME Project. Retrieved December 4, 2011.


  20. ^ "About". GNOME Users And Developers European Conference (GUADEC). Archived from the original on October 4, 2011. Retrieved December 3, 2011.


  21. ^ "GNOME Languages". Ohloh. Black Duck Software. Retrieved May 22, 2014.


  22. ^ ab "Versioning and long term stability promise in GTK+". GTK development blog. 2016-09-01.


  23. ^ "Build system change GTK's master branch". mail.gnome.org.


  24. ^ "How Does One Create A Gtk+ Application? – Morten Welinder". blogs.gnome.org. Retrieved 3 June 2017.


  25. ^ mclasen (November 20, 2015). "A GTK+ update". Goings on.


  26. ^ ab "GUADEC2013: Benjamin Otte talks about GTK+". GUADEC.


  27. ^ Larabel, Michael (2014-01-12). "The Biggest Problem With GTK & What Qt Does Good". Phoronix. Retrieved 2014-09-10.


  28. ^ ""The future of Razor and LXDE-Qt"". LXDE Blog. 22 July 2013.


  29. ^ Hong Jen Yee (2013-03-26). "PCManFM Qt 0.1.0 released". Retrieved 2014-09-10.


  30. ^ Web Upd8 (2014-06-23). "Audacious Going Back To GTK2 Starting With Version 3.6". Retrieved 2014-10-21.


  31. ^ Lindgren, John (2014-05-06). "Ugly window decorations and how to fix them (GTK+ 3.12)". Retrieved 2014-10-21.


  32. ^ Gerald Combs (2013-10-15). "We're switching to Qt". Retrieved 2015-08-19.


  33. ^ "GTK+". WxWidgets Compared To Other Toolkits.


  34. ^ "GTK+ TTY Port". Slashdot. Retrieved 2010-08-31.


  35. ^ "LinuxWorld - Where did Spencer Kimball and Peter Mattis go?". Archived from the original on April 17, 1999. Retrieved 2013-08-19.CS1 maint: BOT: original-url status unknown (link)


  36. ^ "What is the + in GTK+?". 2011. Archived from the original on 2012-03-26. Retrieved 2014-03-18.


  37. ^ https://wiki.gnome.org/Projects/GTK+/OSX


  38. ^ https://www.gtk.org/download/macos.php


  39. ^ https://www.gtk.org/download/windows.php


  40. ^ https://sourceforge.net/projects/gtk-win/


  41. ^ http://www.tarnyko.net/dl/gtk.htm


  42. ^ https://github.com/tschoonj/GTK-for-Windows-Runtime-Environment-Installer


  43. ^ http://h41379.www4.hpe.com/openvms/products/ips/gtk.html


  44. ^ http://h41379.www4.hpe.com/openvms/products/ips/gtk_down.html


  45. ^ "Gtk+ 3.0 Theming API Hackfest". Silicon Island. Retrieved 3 June 2017.


  46. ^ "Gtk+ 3 roadmap draft". Retrieved 3 June 2017.


  47. ^ "Project Ridley".


  48. ^ "GdkFrameClock".


  49. ^ "GTK 3.12 introduced client-side decorations".


  50. ^ Matthias Clasen (2014-05-15). "GtkInspector Author's blog entry". Retrieved 2014-05-17.


  51. ^ "GtkInspector in GNOME wiki". 2014-05-15. Retrieved 2014-05-17.


  52. ^ "Merging gestures into 3.14". 2014-05-23. Retrieved 2014-05-23.


  53. ^ "RFC: gestures". 2014-03-04. Retrieved 2014-05-23.


  54. ^ "gtk+ 3.13.2". 2014-05-27.


  55. ^ "gtk+ 3.13.3". 2014-06-24.


  56. ^ online, heise. "Linux-Desktop: Neues Gnome zeigt Nachrichten oben". heise online. Retrieved 3 June 2017.


  57. ^ "GTK+ 3.16.0 released". mail.gnome.org. Retrieved 3 June 2017.


  58. ^ "GTK+ 3.20 – Style Classes and Element Names". 2015-11-20.


  59. ^ "GTK+ Wayland tablet support merged".


  60. ^ "libinput as of September 2016".


  61. ^ ab "Gtk 4.0 will not be stable until Gtk 4.6". 2016-06-13.


  62. ^ ab "Gtk 5.0 will not be stable until Gtk 5.6". 2016-06-14.


  63. ^ ab "GNOME Wiki: roadmap for GTK+".


  64. ^ "gskvulkanrenderer.c".


  65. ^ "GNOME 3.26 Released". 2017-09-13.


  66. ^ "gtk+ 3.94.0 released". 2018-06-26.




Bibliography


.mw-parser-output .refbegin{font-size:90%;margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{list-style-type:none;margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li,.mw-parser-output .refbegin-hanging-indents>dl>dd{margin-left:0;padding-left:3.2em;text-indent:-3.2em;list-style:none}.mw-parser-output .refbegin-100{font-size:100%}



  • Krause, Andrew (April 23, 2007), Foundations of GTK+ Development (1st ed.), Apress, ISBN 978-1-59059-793-4


  • Wright, Peter (May 15, 2000), Beginning GTK+ and GNOME (1st ed.), Peer Information, ISBN 978-1-86100-381-2


  • Logan, Syd (September 6, 2001), Gtk+ Programming in C (1st ed.), Prentice Hall, ISBN 978-0-13-014264-1




External links












  • Official website Edit this at Wikidata

  • GTK+ 3 Reference Manual

  • Client-Side Decorations Initiative

  • List of GTK+ applications


  • GTK+ PyGObject for Windows on SourceForge.net - Python All-In-One PyGI/PyGObject for Windows Installer (GTK+ 3.18 +)


  • GTK+ for Windows (MinGW) on SourceForge.net - (Only up to GTK+ 3.5.4)


  • GtkSharp at Mono Project












Popular posts from this blog

Understanding the information contained in the Deep Space Network XML data?

Ross-on-Wye

Eastern Orthodox Church