GTK

GTK (formerly GTK+,[4] GNOME ToolKit) is a free and open-source cross-platform widget toolkit for creating graphical user interfaces (GUIs).[5] It is licensed under the terms of the GNU Lesser General Public License, allowing both free and proprietary software to use it. Along with Qt, it is one of the most popular toolkits for the Wayland and X11 windowing systems.[6]

GTK
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 releaseApril 14, 1998 (1998-04-14)
Stable release
3.24.20 / April 27, 2020 (2020-04-27)[1]
Preview release
3.98.5 / June 6, 2020 (2020-06-06)[2]
Repository
Written inC, CSS[3]
Operating systemLinux, Unix-like, macOS, Windows
TypeWidget toolkit
LicenseLGPLv2.1+
Websitegtk.org

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.[7] 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.[8][9]

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.[10] Since GTK version 3.0, all rendering is done using Cairo.

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.[11] In February it was announced that GTK 4 will drop the “+” from the project's name.[4]

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.[12][13] 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[14]
  • Crow Designer, relies on its own GuiXml format and GuiLoader library.[15]
  • 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.[16]

Gtk#

Gtk#
Developer(s)Xamarin
Initial releaseMarch 12, 2004 (2004-03-12)
Stable release
2.12.41[17] / September 22, 2016 (2016-09-22)
Preview release
2.99.3[17] / June 6, 2014 (2014-06-06)
Repository
Written inC#, XML, Perl, C
Operating systemWindows, macOS, Linux
TypeWidget toolkit
LicenseGNU Lesser General Public License
Websitemono-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.[18]

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.

Development

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

GTK development is loosely managed. Discussion chiefly occurs on several public mailing lists.[20] 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.[21] GNOME incorporates standards and programs from freedesktop.org to better interoperate with other desktops.

GTK is mainly written in C.[22] 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.[23] 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.[24]

Criticism

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

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.[27] 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.[28]
  • Hong Jen Yee, developer of LXDE (the GTK version of which will be dropped and all efforts focused on the Qt port[29]), 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. PCManFM is being developed with a GTK and with a Qt backend at the same time.[30]
  • The Audacious music player moved to Qt in version 3.6.[31] 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."[32]
  • Wireshark has switched to Qt due to not having a good experience with GTK's cross-platform support.[33]

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:

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
  • Cinnamon, a fork of GNOME 3 and uses GTK version 3
  • MATE, a fork of GNOME 2 and uses GTK 3 since version 1.18
  • Xfce, based on GTK 3 since version 4.14
  • 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
  • Phosh, a mobile UI designed for PureOS

Inactive

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.[34] Other ports include DirectFB (used by the Debian installer, for example) and ncurses.[35]

Window managers

The following window managers use GTK:

Example

Documentation is available here:

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.[36] Finally GTK was re-written to be object-oriented and was renamed GTK+.[37] 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.

The '+' was dropped returning to simply 'GTK' in February 2019 during a Hackathon.[38]

macOS

With Quartz-Backend[39] GTK is available in macOS.[40]

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.[41]
  • GTK 2.24.10 and 3.6.4 is available in Internet, but very buggy and limited against actual versions.[42][43]
  • 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.[44]
  • Windows 10's Fall Creators Update includes Windows Subsystem for Linux (WSL). With Linux distributions like Ubuntu or Debian available from the Windows Store and an X server like Xming or VcXsvr, thousands of programs like GTK 2 or 3 can run with X or terminal support.

OpenVMS

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

4.x

One of the cardinal novelties implemented during the GTK 4 development cycle (i.e. GTK 3.92, etc.) has been the delegation of functionality to ancillary objects instead of encoding it into the base classes provided by GTK.

  • the event handling from signal handlers described by GtkWidget is delegated to event controllers
  • the rendering is delegated to GtkSnapshot objects
  • the layout mechanism from GtkWidget is delegated to GtkLayoutManager

In 2018-Jan-26 at DevConf.cz Matthias Clasen gave an overview of the then current state of GTK 4 development, including a high-level explanation of how rendering and input worked in GTK 3, what changes were being made to GTK 4, and the reasons for those changes. Examples of things that have become possible with GTK 4 were given as well.[47]

Releases

Release history
Release series Initial release Major enhancements Latest minor version
GTK+ 1
Old version, no longer maintained: 1.0 1998-04-13[48] First stable version 1.0.6
Old version, no longer maintained: 1.2 1999-02-25[49] New widgets:
  • GtkFontSelector
  • GtkPacker
  • GtkItemFactory
  • GtkCTree
  • GtkInvisible
  • GtkCalendar
  • GtkLayout
  • GtkPlug
  • GtkSocket
1.2.10
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release
GTK+ 2
Old version, no longer maintained: 2.0 2002-03-11[50] GObject

Overall support for UTF-8

2.0.9
Old version, no longer maintained: 2.2 2002-12-22[51] Multihead support 2.2.4
Old version, no longer maintained: 2.4 2004-03-16[52] New widgets:
  • GtkFileChooser
  • GtkComboBox
  • GtkComboBoxEntry
  • GtkExpander
  • GtkFontButton
  • GtkColorButton
2.4.14
Old version, no longer maintained: 2.6 2004-12-16[53] New widgets:
  • GtkIconView
  • GtkAboutDialog
  • GtkCellView

The last to support Windows 98/Me

2.6.10
Old version, no longer maintained: 2.8 2005-08-13[54] Most widgets are rendered by Cairo 2.8.20
Old version, no longer maintained: 2.10 2006-07-03[55] New widgets:
  • GtkStatusIcon
  • GtkAssistant
  • GtkLinkButton
  • GtkRecentChooser

Print support: GtkPrintOperation

2.10.14
Old version, no longer maintained: 2.12 2007-09-14[56] GtkBuilder 2.12.12
Old version, no longer maintained: 2.14 2008-09-04[57] JPEG 2000 load support 2.14.7
Old version, no longer maintained: 2.16 2009-03-13[58] New widget: GtkOrientable

Caps Lock warning in password entry

Improvements on GtkScale, GtkStatusIcon, GtkFileChooser

2.16.6
Old version, no longer maintained: 2.18 2009-09-23[59] New widget: GtkInfoBar

Improvement on file chooser, printing

To remove much of the necessary IPC between the X11 application and the X11 server, GDK is rewritten (mainly by Alexander Larsson) to use "client-side windows", i.e., the GdkWindow, which every widget must have, belongs now to the client

2.18.9
Old version, no longer maintained: 2.20 2010-03-23[60] New widgets:
  • GtkSpinner
  • GtkToolPalette
  • GtkOffscreenWindow

Improvement on file chooser, keyboard handling, GDK

Introspection data is now included in GTK

2.20.1
Old version, no longer maintained: 2.22 2010-09-23[61] GdkPixbuf moved to separate module

Most GDK drawing are based on Cairo

Many internal data are now private and can be sealed in preparation to GTK 3

2.22.1
Older version, yet still maintained: 2.24 2011-01-30[62] New widget: GtkComboBoxText

The CUPS print backend can send print jobs as PDF

GtkBuilder has gained support for text tags and menu toolbuttons and many introspection annotation fixes were added

Migrating from GTK+ 2.x to GTK+ 3

2.24.32
(2018-01-08)
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release
GTK 3
Old version, no longer maintained: 3.0 2011-02-10[63] Development and design of the GTK 3 release of the toolkit started in February 2009 during the GTK Theming Hackfest held in Dublin[64]
  • The first draft of the development roadmap was released on 9 April 2009[65]

Completed mostly Project Ridley

  • the attempt to consolidate several libraries that were external to GTK+
  • including libgnome, libgnomeui, libgnomeprint22, libgnomeprintui22, libglade, libgnomecanvas, libegg, libeel, gtkglext, and libsexy[66]

All the rendering is done using Cairo

GDK became more X11 agnostic

XInput2, theme API is based on Cascading Style Sheets (CSS), worsening the achievable performance for 60 Hz frame rates

3.0.12
Old version, no longer maintained: 3.2 2011-09-25[67] New widgets:
  • GtkLockButton
  • GtkOverlay

New Font Chooser dialog

New experimental backends:

3.2.4
Old version, no longer maintained: 3.4 2012-03-26[68] Menu support in GtkApplication

A new color chooser

Added support for touch devices

Added support for smooth scrolling

GtkScrolledWindow will do kinetic scrolling with touch devices

macOS support is improved

This is the first version of GTK 3 that works well on Windows

The Wayland backend is updated to the current Wayland version

Spin buttons have received a new look

Accessibility: the treeview accessible support is rewritten

More complete CSS theming support

3.4.4
Old version, no longer maintained: 3.6 2012-09-24[69] New widgets:
  • GtkSearchEntry
  • GtkMenuButton
  • GtkLevelBar

Vertical spin buttons

CSS animations, blur shadows

Support for cross-fading and transitions in themes

3.6.5
Old version, no longer maintained: 3.8 2013-03-25[70] Wayland 1.0 stable support

Support for the broadwayd server

Improved theming

Better geometry management

Touch improvements

Support with the window manager for the frame synchronization protocol

GdkFrameClock added[71]

3.8.9
Old version, no longer maintained: 3.10 2013-09-23[72] New widgets:
  • GtkHeaderBar
  • GtkPlacesSidebar
  • GtkStack
  • GtkStackSwitcher
  • GtkRevealer
  • GtkSearchBar
  • GtkListBox

Support for Wayland 1.2

  • maximization
  • animated cursors
  • multiple monitors
  • settings
  • custom surfaces
  • frame synchronization

Added:

  • client-side decorations
  • scaled output support on high-dpi screens
  • fine-adjustment mode for scrolling

Removed:

  • support for the Motif DND protocol
  • support for multiple screens per display
  • gdk_window_get_display
  • gtk_widget_push_composite_child

Tear-off menu-items, plus many GTK settings

The modern GTK drawing model

3.10.9
Old version, no longer maintained: 3.12 2014-03-25[73] Client-side decorations[74]

Support for Wayland 1.5

New widget: GtkPopover (an alternative to menus and dialogs)

3.12.2
Old version, no longer maintained: 3.14 2014-09-22[75] GtkInspector (a copy of gtkparasite) introduced[76][77]

Improved support for gestures/multi-touch merged[78][79]

Deprecated:[80]

  • GtkMisc
  • GtkAlignment
  • GtkArrow
  • GdkColor
  • Style regions
  • support for .icon files
  • gdk_window_flush
  • drawing outside of begin/end paint

Most widgets converted to use gestures internally

Wayland supports GNOME Shell classic mode[81]

3.14.15
Old version, no longer maintained: 3.16 2015-03-22[82] GDK supports rendering windows using OpenGL for X11 and Wayland using libepoxy

New widgets:

  • GtkGLArea
  • GtkStackSidebar
  • GtkModelButton
  • GtkPopoverMenu

Scrolling overhauled (scrollbar hidden by default[83])

Experimental Mir backend[84]

3.16.7
Old version, no longer maintained: 3.18 2015-09-23[85] Add CSS node infrastructure

More filechooser design refresh and better filechooser search

Dropped Windows XP support

Model support for list and flow box

Kinetic touchpad scrolling

Touchpad gestures (Wayland)

gtk-builder-tool utility

Output-only windows

3.18.9
Old version, no longer maintained: 3.20 2016-03-21[86] Further Integration of CSS nodes[87]

Move drag and drop down to GDK

New widget: GtkShortcutsWindow (shows keyboard shortcuts and gestures of an application)

3.20.10
Older version, yet still maintained: 3.22 2016-09-21[88] Last 3.x release[23]

Wayland tablet support is merged,[89] support for graphics tablets is considered feature complete[90]

GTK 3.22 shall be as rock-stable (and hence "boring") as GTK 2[27][91][92]

for 3+ years
3.22.29
Current stable version: 3.24 2018-09-03[93] 3.22 was supposed to be the very last version of GTK 3 series

Dependency bumps – require:

  • libepoxy 1.4
  • pango 1.41

New font chooser features:

  • allow setting OpenType font features
  • show examples for OpenType font features
  • allow selecting OpenType font variations
  • support levels of details for selection

New Emoji features:

  • support a completion popup for Emoji
  • drop Ctrl-Shift-e shortcut

Other new APIs: gdk_window_move_to_rect

Wayland: use anonymous shared memory on FreeBSD

Backported event controllers from GTK 4:

  • GtkEventControllerScroll
  • GtkEventControllerMotion
  • GtkEventControllerKey
  • GtkGestureStylus

Deprecate a few APIs that are gone in GTK 4:

  • focus chains in GtkContainer
  • stepper sensitivity in GtkRange
3.23.0
3.23.1
3.23.2
3.23.3
3.24.0
3.24.5
3.24.14
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release
GTK 4 development series
Old version, no longer maintained: 3.90 2017-03-31[94] GTK Scene Graph Kit (GSK) merged[95]

Remove any API marked as deprecated

Heavy development

A new Vulkan-renderer augments the old Cairo-renderer[96]

3.89.1

3.89.2
3.89.4
3.89.5
3.90

Old version, no longer maintained: 3.92 2017-10-18[97][98] As GNOME 3.26 was released already on September 13th 2017[99], it was not based on GTK 3.92.

GNU autotools was replaced with Meson.

3.91.0

3.91.1
3.91.2
3.92.1

Old version, no longer maintained: 3.94 2018-06-26[100] 3.93
  • GdkScreen, GdkVisual removed
  • GdkDeviceManager replaced by GdkSeat
  • Clipboard handling is moved from GTK to GDK
  • GdkEvent is converted to an opaque GObject
  • the GL renderer in GSK is substantially completed, and is now on par with the Vulkan renderer
  • the use of GdkPixbuf in APIs is reduced
    • and the GskTexture object is moved to GDK as GdkTexture, to take its place
  • the Wayland backend now implements the KDE server-side decoration protocol
  • Broadway is ported to GSK.

GdkWindow renamed to GdkSurface

New abstraction for drawable content: GdkPaintable

There is support for displaying media with:

  • GtkVideo
  • GtkMediaFile
  • GtkMediaStream
  • GtkMediaControls
3.93
3.94.0
Old version, no longer maintained: 3.96 2019-05-07[101] The gtk4-builder-tool simplify command has gained a --3to4 option to convert GTK3 ui files to GTK4; though with AMTK menus, toolbars or other objects like GtkShortcutsWindow are created programmatically (not with a *.ui file), but with convenient APIs.[102]

GtkWidget can now use a GtkLayoutManager for size allocation

  • layout managers can optionally use layout children holding layout properties
  • GtkBinLayout, GtkBoxLayout, GtkGridLayout, GtkFixedLayout and GtkCustomLayout are currently available
  • more layout manager implementations will appear in the future

Focus handling has been rewritten, and focus-change event generation has been unified with crossing events

Events have been simplified and are just used for input:

  • expose events have been replaced by a GdkSurface::render signal
  • configure events have been replaced by a GdkSurface::size-changed signal
  • map events have been replaced by a GdkSurface::mapped property
  • gdk_event_handler_set has been replaced by a GdkSurface::event signal
  • key events no longer contain a string
  • events on unmapped widgets are ignored
3.96.0
Latest preview version of a future release: 3.98 2020-02-10[2]
  • Performance improvements
  • Drag and drop refactoring
  • Moving GDK towards Wayland
  • Removals
    • GtkMenu, GtkToolbar and similar classes have been replaced by GMenu.
  • Additions
    • Emoji chooser
    • Text widgets now have undo stacks
    • A new layout manager[103]
3.98.2
Future release: 4.0 2020 autumn[104] Remove any API marked as deprecated, i.e. at least everything in the deprecated directory
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

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

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. Clasen, Matthias (27 April 2020). "gtk+ 3.24.20". GNOME Mail Services (Mailing list). Retrieved 27 April 2020.
  2. Clasen, Mathias (6 June 2020). "gtk 3.98.5". GNOME Mail Services (Mailing list). Retrieved 6 June 2020.
  3. "The GTK Open Source Project on Open Hub: Languages Page". www.openhub.net.
  4. Bassi, Emmanuele (2019-02-06). "Project rename to "GTK"". mail.gnome.org. GNOME mailinglist. Retrieved 2019-02-07.
  5. The GTK+ Team. "GTK+ Features". Retrieved 8 September 2014.
  6. "Documentation". www.x.org.
  7. "GTK+ 3 Reference Manual". Retrieved 2017-07-15.
  8. "Using GTK+ with Broadway". GNOME Developer. GNOME. Retrieved 6 March 2018.
  9. "Broadway - GitHub symbiose/symbiose Wiki". GitHub. Retrieved 6 March 2018.
  10. "GTK+ to Use Cairo Vector Engine". Retrieved 2009-12-27.
  11. "Matthias Clasen DevConf.cz 2018 talk about GTK+ 4" (PDF). 2018-01-26.
  12. "Introducing GtkInspector". 2014-05-15.
  13. "Another GtkInspector update". 2014-07-11.
  14. "Debian -- Package Search Results -- gazpacho". packages.debian.org.
  15. "Nothing-personal - A development site for Crow Designer, GuiLoader and Rally - Google Project Hosting". Archived from the original on 2013-01-24. Retrieved 2014-02-17.
  16. The GTK+ Team. "GTK+ Language Bindings". www.gtk.org. Retrieved 3 June 2017.
  17. "Gtk# is a Mono/.NET binding to the cross platform Gtk+ GUI toolkit and the foundation of most GUI apps built with Mono: mono/gtk-sharp". November 16, 2019 via GitHub.
  18. "Download Gtk#". The GTK+ Project.
  19. "GNOME Quick SWOT Analysis". The GNOME Project. Retrieved March 18, 2014.
  20. "GTK+ and GNOME Mailing Lists". The GNOME Project. Retrieved December 4, 2011.
  21. "About". GNOME Users And Developers European Conference (GUADEC). Archived from the original on October 4, 2011. Retrieved December 3, 2011.
  22. "GNOME Languages". Ohloh. Black Duck Software. Retrieved May 22, 2014.
  23. "Versioning and long term stability promise in GTK". GTK development blog. 2016-09-01.
  24. "Build system change GTK's master branch". mail.gnome.org.
  25. "How Does One Create A Gtk+ Application? – Morten Welinder". blogs.gnome.org. Retrieved 3 June 2017.
  26. mclasen (November 20, 2015). "A GTK+ update". Goings on.
  27. "GUADEC2013: Benjamin Otte talks about GTK+". GUADEC.
  28. Larabel, Michael (2014-01-12). "The Biggest Problem With GTK & What Qt Does Good". Phoronix. Retrieved 2014-09-10.
  29. "The future of Razor and LXDE-Qt". LXDE Blog. 22 July 2013.
  30. Hong Jen Yee (2013-03-26). "PCManFM Qt 0.1.0 released". Retrieved 2014-09-10.
  31. "Audacious - An Advanced Audio Player". audacious-media-player.org.
  32. Lindgren, John (2014-05-06). "Ugly window decorations and how to fix them (GTK 3.12)". Retrieved 2014-10-21.
  33. Gerald Combs (2013-10-15). "We're switching to Qt". Retrieved 2015-08-19.
  34. "GTK+". WxWidgets Compared To Other Toolkits.
  35. "GTK+ TTY Port". Slashdot. Retrieved 2010-08-31.
  36. "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)
  37. "What is the + in GTK+?". 2011. Archived from the original on 2012-03-26. Retrieved 2014-03-18.
  38. "Rename some references to GTK+ (d080be3e) · Commits · GNOME / gtk". GitLab.
  39. "Projects/GTK/OSX - GNOME Wiki!". wiki.gnome.org.
  40. "GTK Download: Mac OS X". www.gtk.org.
  41. "GTK Download: Windows". www.gtk.org.
  42. "GTK+ for Windows Runtime Environment". SourceForge.
  43. "GTK+". www.tarnyko.net.
  44. "GTK+ for Windows Runtime Environment Installer (fork from http://gtk-win.sourceforge.net): tschoonj/GTK-for-Windows-Runtime-Environment-Installer". November 19, 2019 via GitHub.
  45. http://h41379.www4.hpe.com/openvms/products/ips/gtk.html
  46. http://h41379.www4.hpe.com/openvms/products/ips/gtk_down.html
  47. https://mclasen.fedorapeople.org/gtk4-devconf2018.pdf
  48. Amundson, Shawn T. (13 April 1998). "ANNOUNCE: GTK+ 1.0.0 Released!". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  49. Amundson, Shawn T. (25 February 1999). "ANNOUNCE: GTK+ and GLib 1.2.0 Released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  50. Taylor, Owen (11 March 2002). "GTK+-2.0.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  51. Taylor, Owen (22 December 2002). "GTK+-2.2.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  52. Taylor, Owen (16 March 2004). "GTK+-2.4.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  53. Clasen, Mathias (16 December 2004). "GTK+-2.6.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  54. Clasen, Mathias (13 August 2005). "GTK+ 2.8.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  55. Clasen, Mathias (3 July 2006). "GTK+ 2.10 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  56. Clasen, Mathias (14 September 2007). "GTK+ 2.12 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  57. Clasen, Mathias (4 September 2008). "GTK+ 2.14.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  58. Clasen, Mathias (13 March 2009). "GTK+ 2.16.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  59. Clasen, Mathias (23 September 2009). "GTK+ 2.18.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  60. Clasen, Mathias (23 March 2010). "GTK+ 2.20.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  61. Clasen, Mathias (23 September 2010). "GTK+ 2.22.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  62. Clasen, Mathias (20 January 2011). "GTK+ 2.24.0". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  63. Clasen, Mathias (10 February 2011). "GTK+ 3.0.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  64. "Gtk+ 3.0 Theming API Hackfest". Silicon Island. Retrieved 3 June 2017.
  65. "Gtk+ 3 roadmap draft". Retrieved 3 June 2017.
  66. "Attic/ProjectRidley - GNOME Wiki!". wiki.gnome.org.
  67. Clasen, Mathias (25 September 2011). "GTK+ 3.2.0". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  68. Clasen, Mathias (26 March 2012). "GTK+ 3.4.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  69. Clasen, Mathias (24 September 2012). "GTK+ 3.6.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  70. Clasen, Mathias (25 March 2013). "GTK+ 3.8.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  71. "Frame clock: GDK 3 Reference Manual". developer.gnome.org.
  72. Clasen, Mathias (23 September 2013). "GTK+ 3.10.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  73. Clasen, Mathias (25 March 2014). "GTK+ 3.12 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  74. "Client-side decorations in themes | Goings on".
  75. Clasen, Mathias (22 September 2014). "GTK+ 3.14.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  76. Matthias Clasen (2014-05-15). "GtkInspector Author's blog entry". Retrieved 2014-05-17.
  77. "GtkInspector in GNOME wiki". 2014-05-15. Retrieved 2014-05-17.
  78. "Merging gestures into 3.14". 2014-05-23. Retrieved 2014-05-23.
  79. "RFC: gestures". 2014-03-04. Retrieved 2014-05-23.
  80. "gtk+ 3.13.2". 2014-05-27.
  81. "gtk+ 3.13.3". 2014-06-24.
  82. Clasen, Mathias (22 March 2015). "GTK+ 3.16.0 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  83. online, heise. "Linux-Desktop: Neues Gnome zeigt Nachrichten oben". heise online. Retrieved 3 June 2017.
  84. "GTK+ 3.16.0 released". mail.gnome.org. Retrieved 3 June 2017.
  85. Nestor, Marius (Sep 24, 2015). "GTK+ 3.18.0 Officially Released as Part of the GNOME 3.18 Desktop Environment". Softpedia. Retrieved 25 May 2019.
  86. Clasen, Mathias (21 March 2016). "GTK+ 3.20". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  87. "GTK+ 3.20 – Style Classes and Element Names". 2015-11-20.
  88. Clasen, Mathias (21 September 2016). "GTK+ 3.22 released". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  89. "GTK+ Wayland tablet support is merged – Carlos Garnacho".
  90. "hutterer input". www.x.org.
  91. "Gtk 4.0 will not be stable until Gtk 4.6". 2016-06-13.
  92. "Gtk 5.0 will not be stable until Gtk 5.6". 2016-06-14.
  93. Clasen, Mathias (3 September 2018). "gtk+ 3.24.0". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  94. Clasen, Mathias (31 March 2017). "gtk+ 3.90.0". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  95. "Projects/GTK/Roadmap - GNOME Wiki!". wiki.gnome.org.
  96. "Commits · master · GNOME / gtk". GitLab.
  97. Clasen, Mathias (18 October 2017). "gtk+ 3.92.1". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  98. Clasen, Mathias (October 23, 2017). "GTK+ 3.92". GTK Development Blog. Retrieved 25 May 2019.
  99. "GNOME 3.26 Released". 2017-09-13.
  100. Clasen, Mathias (26 Jun 2018). "gtk+ 3.94.0". GNOME Mail Services (Mailing list). Retrieved 20 May 2019.
  101. Clasen, Mathias (7 May 2019). "gtk 3.96". GNOME Mail Services (Mailing list). Retrieved 28 May 2019.
  102. "Introducing amtk".
  103. Clasen, Matthias (2020-02-13). "GTK 3.98". GTK+ Development Blog. Retrieved 2020-02-18.
  104. Clasen, Matthias (29 August 2019). "GTK BoF at Guadec". GTK+ Development Blog. Retrieved 15 September 2019.

Bibliography

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.