You are on page 1of 8

GTK+

GTK redirects here. For other uses, see GTK (disam- works on other platforms, including Microsoft Windows
biguation).
(interfaced with the Windows API), and Mac OS X (interfaced with Quartz). There is also an HTML5 back-end
GTK+ (formerly GIMP Toolkit) is a cross-platform called Broadway.
widget toolkit for creating graphical user interfaces.[2] It
is licensed under the terms of the GNU Lesser General
Public License, allowing both free and proprietary software to use it. It is one of the most popular toolkits for the
Wayland and X11 windowing systems, along with Qt.[3]

GTK+ can be congured to change the look of the widgets drawn; this is done using dierent 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 the majority of its
graphical control elements.[4] Since GTK+ version 3.0,
all the rendering is done using Cairo.

Software architecture

1.1 GTK+ Scene Graph Kit (GSK)

GNOME, LXDE, Xfce, Cinammon, etc.


Applications

GTK+ Scene Graph Kit (GSK) is the forthcoming


scene graph (canvas) for GTK+ in the process of being written by Emanuele Bassi.[5]

GTK+
Pango

GDK ATK

Cairo

GIO

GTK+ never had a scene graph and it worked without it.


Clutter then came with its own scene graph, and developers preferred to use Clutters scene graph with GTK+,
facilitated by a library called clutter-gtk.[6] Clutter can
be embedded into every GNOME application by using
the clutter-gtk library. The clutter-gtk library provides
a GtkClutterEmbed GTK+ widget which can be used to
display a ClutterStage.

GLib

Simplied software architecture of GTK+. Pango, GDK, ATK,


GIO, Cairo and GLib

GDK

Some thought went into how to merge Clutter and GTK+


in a better way than the clutter-gtk library.

(GIMP Drawing Kit)


drag and drop (since GTK+ 3.20)

SceneGraphs
up to GTK+ 3.90:

old scene graph

clutter-gtk:
((Clutter 1.22.4, GTK+ 3.6)

Clutter's SceneGraph

There was a presentation at the 2014 Developer Experience Hackfest regarding a new scene graph for GTK+
aimed at being merged into GTK+ 3.16.[7] Then GSK
was planned to be ready and fully integrated into GTK+
version 3.20, to be released in March 2016. This was
postponed to 3.22.[8] And then again it was postponed to
3.90.

starting with GTK+ 3.90:

GSK
(GTK+ SceneGraph Kit)

Back-ends to windowing systems

X11

Wayland

(Linux et al.) (Linux et al.)

Rendering

Cairo

Broadway

Quartz

GDI

(HTTP)

(OS X)

(Win32)

GLib

Core "object system", the


main loop implementation,
utility functions for strings and common data structures

Graphene is a collection of geometry types


points, sizes, rectangles, vectors, quads, quaternions, matrices. It tries to optimize them so that
the naive, four oats for vertex/four vertices for matrix implementation is not the only one available.
Graphenes API makes it possible to avoid exposing
C arrays of oating point values, or opaque memory
regions, enabling the manipulation of vectors and
matrices in other languages as well.

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.13.3 contains 203 active
and 37 deprecated widgets. GTK+ is an object-oriented
widget toolkit written in the C programming language;
it uses GObject, that is the GLib object system, for the
object orientation. While GTK+ is primarily targeted
at windowing systems based upon X11 and Wayland, it Having OpenGL (or OpenGL ES) support in GDK fa1

DEVELOPMENT

cilitates a slightly better control of the graphics pipeline; a WYSIWYG manner. The description of the user inOpenGL is well suited for compositing textured data but terface is independent from the programming language
totally unsuited for drawing.[9]
being used.
Before the adoption of GSK, application developers could
optionally use Clutter. The way widgets were drawn in
GTK+, was, that a draw function drew everything. There 1.5 Language bindings
was no way to know, what has just been drawn. To know
where the mouse pointer was currently hovering over, the Main article: List of language bindings for GTK+
current position had to be computed.
With GSK, it should be fairly easy to write complex A library written in one programming language may be
GTK+
graphical control elements (widgets) and still track eas- used in another language if bindings are written;
[15]
has
a
range
of
bindings
for
various
languages.
ily the whereabout of the mouse pointer. Getting more
conformation with CSS should also arrive.
The latest information about the status of GSK is from 1.5.1 Gtk#
GUADEC 2016.[10]
Gtk# is a set of .NET bindings for the GTK+ GUI toolkit
and assorted GNOME libraries. The library facilitates
1.2 GTK+ input system
building graphical GNOME applications using Mono or
any other compliant CLR. Gtk# is an event-driven sysThe GTK+ input system is basically the X input sys- tem like any other modern windowing library where every
tem. To handle anything more complicated than a simple widget allows you to associate handler methods, which get
mouse button press, e.g. a double click or a long button called when particular events happen.
press, the developer is required to track time and add a
Applications built using Gtk# will run on many plattime out somewhere.
forms including Linux, Windows and OS X. The Mono
packages for Windows include GTK+, Gtk# and a native
theme to make applications look like native Windows ap1.3 GtkInspector
plications. Starting with Mono 1.9, running Gtk# appliGtkInspector has been introduced with version cations on Mac OS X no longer requires the user to run
[18]
3.14.[11][12] GtkInspector can only be invoked after the X11 server.
installing the development package libgtk-3-dev/gtk+- Glade can be used with the Glade# bindings to easily dedevel.
sign GUI applications. A GUI designer called Stetic is
integrated with the MonoDevelop IDE.

1.4

GUI designers

In addition to support the standard GTK/GNOME stack


of development tools, the gtk-dotnet.dll assembly proThere are several GUI designers for GTK+. The follow- vides a bridge to consume functionality available on the
.NET stack. At this point this includes the functionality
ing projects are active as of July 2011:
to use System.Drawing to draw on a widget.
Glade, supports GtkBuilder, which is a GTK+ builtin GUI description format.
Gazpacho, GUI builder for the GTK+ toolkit written in Python[13]

2 Development

GTK+ is mainly developed by The GNOME Project,


Crow Designer, relies on its own GuiXml format and which also develops the GNOME Development Platform
GuiLoader library.[14]
and the GNOME Desktop Environment.[19]
Stetic, part of MonoDevelop, oriented towards GTK+ development is loosely managed. Discussion
chiey occurs on a number of public mailing lists.[20]
Gtk#.
GNOME developers and users gather at an annual
GUADEC meeting to discuss the current state and the
1.4.1 GtkBuilder
future direction of GNOME.[21] GNOME incorporates
standards and programs from freedesktop.org to better
GtkBuilder allows user interfaces to be designed without interoperate with other desktops.
writing code. The interface is described in an Extensible
[22]
Markup Language (XML) le, which is then loaded at GTK+ is mainly written in C. A number of language
runtime and the objects created automatically. The Glade bindings are available.
Interface Designer allows creation of the user interface in On September 1, 2016 a post on the GTK development

Applications

2.1

Criticisms

Media Application

3D Application

possibly adaptations to Wayland/Mir

possibly adaptations to Wayland/Mir

Cairo (Xr)

EFL

SDL

libwayland-client

libwayland-client

libwayland-client

evdev

kms (Kernel Mode Setting)


drm (Direct Rendering Manager)

Linux kernel,

CPU & GPU


cache coherent L2-Caches
main memory

? kdbus ?

unetwork

NetworkManager

packagekitd

libxserver

X-Server

window
manager

X.Org
Xfree86
X-Win32
X11.app

metacity
mutter
KWin
Compiz

kmod-fs-ext4

netlter

device drivers & other modules

radeon nouveau lima etna_viv freedreno tegra-re


Keyboard & Mouse
Touch-Screen
BrailleDisplay

udisks

systemd

GObject
Glib
GModule
GThread
GIO

Alternative display servers:

PulseAudio-d

libinput

glibc
Clibc

(contains udev)

libwayland-server

GLib

Android

libwayland-client
libX/libXCB

System daemons:

weston, clayton, mutter, KWin

Wayland Compositor

GNUstep
wxWidgets
FLTK
...

libwayland / COGL

System libraries:

Widgets for
Unity and Plasma
Ubuntu

Qt

avahi-daemon

Display server:

GTK+
Pango
ATK
Clutter

D-Bus-Daemon

Enlight. DR19

Cairo-Dock

Plasma 2

2D Application
possibly adaptations to Wayland/Mir

User Interface Toolkits (in the form of libraries):

Unity

Desktop widgets
Desktop Shells:

Cinnamon

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 ow into the GTK+ 4 development series with the
version names 3.90, 3.92, etc. Whether the numerous
application that still use GTK+ 2.x, even the Wikipedia
has a couple of articles on those, will be ported to 3.22 or
not, only the future can show.

GNOME Shell

3.1

ALSA: emu20k1, ctx, hda... kmod-ltq-atm-vr9

Hardware

ath9k

UMTS/CDMA/LTE
GPS-receiver
G-sensor

libmir-serv

mir
mir

SF
window
manager

SurfaceFlinger

Compiz

SELinux
TOMOYO
Smack
AppArmor

Ethernet
802.11-(abc)
Bluetooth

libhybris

window
manager
AWM

libbionic

binder ashmem pmem


wakelocks logger ...

Linux kernel
(Android-forked)

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


adapted to Wayland as well

The most common criticism towards GTK+ is a lack of


backwards-compatibility in major updates, most notably
in the API[24] and theming.[25]
The compatibility breaks between minor releases during
the GTK+ 3.x development cycle has been explained by
Benjamin Otte as due to strong pressures to innovate,
such as providing the features modern users expect and
supporting the increasingly inuential 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 Screenshot of GIMP 2.4. GTK+ is responsible for managing the
interface components of the program, including the menus, buttowards stability.[26] Similarly, recent changes to themtons, and input elds.
ing are specically intended to improve and stabilise that
part of the API, meaning some investment now should be
rewarded later.
Some notable applications that use or once used GTK+
Dirk Hohndel, co-developer of Subsurface and
as a widget toolkit include:
member of Intel's Open-Source Technology Center,
criticized the GTK+ developers for being abrasive
GNOME Core Applications as part of GNOME
and ignoring most community requests.[27]
desktop environment, developed in concert with
Hong Jen Yee, developer of LXDE, expressed disGTK+ itself.
dain for version 3 of the GTK+ toolkits radical API
changes and increased memory usage, and ported
AbiWord Word processor
PCManFM to Qt additionally. PCManFM is being
developed with a GTK+ and with a Qt at the same
Anjuta Integrated development environment
time.[28]
(IDE)
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.[29] 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.[30]

Ardour Digital audio workstation

Wireshark also is transitioning to use Qt due to not


having a good experience with its cross-platform
support.[31]

GNU Emacs can use GTK when running under X.

3
3.1

Uses
Applications

Main articles: List of GTK+ applications and Software


that uses GTK+-category

Chromium Web browser (Until version 34, replaced by Aura in version 35+)
Ekiga (formerly GnomeMeeting) VoIP and video
conferencing application

Evolution Personal information manager


gcong Linux kernel source conguration utility.
Geany a lightweight cross-platform IDE and
GTK+ text editor based on Scintilla.
GIMP Raster graphics editor
Gnumeric Spreadsheet application
Gramps Genealogy software

EXAMPLE

Inkscape Vector graphics editor for SVG

can also run under Microsoft Windows, where it is used


by some popular cross-platform applications like Pidgin
LiVES Video editor
and GIMP. wxWidgets, a cross-platform GUI toolkit,
[32]
Midori Minimalistic web browser using GTK- uses GTK+ for GNU/Linux operating systems. Other
(used by the Debian installer, for
WebKit as rendering engine and GTK+ as widget ports include DirectFB[33]
example)
and
ncurses.
toolkit
Pidgin Instant messenger application

3.2

Desktop environments

Main page: Desktop environments based on GTK+


Several desktop environments utilize GTK+ as the widget
toolkit.

3.3 Window managers


The following window managers use GTK+:
Aewm
AfterStep
Amaterus

GNOME, based on GTK+, meaning that programs


native to GNOME use GTK+

Consortium

Unity, the default desktop environment of Ubuntu

Marco

Consort, the GNOME 3.4 Fallback Mode fork


from SolusOS

Metacity

Budgie, built from scratch the SolusOS successor,


Solus

IceWM

Mun
Mutter

Cinnamon, a fork of GNOME 3 and uses GTK+


version 3

Sawsh

MATE, a fork of GNOME 2, which has been updated to support GTK+ 3

Xfwm

Xfce, currently based on GTK+ 2 with support for


and eventual plans for a migration to GTK+ 3

Wmg

4 Example

LXDE (Lightweight X11 Desktop Environment) is


The following code presents a graphical GTK+ hellobased on GTK+ 2
world program in the C programming language. This
Pantheon uses GTK+ 3 exclusively, being developed program has a window with the title Hello, world!" and
by elementary OS
a label with similar text.
Sugar is a desktop environment oriented towards #include <gtk/gtk.h> int main (int argc, char *argv[]) {
childrens education, which uses GTK+, especially GtkWidget *window; GtkWidget *label; gtk_init(&argc,
&argv); /* Create the main, top level window */ window
PyGTK
= gtk_window_new(GTK_WINDOW_TOPLEVEL);
ROX Desktop, a lightweight desktop, with features /*
Give
it
the
title
*/
from the GUI of RISC OS
gtk_window_set_title(GTK_WINDOW(window),
Hello, world!");
/* Center the window */
GPE, the GPE Palmtop Environment
gtk_window_set_position(GTK_WINDOW(window),
/*
Access Linux Platform (successor of the Palm OS GTK_WIN_POS_CENTER);
Set
the
windows
default
size
*/
PDA platform)
gtk_window_set_default_size(GTK_WINDOW(window),
KDE, though based on Qt, has integration with 200, 100); /* ** Map the destroy signal of the window to
GTK+-based programs and themes since version 4.2 gtk_main_quit; ** When the window is about to be destroyed, we get a notication and ** stop the main GTK+
GTK+ programs can run on top of X11-based desktop loop by returning 0 */ g_signal_connect(window, deenvironments or window managers even those not made stroy, G_CALLBACK(gtk_main_quit), NULL); /* **
with GTK+, provided the required libraries are installed; Assign the variable label to a new GTK label, ** with
this includes Mac OS X if X11.app is installed. GTK+ the text Hello, world!" */ label = gtk_label_new(Hello,

5
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 rst in debian or derivatives:
$ sudo apt-get install libgtk-3-dev
Using pkg-cong in a Unix shell, this code can be compiled with the following command (assume above source
has le name helloworld.c):
$ cc -Wall helloworld.c -o helloworld $(pkg-cong -cags --libs gtk+3.0)
Invoke the program
$ ./helloworld

dering 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
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
Object Windows Library (OWL)

History

Ultimate++
Visual Component Library (VCL)

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 called the GIMP toolkit and had successfully replaced Motif by the 0.60 release of GIMP.[34] Finally
GTK was re-written to be object-oriented and was renamed GTK+.[35] This was rst 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 UTF8 strings, and a more exible 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.

Windows Forms the system for creating graphical


user interfaces and elements in the Microsoft family
of products
Windows Presentation Foundation the system created by Microsoft to replace Windows Forms in GUI
development
List of widget toolkits

7 References
[1] The GTK+ Open Source Project on Ohloh. Ohloh.net.
Retrieved 2014-02-17.
[2] The GTK+ Team.
September 2014.

GTK+ Features.

Retrieved 8

[3] Developing X applications.


[4] GTK+ to Use Cairo Vector Engine. Retrieved 200912-27.
[5] The GTK+ Scene Graph Kit. 2014-07-29.
[6] clutter-gtk on git.gnome.

5.1

Releases

The GNOME team releases new versions on a regular basis.

[7] 2014 Developer Experience Hackfest: A scene graph for


GTK+ 3.16.
[8] GNOME Wiki: roadmap for GTK+".
[9] Graphene. 2014-05-02.

See also

[10] {{url=https://www.youtube.com/watch?v=
QzJHEpKdefA |title=GTK: are we in the future,
yet? |last=Bassi |First=Emmanuele |date=2016-08-16}}

GDK the GIMP Drawing Kit lies between the


xlib and the GTK+ library, handling basic ren- [11] Introducing GtkInspector. 2014-05-15.

EXTERNAL LINKS

[12] Another GtkInspector update. 2014-07-11.

[39] GTK 3.12 introduced client-side decorations.

[13] Gazpacho in Debian.

[40] Matthias Clasen (2014-05-15). GtkInspector Authors


blog entry. Retrieved 2014-05-17.

[14] nothing-personal - A development site for Crow Designer, GuiLoader and Rally - Google Project Hosting.
Retrieved 2014-02-17.
[15] GTK+ Language Bindings

[42] Merging gestures into 3.14. 2014-05-23. Retrieved


2014-05-23.

[16] Release 2.12.41.

[43] RFC: gestures. 2014-03-04. Retrieved 2014-05-23.

[17] Release 2.99.3.

[44] gtk+ 3.13.2. 2014-05-27.

[18] Download [Gtk#]". The GTK+ Project.


[19] GNOME Quick SWOT Analysis. The GNOME Project.
Retrieved March 18, 2014.
[20] GTK+ and GNOME Mailing Lists.
Project. Retrieved December 4, 2011.

[41] GtkInspector in GNOME wiki. 2014-05-15. Retrieved


2014-05-17.

The GNOME

[21] About. GUADEC. 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.

[45] gtk+ 3.13.3. 2014-06-24.


[46] Linux-Desktop: Neues Gnome zeigt Nachrichten oben
[47] GTK+ 3.16.0 released
[48] GTK+ 3.20 Style Classes and Element Names. 201511-20.
[49] GTK+ Wayland tablet support merged.
[50] libinput as of September 2016.
[51] Gtk 4.0 will not be stable until Gtk 4.6. 2016-06-13.

[24] How Does One Create A Gtk+ Application? Morten


Welinder

[52] Gtk 5.0 will not be stable until Gtk 5.6. 2016-06-14.

[25]

8 Bibliography

[26] 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.

Krause, Andrew (April 23, 2007), Foundations of


GTK+ Development (1st ed.), Apress, ISBN 978-159059-793-4

[28] Hong Jen Yee (2013-03-26). PCManFM Qt 0.1.0 released. Retrieved 2014-09-10.

Wright, Peter (May 15, 2000), Beginning GTK+ and


GNOME (1st ed.), Peer Information, ISBN 978-186100-381-2

[29] Web Upd8 (2014-06-23). Audacious Going Back To


GTK2 Starting With Version 3.6. Retrieved 2014-1021.

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

[30] Lindgren, John (2014-05-06). Ugly window decorations


and how to x them (GTK+ 3.12)". Retrieved 2014-1021.

9 External links

[31] Gerald Combs (2013-10-15). We're switching to Qt..


Retrieved 2015-08-19.

Ocial website

[32] GTK+". WxWidgets Compared To Other Toolkits.

GTK+ 3 Reference Manual

[33] GTK+ TTY Port. Slashdot. Retrieved 2010-08-31.

List of GTK+ applications

[34] LinuxWorld - Where did Spencer Kimball and Peter Mattis go? at the Wayback Machine (archived April 17, 1999)

GTK+ PyGObject for Windows on SourceForge.net


- Python All-In-One PyGI/PyGObject for Windows
Installer (GTK+ 3.18 +)

[35] What is the + in GTK+?". 2011. Archived from the


original on 2012-03-26. Retrieved 2014-03-18.
[36] Alberto Ruiz Hackfest announcement

GTK+ for Windows (MinGW) on SourceForge.net


- (Only up to GTK+ 3.5.4)

[37] Gtk+ 3 roadmap draft

GtkSharp at Mono Project

[38] Project Ridley.

10
10.1

Text and image sources, contributors, and licenses


Text

GTK+ Source: https://en.wikipedia.org/wiki/GTK%2B?oldid=740921984 Contributors: Tobias Hoevekamp, Taw, Danny, Vaganyik,


Dwheeler, Edward, Norm, Nixdorf, Jizzbug, Ixfd64, Ellywa, KAMiKAZOW, Mac, Den fjttrade ankan~enwiki, Marteau, Mike
Linksvayer, Palfrey, Jordi Burguet Castell, Colin Marquardt, Doradus, WhisperToMe, Timc, Pedant17, Motor, Jerey Smith, Fibonacci,
Earthsound, Robbot, Chealer, Tlogmer, Boy b, Ayucat, Hadal, Wereon, Peter L, David Gerard, Enochlau, Somercet, Endx7, Thv, Paul
Richter, Lupin, Paul Pogonyshev, Ds13, Ajgorhoe, Jason Quinn, Daniel Brockman, Pascal666, AlistairMcMillan, Vadmium, Pythagoras1~enwiki, Dnas, Zfr, Positron, JamesGecko, Andreas Kaufmann, Thorwald, Jayjg, Twinxor, Rich Farmbrough, Deh, Samboy, Gronky,
Bender235, Kjoonlee, Evice, RoyBoy, Neilrieck, Spoon!, Nandhp, Robotje, Tmh, Kensai, Giraedata, Jaduncan, Lauri-San, Snore,
Jumbuck, Guy Harris, Conan, Sundar2000, Kartikmohta, Ronark, Suruena, Anthony Ivano, Dafrito, Forderud, ZakuSage, Kbolino,
Bruce89, Oleg Alexandrov, MartinSpacek, Jannex, Quadduc, Deeahbz, Krille, GregorB, Toussaint, Marudubshinki, Kesla, Zephyrxero,
Graham87, Qwertyus, Kbdank71, Phoenix-forgotten, Rjwilmsi, Jsled, ThomasAdam, Drrngrvy, FlaBot, Chobot, Bgwhite, YurikBot, RussBot, FrenchIsAwesome, Kirin, J. M., Stephenb, Ksyrie, Stassats, Hyuri, Toehead2001, Abhishek Dasgupta, Mkouklis, Sekelsenmat, Mmrezaie, Misza13, Zwobot, Bota47, Jeremy Visser, Masatran, Lt-wiki-bot, Deskoop~enwiki, Jim Apple, Andrewski, Composingliger, Ben
D., GrinBot~enwiki, Mardus, Ianavelon, KnightRider~enwiki, A bit iy, SmackBot, Reedy, Ze miguel, BurntSky, Eskimbot, CapitalSasha, Sgiani, Isaac Dupree, JorgePeixoto, Bluebot, Thumperward, Morte, Jerome Charles Potts, Frap, Kjetil1001, Chlewbot, Nth10sd,
Teehee123, Chargh, Mwtoews, Digana, Ozhiker, Vanished user ih3rjk324jdei2, Kpengboy, Flibble, EdC~enwiki, MTSbot~enwiki, Galadh, Greginnj, Iridescent, Thepizzaking, J Di, Martin Kozk, Courcelles, Altonbr, MonkeeSage, FatalError, Matthaeus123, Mathsgeek,
ShelfSkewed, Joelholdsworth, Jeremy.ubuntu, Cydebot, Mblumber, MC10, Cuhlik, Torc2, Ike-bana, PamD, Thijs!bot, Akauppi, Escarbot, Gioto, Olexandr Kravchuk, Bondolo, JAnDbot, Wootery, I80and, BlueRobot~enwiki, EmmanueleBassi, Skew-t, Steeley, Allstarecho,
Gwern, Mirek2, Speck-Made, Bimhau, Adavidb, Dterei, Bellthorpe, Arite, Andareed, MikeCanann, Efrecon~enwiki, DJTekken, Orrs,
AlnoktaBOT, Oshwah, Technopat, Rei-bot, Canaima, BotKung, Korin43, Aither~enwiki, Operating, Crashie, Karol Ossowski, AMAMH,
EmxBot, Technion, Gjwkayon, Veryfaststu, X-Fi6, Jerryobject, Flyer22 Reborn, DaBler, Free Software Knight, WimTaymans, CarolSpears, Iandiver, Kl4m-AWB, Komoto16, Luzr, Hamid206, Auntof6, Braydonf, Technobadger, Arjayay, ChrisHodgesUK, Stanlavisbad,
Grkan Myczko, SF007, Kagee, DumZiBoT, Emmette Hernandez Coleman, Dsimic, Addbot, Scientus, NjardarBot, CarsracBot, Balabiot,
Luckas-bot, Yobot, Wonder, Reindra, AnomieBOT, Coragonis Munro, 1exec1, Gtz, Efa, Wickorama, PjotAwake, OttoTheFish, ArthurBot, Obersachsebot, Xqbot, Johncc330, CoolingGibbon, Gtfjbl, MarkWarren, Locos epraix, Explorer09, Mark Schierbecker, Uniwersalista, Bes island, DenisKrivosheev, FrescoBot, WikiDisambiguation, Zero Thrust, RoestVrijStaal, Sigeyan, Tom Strong, John85, Citation bot
1, Kopiersperre, DrilBot, Winterst, Gnepets, Jonesey95, XRDoDRX, RedBot, Jandalhandler, Full-date unlinking bot, Txt.le, Dega180,
Necromantiarian, Cha0s6983, Jjardon, Shnatsel, Blue Em, Persian knight shiraz, Topseld99, Sand & Mercury, Lopifalko, Born2bgratis,
Lineplus, EmausBot, John of Reading, Dewritech, TheGeomaster, Alisha.4m, Jaycee55, . , Lucashn, TheodoreYou,
ChuispastonBot, Kenny Strawn, Voomoo, SerkanK, Matthiaspaul, Snotbot, Muhnak, Pdrsantos, Praveen Illa, Helpful Pixie Bot, BG19bot,
Gjwucherpfennig, Maxim Udushlivy, , Exercisephys, Shirudo, Mleeds12, Doors5678, Dexbot, Rezonansowy, Codename Lisa,
ComfyKem, teca Horvat, Echinacin35, Wardinary, Matthias2Shalom, Myconix, Davidgumberg, Comp.arch, CameronNemo, Semsi
Paco Virchow, ScotXW, GbDorn, Editorfun, Ryoqun, OMPIRE, Jcolag, Mikidep, Helios crucible,
, Miraclexix, KasparBot,
Sam-m888, Trembluer12, TavixVi, RainFall and Anonymous: 333

10.2

Images

File:Commons-logo.svg Source: https://upload.wikimedia.org/wikipedia/en/4/4a/Commons-logo.svg License: CC-BY-SA-3.0 Contributors: ? Original artist: ?


File:Folder_Hexagonal_Icon.svg Source: https://upload.wikimedia.org/wikipedia/en/4/48/Folder_Hexagonal_Icon.svg License: Cc-bysa-3.0 Contributors: ? Original artist: ?
File:Free_and_open-source-software_display_servers_and_UI_toolkits.svg Source:
https://upload.wikimedia.org/wikipedia/
commons/7/7b/Free_and_open-source-software_display_servers_and_UI_toolkits.svg License: CC BY-SA 3.0 Contributors: Own work
Original artist: ScotXW
File:Free_and_open-source_software_logo_(2009).svg Source: https://upload.wikimedia.org/wikipedia/commons/3/31/Free_and_
open-source_software_logo_%282009%29.svg License: Public domain Contributors: FOSS Logo.svg Original artist: Free Software Portal
Logo.svg (FOSS Logo.svg): ViperSnake151
File:GDK_software_architecture.svg Source: https://upload.wikimedia.org/wikipedia/commons/2/2c/GDK_software_architecture.svg
License: CC BY-SA 4.0 Contributors: Own work Original artist: ScotXW
File:GIMP2.4-English.png Source: https://upload.wikimedia.org/wikipedia/commons/5/5b/GIMP2.4-English.png License: GPL Contributors: Transferred from en.wikipedia to Commons. Original artist: The original uploader was Brandemk at English Wikipedia
File:GTK+_logo.svg Source: https://upload.wikimedia.org/wikipedia/commons/4/42/GTK%2B_logo.svg License: CC-BY-SA-3.0 Contributors: http://live.gnome.org/GTKLogo Original artist: Andreas Nilsson
File:GTK+_software_architecture.svg
Source:
https://upload.wikimedia.org/wikipedia/commons/a/ab/GTK%2B_software_
architecture.svg License: CC BY-SA 4.0 Contributors: Own work Original artist: ScotXW
File:Gtk3-widget-factory-3.16.0.png Source: https://upload.wikimedia.org/wikipedia/commons/8/8a/Gtk3-widget-factory-3.16.0.png
License: CC BY-SA 4.0 Contributors: Own work Original artist:
File:Gtk_Sharp_Logo.png Source: https://upload.wikimedia.org/wikipedia/commons/5/5f/Gtk_Sharp_Logo.png License: Public domain Contributors: http://gtk-sharp.sourceforge.net/ Original artist: ?
File:Heckert_GNU_white.svg Source: https://upload.wikimedia.org/wikipedia/en/2/22/Heckert_GNU_white.svg License: CC-BY-SA2.0 Contributors:
gnu.org Original artist:
Aurelio A. Heckert <aurium@gmail.com>
File:Wikibooks-logo-en-noslogan.svg Source: https://upload.wikimedia.org/wikipedia/commons/d/df/Wikibooks-logo-en-noslogan.
svg License: CC BY-SA 3.0 Contributors: Own work Original artist: User:Bastique, User:Ramac et al.

10

10.3

Content license

Creative Commons Attribution-Share Alike 3.0

TEXT AND IMAGE SOURCES, CONTRIBUTORS, AND LICENSES

You might also like