GTK is a multi-platform toolkit for creating graphical user interfaces.
Go to file
Matthias Clasen 5a9547da41 gtk-demo: Add an svg paintable demo
It is a little annoying that this demo will not show up
if we don't find librsvg, but I think showing how easy
this paintable is outweights the annoyance.
2020-10-06 15:12:09 -04:00
.gitlab/issue_templates
.gitlab-ci Merge branch 'master' into 'matthiasc/for-master' 2020-10-01 13:56:37 +00:00
build-aux
demos gtk-demo: Add an svg paintable demo 2020-10-06 15:12:09 -04:00
docs gtkaboutdialog: Directly specialize GtkWindow 2020-10-06 18:46:48 +02:00
examples Clean up uses of gtk_toggle_button_get/set_active 2020-08-30 21:23:25 -04:00
gdk gdk: Tweak our GL debug message callback 2020-10-06 10:34:30 -04:00
gsk gradient shaders: Reduce out values as well 2020-10-05 20:35:34 -04:00
gtk Merge branch 'matthiasc/for-master' into 'master' 2020-10-06 18:25:48 +00:00
modules Revert "Fix the build with cups < 2.3" 2020-10-01 07:59:30 -04:00
po Update Hebrew translation 2020-09-28 18:59:32 +00:00
po-properties Update Hebrew translation 2020-09-28 19:00:52 +00:00
subprojects Use gtk-doc from master 2020-10-01 15:11:37 -04:00
tests testupload: Test more formats 2020-09-26 17:26:12 -04:00
testsuite scale: Make draw-value default to FALSE 2020-10-04 08:26:44 -04:00
.clang-format
.gitignore
.gitlab-ci.yml ci: Give up on sysprof for now 2020-10-01 07:37:44 -04:00
AUTHORS AUTHORS: some updates 2020-09-12 11:52:14 -04:00
config.h.meson Check for mlock() 2020-09-08 23:50:12 +01:00
CONTRIBUTING.md
COPYING
gtk4-unix-print.pc.in
gtk4.pc.in
gtk.doap
gtk.supp
lsan.supp
make-pot
make-release.sh Update the release script 2020-10-01 15:14:33 -04:00
meson_options.txt meson: Change introspection option to yielding feature 2020-09-30 15:11:27 -04:00
meson.build Require gtk-doc 1.33 2020-10-01 15:09:26 -04:00
NEWS NEWS: Updates 2020-10-05 08:18:56 -04:00
NEWS.pre-1.0
NEWS.pre-2.0
NEWS.pre-3.0
README.md README: Cosmetics 2020-09-01 19:21:32 -04:00

GTK — The GTK toolkit

Build status

General information

GTK is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK is suitable for projects ranging from small one-off projects to complete application suites.

GTK is free software and part of the GNU Project. However, the licensing terms for GTK, the GNU LGPL, allow it to be used by all developers, including those developing proprietary software, without any license fees or royalties.

The official download location

The official web site

The official developers blog

Discussion forum

Nightly documentation can be found at

Building and installing

In order to build GTK you will need:

You will also need various dependencies, based on the platform you are building for:

If you are building the X11 backend, you will also need:

  • Xlib, and the following X extensions:
    • xrandr
    • xrender
    • xi
    • xext
    • xfixes
    • xcursor
    • xdamage
    • xcomposite

If you are building the Wayland backend, you will also need:

  • Wayland-client
  • Wayland-protocols
  • Wayland-cursor
  • Wayland-EGL

Once you have all the necessary dependencies, you can build GTK by using Meson:

$ meson _build .
$ cd _build
$ ninja

You can run the test suite using:

$ meson test

And, finally, you can install GTK using:

$ sudo ninja install

Complete information about installing GTK and related libraries can be found in the file:

docs/reference/gtk/html/gtk-building.html

Or online

How to report bugs

Bugs should be reported on the issues page.

In the bug report please include:

  • Information about your system. For instance:

    • which version of GTK you are using
    • what operating system and version
    • for Linux, which distribution
    • if you built GTK, the list of options used to configure the build

    And anything else you think is relevant.

  • How to reproduce the bug.

    If you can reproduce it with one of the demo applications that are built in the demos/ subdirectory, on one of the test programs that are built in the tests/ subdirectory, that will be most convenient. Otherwise, please include a short test program that exhibits the behavior. As a last resort, you can also provide a pointer to a larger piece of software that can be downloaded.

  • If the bug was a crash, the exact text that was printed out when the crash occurred.

  • Further information such as stack traces may be useful, but is not necessary.

Contributing to GTK

Please, follow the contribution guide to know how to start contributing to GTK.

Release notes

The release notes for GTK are part of the migration guide in the API reference. See:

Licensing terms

GTK is released under the terms of the GNU Lesser General Public License, version 2.1 or, at your option, any later version, as published by the Free Software Foundation.

Please, see the COPYING file for further information.

GTK includes a small number of source files under the Apache license:

  • A fork of the roaring bitmaps implementation in gtk/roaring
  • An adaptation of timsort from python in gtk/timsort