Neha Patil (Editor)

GDK

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Original author(s)
  
GIMP authors

Development status
  
Active

Developer(s)
  
The GNOME Project

Written in
  
C

GDK

Stable release
  
3.22.3 (9 November 2016; 3 months ago (2016-11-09)) [±]

Preview release
  
3.23.91 (1 March 2017; 7 days ago (2017-03-01)) [±]

GDK (GIMP Drawing Kit) is a library that acts as a wrapper around the low-level functions provided by the underlying windowing and graphics systems. GDK lies between the display server 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.

Contents

Like GTK+, GDK is licensed under the GNU Lesser General Public License (LGPL).

Software architecture

GTK+ is implemented on top of an abstraction layer called GDK, freeing GTK+ from low-level concerns like input gathering and pixel format conversion.

GDK is an important part of GTK+'s portability. Since low-level cross-platform functionality is already provided by GLib, all that is needed to make GTK+ run on other platforms is to port GDK to the underlying operating system's graphics layer. Hence, the GDK ports to the Windows API and Quartz are what makes GTK+ applications run on Windows and OS X, respectively.

Starting with GTK+ 2.8, GDK supports Cairo which should be used with GTK+ 3 instead of GDK's drawing functions.

GDK is an intermediate layer which isolates GTK+ from the details of the windowing system. GDK is a thin wrapper around Xlib. The X Window System comes with a low-level library called Xlib. Almost every function in GDK is a very thin wrapper around a corresponding Xlib function; but some of the complexity (and functionality) of Xlib is hidden, to simplify programming and to make GDK easier to port to other windowing systems, such as Wayland or Microsoft Windows. The concealed Xlib functionality will rarely be of interest to application programmers; for example, many features used solely by window managers are not exposed in GDK.

GDK lets you do low level stuff, like e.g. "blit this pixmap to the screen".

GDK provides a layer that is much more portable than say the X protocol, without sacrificing any of the low-level accessibility that systems such as X provide. The true power of this abstraction is that if you choose to use it rather than say, X, your software will automatically render on the Linux Framebuffer and Windows.

Having OpenGL (or OpenGL ES) support in GDK, facilitates a slightly better control of the graphics pipeline; OpenGL is well suited for compositing textured data but totally unsuited for drawing.

Canvas (Scene graph)

In its history GDK contained and linked with a couple of different Canvases.

  • https://wiki.gnome.org/Attic/ProjectRidley/CanvasOverview
  • https://wiki.gnome.org/Attic/ProjectRidley/CanvasOverview/Canvases
  • https://wiki.gnome.org/Projects/GooCanvas
  • GTK+ Scene Graph Kit (GSK)
  • Graphene is the forthcoming GTK+ scene graph (canvas) API.
  • Pigment
  • Developers are also considering new directions for the library, including removing deprecated API components and adding an integrated scene graph (canvas) system, similar to the Clutter graphics library, effectively integrating GTK+ with OpenGL.

    Windowing systems

    GDK contains back-ends to a couple of windowing systems, namely to the X11 and Wayland protocols, to Quartz and GDI, and even to the Hypertext Transfer Protocol (HTTP) engine Broadway.

    With the release of GNOME 3.16 in March 2015, GDK obtained an experimental back-end for the Mir display server protocol. The Mir display server protocol is a product by Canonical for their Ubuntu distribution of Linux, which they intend to compete with the Wayland display server protocol; so far, it is implemented only in Ubuntu.

    At present, no back-end exists for KMS.

    To start an application and force this instance of it to use a certain windowing system, you specify the variable GDK_BACKEND:
    GDK_BACKEND=wayland gnome-calculator
    GDK_BACKEND=wayland CLUTTER_BACKEND=wayland cheese

    GdkPixbuf

    GdkPixbuf is a toolkit for image loading and pixel buffer manipulation. In GTK+ version 2.22 from 2010-09-23 GdkPixbuf was split off from GDK into a separate package in preparation for the transition to GTK+ 3.

  • https://git.gnome.org/browse/gdk-pixbuf/
  • History

    GDK was originally developed on the X Window System for the GIMP raster graphics editor.

    References

    GDK Wikipedia