Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

GTK

From Wikipedia, the free encyclopedia
Free and open-source cross-platform widget toolkit for creating graphical user interfaces
For other uses, seeGTK (disambiguation).

GTK version 4 (gtk4-widget-factory, a collection of examples that demonstrate many of theGUI widgets)
Original author(s)Spencer Kimball,Peter Mattis
Developer(s)The GNOME Project,eXperimental Computing Facility (XCF)
Initial releaseApril 14, 1998; 26 years ago (1998-04-14)
Stable release
4.16.12 / January 3, 2025; 2 months ago (2025-01-03)
Preview release
4.17.4 / February 1, 2025; 45 days ago (2025-02-01)
Repository
Written inC,CSS[1]
Operating systemLinux,Unix-like,macOS,Windows
TypeWidget toolkit
LicenseLGPLv2.1+
Websitegtk.org

GTK (formerlyGIMP ToolKit[2] andGTK+[3]) is afree softwarecross-platformwidget toolkit for creatinggraphical user interfaces (GUIs).[4] It is licensed under the terms of theGNU Lesser General Public License, allowing bothfree andproprietary software to use it. It is one of the most popular toolkits for theWayland andX11windowing systems.[5]

The GTK team releases new versions on a regular basis.[6] GTK 4 and GTK 3 are maintained, while GTK 2 isend-of-life.[7] GTK1 is independently maintained by theCinePaint project.[8]

Software architecture

[edit]
The GTK toolkit
Simplified software architecture ofGTK.Pango,GDK,ATK,GIO,Cairo andGLib
GDK contains back-ends toX11,Wayland, Broadway (HTTP),Quartz, andGDI and relies onCairo for the rendering. Its new SceneGraph is work-in-progress.
This section needs to beupdated. Please help update this article to reflect recent events or newly available information.(May 2024)

The GTKlibrary contains a set of graphical control elements (widgets); version 3.22.16 contains 186 active and 36 deprecated widgets.[9] GTK is anobject-orientedwidget toolkit written in the programming languageC; it usesGObject (that is, theGLib object system) for object orientation. While GTK is mainly used with windowing systems based onX11 andWayland, it works on other platforms, includingMicrosoft Windows (interfaced with theWindows API), andmacOS (interfaced withQuartz). There is also anHTML5 back-end namedBroadway.[10][11]

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 usingCairo torender most of its graphical control elementswidgets.[12] Since GTK version 3.0, all rendering is done using Cairo.[13]

On January 26, 2018 atDevConf.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.[14] On February 6, 2019 it was announced that GTK 4 will drop the “+” from the project's name.[3]

GTK Drawing Kit (GDK)

[edit]
Main article:GDK

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

GTK Scene Graph Kit (GSK)

[edit]
Main article:GTK Scene Graph Kit

GSK is therendering andscene 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.

GtkBuilder

[edit]

GtkBuilder allows user interfaces to be designed without writing code. The interface is described in anExtensible Markup Language (XML) file which is written by hand or generated by a GUI designer, which is then loaded at runtime and the objects created automatically. The description of the user interface is independent from the programming language being used.

Language bindings

[edit]
Main article:List of language bindings for GTK

Language bindings are available for using GTK from languages other than C, includingC++, Genie,JavaScript,Perl,Python,Vala, andothers.[15]

Backends

[edit]

GTK supports various backends, which provides different ways to display GTK applications depending on the system and environment. Examples of GTK backends are:

  • Wayland – Used with the Wayland display server on Linux systems, it is a modern replacement for X11.
  • X11 – The default on Linux systems using the X.Org display server.
  • Win32 – For running GTK applications on Windows.
  • Quartz – For macOS support.
  • Broadway – Allows GTK applications to run in web browsers usingHTML5 andWebSocket.[10][11]

Development tools

[edit]

GUI designers

[edit]
A screenshot ofCambalache Interface Designer

There are severalGUI designers for GTK. Here is a selection of GTK GUI designers:

GTK Inspector

[edit]
A screenshot of the GTK Inspector

The GTK Inspector is a built-in interactive debugging tool in GTK, allowing developers to inspect and modify UI elements, test CSS changes, and analyze widget structure in real time. It can be enabled using theControl + Shift + I orControl + Shift + D shortcuts, or by setting theGTK_DEBUG=interactive environment variable.[20] It was introduced with GTK version 3.14.[21][22]

Features

[edit]
  • Interactive debugging
  • Real-time CSS testing and modifications
  • Widget magnification for detailed inspection
  • UI structure analysis and object property examination
  • Customizable display settings via environment variables
  • Detailed object inspection (type, state, properties, CSS, actions, etc.)
  • Global application information display
  • CSS rule debugging
  • Rendering pipeline recording and inspection

Development

[edit]

GTK is mainly developed byThe GNOME Project, which also develops theGNOME Development Platform and theGNOME Desktop Environment.[23] GTK is mainly written inC.[24] Manylanguage bindingsare available. GTK development is loosely managed.

GNOME developers and users gather at an annualGNOME Users And Developers European ConferenceGUADEC meeting to discuss GNOME's current state and future direction.[25] GNOME incorporates standards and programs fromfreedesktop.org to betterinteroperate with other desktops.[citation needed]

On September 1, 2016, a post on the GTK development blog denoted, among other things, the future numbering scheme of GTK.[26] GTK version 3.22, released in Autumn 2016, was planned to be the last 3.x release, although version 3.24 followed in Fall 2018 with the delay of GTK 4.[27] The development of GTK 4 used version names 3.90, 3.92, etc. until the first GTK 4.0 stable release was launched in December 2020.[28] Despite the first stable GTK 4 release, someapplications using GTK still rely on GTK 2. For example, as of January 2022,GIMP is still being ported to GTK 3.[29]

Build automation

[edit]

The master branch of GTK utilizesMeson for its build automation. GTK (and GNOME, GLib, etc.) formerly utilized theGNU Build System (named Autotools) as thebuild automation system of choice. Since August 14, 2017, the Autotools build system files have been dropped.[30]

Criticism

[edit]

The most common criticism of GTK is the lack of backward-compatibility in major updates, most notably in theapplication programming interface (API)[31] and theming.[32] The result is that application developers or theme developers have to rewrite parts of their code to make it work with a newer version of GTK.

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 influentialWayland 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.[33] 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.

  • Aurélien Gâteau startedGwenview as GTK application but switched to qt early in development.[34]
  • Dirk Hohndel, codeveloper ofSubsurface and member ofIntel's Open-Source Technology Center, criticized the GTK developers for being abrasive and ignoring most community requests.[35]
  • Hong Jen Yee, developer ofLXDE (the GTK version of which was dropped and all efforts focused on theQt port), expressed disdain for version 3 of the GTK toolkit's radical API changes and increased memory usage, and portedPCMan File Manager (PCManFM) toQt. PCManFM is being developed with a GTK and with a Qt backend at the same time.[36]
  • TheAudacious music player moved to Qt in version 3.6.[37] 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."[38]
  • Wireshark has switched to Qt due to not having a good experience with GTK's cross-platform support.[39]

Use

[edit]
GTK's support forWayland requires applications to be adapted to Wayland as well.
Screenshot ofGIMP 2.8 - GTK is responsible for managing the interface components of the program, including the menus, buttons, and input fields.

Applications

[edit]
Main pages:List of GTK applications andCategory:Software that uses GTK

Some notable applications that use GTK as a widget toolkit include:

GTK programs can be run on desktop environments based onX11 andWayland, or others including ones not made with GTK, provided the needed libraries are installed; this includesmacOS ifX11.app is installed. GTK can be also run onMicrosoft Windows. It is used by some popular cross-platform applications likePidgin andGIMP.wxWidgets, a cross-platform GUI toolkit, uses GTK on Linux by default.[40] Other ports includeDirectFB (for example used by theDebian installer).

Desktop environments

[edit]
Main page:Desktop environments based on GTK

Severaldesktop environments utilize GTK as the widget toolkit.

Current

[edit]

Inactive

[edit]

Window managers

[edit]

The following window managers use GTK:

GtkSourceView

[edit]

Forsyntax highlighting there isGtkSourceView, "source code editing widget". GtkSourceView is maintained by GNOME separately from GTK as a library: gtksourceview. There are plans to rename to gsv.[citation needed]

GtkSpell

[edit]

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

History

[edit]

GTK was originally designed and used in theGNU Image Manipulation Program (GIMP) as a replacement of theMotif toolkit; at some pointPeter 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.[41] Finally GTK was re-written to beobject-oriented and was renamed GTK+.[42] This was first used in the 0.99 release of GIMP. GTK was subsequently adopted for maintenance by theGNOME Foundation, which uses it in the GNOME desktop environment.

GTK 2

[edit]

The GTK 2.0.0 release (2002[43]) series introduced new features which include improved text rendering usingPango, a newtheme engine, improved accessibility using theAccessibility Toolkit, transition toUnicode usingUTF-8 strings, and a more flexible API. Starting with version 2.8, GTK 2 depends on theCairo graphics library for rendering vector graphics.

GTK 3

[edit]

GTK version 3.0.0 (2011[44]) included revised input device handling, support for themes written withCSS-like syntax, and the ability to receive information about other opened GTK applications.

The '+' was dropped returning to simply 'GTK' in February 2019 during aHackathon.[45]

OpenVMS

[edit]

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

GTK 4

[edit]

One of the main changes made during the GTK 4 development cycle (i.e. GTK 3.92, etc.) was the removal of user customization options (like individual keyboard shortcuts that could be set in GTK+ 2), and the delegation of functionality to ancillary objects instead of encoding it into the base classes provided by GTK. Other changes include:

  • Event handling from signal handlers described by GtkWidget is delegated to event controllers.
  • Rendering is delegated to GtkSnapshot objects.
  • The layout mechanism is delegated from GtkWidget to GtkLayoutManager.

At the 2018 edition ofDevConf.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.[48]

Releases

[edit]
Release seriesInitial releaseMajor enhancementsLatest minor version
Old version, not maintained: 1.01998-04-13[49]First stable version1.0.
Old version, not maintained: 1.21999-02-25[50]Newwidgets:
  • GtkFontSelector
  • GtkPacker
  • GtkItemFactory
  • GtkCTree
  • GtkInvisible
  • GtkCalendar
  • GtkLayout
  • GtkPlug
  • GtkSocket
1.2.10
Old version, not maintained: 2.02002-03-11[51]GObject

Overall support forUTF-8

2.0.9
Old version, not maintained: 2.22002-12-22[52]Multihead support2.2.4
Old version, not maintained: 2.42004-03-16[53]New widgets:
  • GtkFileChooser
  • GtkComboBox
  • GtkComboBoxEntry
  • GtkExpander
  • GtkFontButton
  • GtkColorButton
2.4.14
Old version, not maintained: 2.62004-12-16[54]New widgets:
  • GtkIconView
  • GtkAboutDialog
  • GtkCellView

The last to supportWindows 98/Me

2.6.10
Old version, not maintained: 2.82005-08-13[55]Most widgets are rendered byCairo2.8.20
Old version, not maintained: 2.102006-07-03[56]New widgets:
  • GtkStatusIcon
  • GtkAssistant
  • GtkLinkButton
  • GtkRecentChooser

Print support: GtkPrintOperation

2.10.14
Old version, not maintained: 2.122007-09-14[57]GtkBuilder2.12.12
Old version, not maintained: 2.142008-09-04[58]JPEG 2000 load support2.14.7
Old version, not maintained: 2.162009-03-13[59]New widget: GtkOrientable

Caps Lock warning in password entry

Improvements on GtkScale, GtkStatusIcon, GtkFileChooser

2.16.6
Old version, not maintained: 2.182009-09-23[60]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, not maintained: 2.202010-03-23[61]New widgets:
  • GtkSpinner
  • GtkToolPalette
  • GtkOffscreenWindow

Improvement on file chooser, keyboard handling, GDK

Introspection data is now included in GTK

2.20.1
Old version, not maintained: 2.222010-09-23[62]GdkPixbuf moved to separate module

Most GDK drawing are based on Cairo

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

2.22.1
Old version, not maintained: 2.242011-01-30[63]New widget: GtkComboBoxText which had previously been a custom widget shipped with Gtkmm

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.33
(2020-12-21)[64]
Old version, not maintained: 3.02011-02-10[65]Development and design of the GTK 3 release of the toolkit started in February 2009 during the GTK Theming Hackfest held in Dublin[66]
  • The first draft of the development roadmap was released on April 9, 2009[67]

Completed mostlyProject Ridley

  • the attempt to consolidate several libraries that were external to GTK+
  • includinglibgnome,libgnomeui,libgnomeprint22,libgnomeprintui22,libglade,libgnomecanvas,libegg,libeel,gtkglext, andlibsexy[68]

All the rendering is done using Cairo

GDK became more X11 agnostic

XInput2, theme API is based onCascading Style Sheets (CSS), worsening the achievable performance for 60 Hzframe rates

3.0.12
Old version, not maintained: 3.22011-09-25[69]New widgets:
  • GtkLockButton
  • GtkOverlay

New Font Chooser dialog

New experimental backends:

3.2.4
Old version, not maintained: 3.42012-03-26[70]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, not maintained: 3.62012-09-24[71]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, not maintained: 3.82013-03-25[72]Wayland 1.0 stable support

Support for the broadwayd server

Improved theming

Better geometry management

Touch improvements

Support with thewindow manager for the frame synchronization protocol

GdkFrameClock added[73]

3.8.9
Old version, not maintained: 3.102013-09-23[74]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, not maintained: 3.122014-03-25[75]Client-side decorations[76]

Support for Wayland 1.5

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

3.12.2
Old version, not maintained: 3.142014-09-22[77]GtkInspector (a copy of gtkparasite) introduced[78][79]

Improved support forgestures/multi-touch merged[80][81]

Deprecated:[82]

  • 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[83]

3.14.15
Old version, not maintained: 3.162015-03-22[84]GDK supports rendering windows using OpenGL for X11 and Wayland usinglibepoxy

New widgets:

  • GtkGLArea
  • GtkStackSidebar
  • GtkModelButton
  • GtkPopoverMenu

Scrolling overhauled (scrollbar hidden by default[85])

ExperimentalMir backend[86]

3.16.7
Old version, not maintained: 3.182015-09-23[87]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, not maintained: 3.202016-03-21[88]Further Integration of CSS nodes[89]

Movedrag and drop down toGDK

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

3.20.10
Old version, not maintained:3.222016-09-21[90]Last 3.x release[26]

Wayland tablet support is merged,[91] support forgraphics tablets is considered feature complete[92]

GTK 3.22 shall be as rock-stable (and hence "boring") as GTK 2[33][93][94]

for 3+ years
3.22.29
Old version, still maintained: 3.242018-09-03[95]3.22 was supposed to be the last version of GTK 3 series
  • 3.24 was mainly released toease migrating from GTK+ 3.x to GTK+ 4

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
...

3.24.29

Old version, not maintained: 3.902017-03-31[96]GTK Scene Graph Kit (GSK) merged[6]

Remove any API marked as deprecated

Heavy development

A newVulkan-renderer augments the oldCairo-renderer[97]

3.89.1

3.89.2
3.89.4
3.89.5
3.90

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

GNU autotools was replaced withMeson.

3.91.0

3.91.1
3.91.2
3.92.1

Old version, not maintained: 3.942018-06-26[101]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 ofGdkPixbuf 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, not maintained: 3.962019-05-07[102]Thegtk4-builder-toolsimplify 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.[103]

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.93
3.94.0
Old version, not maintained: 3.982020-02-10[102]
  • Performance improvements
  • Drag and drop refactoring
  • Moving GDK towardsWayland
  • Removals
    • GtkMenu, GtkToolbar and similar classes have been replaced by GMenu.
  • Additions
    • Emoji chooser
    • Text widgets now have undo stacks
    • A new layout manager[104]
3.96.0
Old version, not maintained: 3.99.02020-07-31[105]
  • Introduced successor toAccessibility Toolkit (ATK).[106] The new approach will implement WAI-ARIA (World Wide Web Consortium (W3C) Accessibility Initiative – Accessible Rich Internet Applications).
  • Updated headers to use standardC types instead ofGLib types
  • New widgets
  • Fixes and improvements[105]
3.99.4
Old version, not maintained: 4.02020-12-16[107]4.0.3
Old version, not maintained: 4.22021-03-30[108]4.2.1
Old version, not maintained: 4.42021-08-23[109]4.4.1
Old version, not maintained: 4.62021-12-30[110]4.6.9
Old version, not maintained: 4.82022-09-06[111]4.8.3
Old version, not maintained: 4.102023-03-04[112]GtkFileChooser deprecated (use GtkFileDialog)[113]4.10.5
Old version, not maintained: 4.122023-08-05[114]4.12.5
Old version, not maintained: 4.142024-03-12[115]4.14.6
Latest version: 4.162024-06-09[116]4.16.12
Legend:
Old version, not maintained
Old version, still maintained
Latest version
Latest preview version
Future version

See also

[edit]

References

[edit]
  1. ^"The GTK Open Source Project on Open Hub: Languages Page".www.openhub.net.Archived from the original on March 28, 2019. RetrievedMarch 28, 2019.
  2. ^"A brief description on how GTK was born".www.gtk.org.Archived from the original on June 9, 2023. RetrievedJuly 5, 2023.
  3. ^abBassi, Emmanuele (February 6, 2019)."Project rename to "GTK"".mail.gnome.org.GNOME mailinglist.Archived from the original on November 7, 2020. RetrievedFebruary 7, 2019.
  4. ^The GTK+ Team."GTK+ Features". Archived fromthe original on May 25, 2019. RetrievedSeptember 8, 2014.
  5. ^"Documentation".www.x.org.Archived from the original on December 21, 2019. RetrievedNovember 22, 2019.
  6. ^ab"Projects/GTK/Roadmap - GNOME Wiki!".wiki.gnome.org.Archived from the original on May 22, 2019. RetrievedNovember 22, 2019.
  7. ^"GTK 4.0 – GTK Development Blog". December 16, 2020.Archived from the original on May 28, 2023. RetrievedOctober 18, 2021.
  8. ^"Robin Rowe / GTK1 · GitLab".GitLab.Archived from the original on March 9, 2023. RetrievedFebruary 22, 2023.
  9. ^"GTK+ 3 Reference Manual".Archived from the original on June 23, 2021. RetrievedJuly 15, 2017.
  10. ^ab"Using GTK+ with Broadway".GNOME Developer. GNOME.Archived from the original on June 14, 2021. RetrievedMarch 6, 2018.
  11. ^ab"Broadway - GitHub symbiose/symbiose Wiki".GitHub.Archived from the original on June 28, 2023. RetrievedMarch 6, 2018.
  12. ^"GTK+ to Use Cairo Vector Engine". February 5, 2005. RetrievedDecember 27, 2009.
  13. ^"Gtk: Migrating from GTK 2.x to GTK 3".docs.gtk.org.Archived from the original on May 26, 2023. RetrievedJune 16, 2022.All drawing in GTK 3 is done via Cairo.
  14. ^"Matthias Clasen DevConf.cz 2018 talk about GTK+ 4"(PDF). January 26, 2018.Archived(PDF) from the original on April 22, 2024. RetrievedMarch 9, 2018.
  15. ^The GTK+ Team."GTK+ Language Bindings".www.gtk.org. Archived fromthe original on May 25, 2019. RetrievedJune 3, 2017.
  16. ^GUADEC."Cambalache: road to version 1.0".
  17. ^"glade - man pages section 1: User Commands".docs.oracle.com. RetrievedSeptember 11, 2024.
  18. ^"Debian -- Package Search Results -- gazpacho".packages.debian.org.Archived from the original on June 28, 2023. RetrievedNovember 22, 2019.
  19. ^"Nothing-personal - A development site for Crow Designer, GuiLoader and Rally - Google Project Hosting". Archived fromthe original on January 24, 2013. RetrievedFebruary 17, 2014.
  20. ^"GTK Inspector".GNOME Developer Documentation. RetrievedSeptember 14, 2024.
  21. ^"Introducing GtkInspector". May 15, 2014.Archived from the original on May 17, 2014. RetrievedMay 17, 2014.
  22. ^"Another GtkInspector update". July 11, 2014.Archived from the original on July 14, 2014. RetrievedJuly 13, 2014.
  23. ^"GNOME Quick SWOT Analysis".The GNOME Project.Archived from the original on March 18, 2014. RetrievedMarch 18, 2014.
  24. ^"GNOME Languages".Ohloh. Black Duck Software. Archived fromthe original on May 22, 2014. RetrievedMay 22, 2014.
  25. ^"About". GNOME Users And Developers European Conference (GUADEC). Archived fromthe original on October 4, 2011. RetrievedDecember 3, 2011.
  26. ^ab"Versioning and long term stability promise in GTK". GTK development blog. September 1, 2016.Archived from the original on September 21, 2016. RetrievedSeptember 2, 2016.
  27. ^"GTK+ 3.24 To Deliver Some New Features While Waiting For GTK4".www.phoronix.com.Archived from the original on April 22, 2024. RetrievedApril 2, 2021.
  28. ^"GTK 4.0". GTK development blog. December 16, 2020.Archived from the original on May 28, 2023. RetrievedOctober 18, 2021.
  29. ^"Development release GIMP 2.99.2 is out". Gimp news. November 6, 2020.Archived from the original on April 10, 2021. RetrievedJanuary 6, 2022.
  30. ^"Build system change GTK's master branch".mail.gnome.org.Archived from the original on August 15, 2017. RetrievedOctober 29, 2018.
  31. ^"How Does One Create A Gtk+ Application? – Morten Welinder".blogs.gnome.org. June 23, 2014.Archived from the original on July 1, 2014. RetrievedJune 3, 2017.
  32. ^mclasen (November 20, 2015)."A GTK+ update".Goings on.Archived from the original on May 2, 2016. RetrievedJune 3, 2016.
  33. ^ab"GUADEC2013: Benjamin Otte talks about GTK+".GUADEC.Archived from the original on March 6, 2014. RetrievedMarch 5, 2014.
  34. ^Aurélien Gâteau (October 3, 2021)."The story behind Gwenview name".agateau.com. Archived fromthe original on April 22, 2024. RetrievedDecember 15, 2024.Yes, you read this right! Gwenview started its life as a GTK+ application!
  35. ^Larabel, Michael (January 12, 2014)."The Biggest Problem With GTK & What Qt Does Good".Phoronix.Archived from the original on July 1, 2016. RetrievedSeptember 10, 2014.
  36. ^Hong Jen Yee (March 26, 2013)."PCManFM Qt 0.1.0 released".Archived from the original on June 7, 2013. RetrievedSeptember 10, 2014.
  37. ^"Audacious - An Advanced Audio Player".audacious-media-player.org.Archived from the original on July 28, 2019. RetrievedNovember 22, 2019.
  38. ^Lindgren, John (May 6, 2014)."Ugly window decorations and how to fix them (GTK 3.12)".Archived from the original on October 13, 2014. RetrievedOctober 21, 2014.
  39. ^Gerald Combs (October 15, 2013)."We're switching to Qt".Archived from the original on October 19, 2013. RetrievedAugust 19, 2015.
  40. ^"GTK+".WxWidgets Compared To Other Toolkits.Archived from the original on October 5, 2007. RetrievedAugust 28, 2007.
  41. ^"LinuxWorld - Where did Spencer Kimball and Peter Mattis go?". Archived fromthe original on April 17, 1999. RetrievedAugust 19, 2013.
  42. ^"What is the + in GTK+?". 2011. Archived fromthe original on March 26, 2012. RetrievedMarch 18, 2014.
  43. ^https://mail.gnome.org/archives/gtk-devel-list/2002-March/msg00161.html
  44. ^https://mail.gnome.org/archives/gtk-devel-list/2011-February/msg00020.html
  45. ^"Rename some references to GTK+ (d080be3e) · Commits · GNOME / gtk".gitlab.gnome.org. February 4, 2019.Archived from the original on February 25, 2021. RetrievedFebruary 5, 2019.
  46. ^"HP OpenVMS systems - GTK+".Archived from the original on July 13, 2018. RetrievedJuly 12, 2018.
  47. ^"HP OpenVMS systems - GTK+".Archived from the original on July 13, 2018. RetrievedJuly 12, 2018.
  48. ^Clasen, Matthias."GTK+ 4 Status Update"(PDF).Fedora People.Archived(PDF) from the original on April 22, 2024. RetrievedApril 22, 2024.
  49. ^Amundson, Shawn T. (April 13, 1998)."ANNOUNCE: GTK+ 1.0.0 Released!".GNOME Mail Services (Mailing list).Archived from the original on March 12, 2019. RetrievedMay 20, 2019.
  50. ^Amundson, Shawn T. (February 25, 1999)."ANNOUNCE: GTK+ and GLib 1.2.0 Released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  51. ^Taylor, Owen (March 11, 2002)."GTK+-2.0.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  52. ^Taylor, Owen (December 22, 2002)."GTK+-2.2.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  53. ^Taylor, Owen (March 16, 2004)."GTK+-2.4.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  54. ^Clasen, Matthias (December 16, 2004)."GTK+-2.6.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  55. ^Clasen, Matthias (August 13, 2005)."GTK+ 2.8.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  56. ^Clasen, Matthias (July 3, 2006)."GTK+ 2.10 released".GNOME Mail Services (Mailing list).Archived from the original on January 22, 2021. RetrievedMay 20, 2019.
  57. ^Clasen, Matthias (September 14, 2007)."GTK+ 2.12 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  58. ^Clasen, Matthias (September 4, 2008)."GTK+ 2.14.0 released".GNOME Mail Services (Mailing list).Archived from the original on August 10, 2020. RetrievedMay 20, 2019.
  59. ^Clasen, Matthias (March 13, 2009)."GTK+ 2.16.0 released".GNOME Mail Services (Mailing list).Archived from the original on June 3, 2019. RetrievedMay 20, 2019.
  60. ^Clasen, Matthias (September 23, 2009)."GTK+ 2.18.0 released".GNOME Mail Services (Mailing list).Archived from the original on June 3, 2019. RetrievedMay 20, 2019.
  61. ^Clasen, Matthias (March 23, 2010)."GTK+ 2.20.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  62. ^Clasen, Matthias (September 23, 2010)."GTK+ 2.22.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  63. ^Clasen, Matthias (January 20, 2011)."GTK+ 2.24.0".GNOME Mail Services (Mailing list).Archived from the original on May 8, 2019. RetrievedMay 20, 2019.
  64. ^"Tags · GNOME / gtk · GitLab".GitLab. December 21, 2020.Archived from the original on December 4, 2023. RetrievedOctober 18, 2023.
  65. ^Clasen, Matthias (February 10, 2011)."GTK+ 3.0.0 released".GNOME Mail Services (Mailing list).Archived from the original on March 12, 2019. RetrievedMay 20, 2019.
  66. ^"Gtk+ 3.0 Theming API Hackfest".Silicon Island.Archived from the original on July 17, 2011. RetrievedJune 3, 2017.
  67. ^"Gtk+ 3 roadmap draft".Archived from the original on April 12, 2009. RetrievedJune 3, 2017.
  68. ^"Attic/ProjectRidley - GNOME Wiki!".wiki.gnome.org.Archived from the original on March 4, 2016. RetrievedMarch 29, 2014.
  69. ^Clasen, Matthias (September 25, 2011)."GTK+ 3.2.0".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  70. ^Clasen, Matthias (March 26, 2012)."GTK+ 3.4.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  71. ^Clasen, Matthias (September 24, 2012)."GTK+ 3.6.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  72. ^Clasen, Matthias (March 25, 2013)."GTK+ 3.8.0 released".GNOME Mail Services (Mailing list).Archived from the original on March 3, 2016. RetrievedMay 20, 2019.
  73. ^"Frame clock: GDK 3 Reference Manual".developer.gnome.org.Archived from the original on April 14, 2017. RetrievedApril 13, 2017.
  74. ^Clasen, Matthias (September 23, 2013)."GTK+ 3.10.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  75. ^Clasen, Matthias (March 25, 2014)."GTK+ 3.12 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  76. ^"Client-side decorations in themes | Goings on". December 5, 2013.Archived from the original on September 19, 2015. RetrievedDecember 31, 2015.
  77. ^Clasen, Matthias (September 22, 2014)."GTK+ 3.14.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  78. ^Matthias Clasen (May 15, 2014)."GtkInspector Author's blog entry".Archived from the original on May 17, 2014. RetrievedMay 17, 2014.
  79. ^"GtkInspector in GNOME wiki". May 15, 2014.Archived from the original on May 24, 2014. RetrievedMay 17, 2014.
  80. ^"Merging gestures into 3.14". May 23, 2014.Archived from the original on September 14, 2016. RetrievedMay 23, 2014.
  81. ^"RFC: gestures". March 4, 2014.Archived from the original on May 24, 2014. RetrievedMay 23, 2014.
  82. ^"gtk+ 3.13.2". May 27, 2014.Archived from the original on May 29, 2014. RetrievedMay 28, 2014.
  83. ^"gtk+ 3.13.3". June 24, 2014.Archived from the original on December 15, 2014. RetrievedJune 25, 2014.
  84. ^Clasen, Matthias (March 22, 2015)."GTK+ 3.16.0 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  85. ^online, heise (March 25, 2015)."Linux-Desktop: Neues Gnome zeigt Nachrichten oben".heise online.Archived from the original on June 25, 2016. RetrievedJune 3, 2017.
  86. ^"GTK+ 3.16.0 released".mail.gnome.org.Archived from the original on April 7, 2016. RetrievedJune 3, 2017.
  87. ^Nestor, Marius (September 24, 2015)."GTK+ 3.18.0 Officially Released as Part of the GNOME 3.18 Desktop Environment".Softpedia.Archived from the original on May 25, 2019. RetrievedMay 25, 2019.
  88. ^Clasen, Matthias (March 21, 2016)."GTK+ 3.20".GNOME Mail Services (Mailing list).Archived from the original on March 12, 2019. RetrievedMay 20, 2019.
  89. ^"GTK+ 3.20 – Style Classes and Element Names". November 20, 2015.Archived from the original on March 5, 2016. RetrievedDecember 18, 2015.
  90. ^Clasen, Matthias (September 21, 2016)."GTK+ 3.22 released".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  91. ^"GTK+ Wayland tablet support is merged – Carlos Garnacho". April 6, 2016.Archived from the original on April 16, 2016. RetrievedApril 8, 2016.
  92. ^"hutterer input".www.x.org.Archived from the original on September 23, 2016. RetrievedSeptember 23, 2016.
  93. ^ab"Gtk 4.0 will not be stable until Gtk 4.6". June 13, 2016. Archived fromthe original on June 23, 2016. RetrievedJune 15, 2016.
  94. ^ab"Gtk 5.0 will not be stable until Gtk 5.6". June 14, 2016.Archived from the original on June 23, 2016. RetrievedJune 15, 2016.
  95. ^Clasen, Matthias (September 3, 2018)."gtk+ 3.24.0".GNOME Mail Services (Mailing list).Archived from the original on May 25, 2019. RetrievedMay 20, 2019.
  96. ^Clasen, Matthias (March 31, 2017)."gtk+ 3.90.0".GNOME Mail Services (Mailing list).Archived from the original on December 29, 2017. RetrievedMay 20, 2019.
  97. ^"Commits · master · GNOME / gtk".GitLab. Archived fromthe original on June 22, 2020. RetrievedNovember 22, 2019.
  98. ^Clasen, Matthias (October 18, 2017)."gtk+ 3.92.1".GNOME Mail Services (Mailing list).Archived from the original on December 29, 2017. RetrievedMay 20, 2019.
  99. ^Clasen, Matthias (October 23, 2017)."GTK+ 3.92".GTK Development Blog.Archived from the original on May 25, 2019. RetrievedMay 25, 2019.
  100. ^"GNOME 3.26 Released". September 13, 2017.Archived from the original on March 16, 2021. RetrievedOctober 19, 2017.
  101. ^Clasen, Matthias (June 26, 2018)."gtk+ 3.94.0".GNOME Mail Services (Mailing list).Archived from the original on July 5, 2018. RetrievedMay 20, 2019.
  102. ^abClasen, Matthias (May 7, 2019)."gtk 3.96".GNOME Mail Services (Mailing list).Archived from the original on May 28, 2019. RetrievedMay 28, 2019.
  103. ^"Introducing amtk". Archived fromthe original on June 22, 2020. RetrievedMay 4, 2020.
  104. ^Clasen, Matthias (February 13, 2020)."GTK 3.98".GTK+ Development Blog.Archived from the original on February 18, 2020. RetrievedFebruary 18, 2020.
  105. ^abClasen, Matthias (June 9, 2021)."gtk 4.3.1".FTP Releases (Mailing list).Archived from the original on July 10, 2021. RetrievedJuly 10, 2021.
  106. ^"Emmanuele Bassi / guadec-2020".GitLab.Archived from the original on August 15, 2020. RetrievedSeptember 12, 2020.
  107. ^Clasen, Matthias (December 16, 2020)."gtk 4.0.0".GNOME Mail Services (Mailing list).Archived from the original on October 28, 2021. RetrievedDecember 16, 2020.
  108. ^Clasen, Matthias (March 30, 2021)."gtk 4.2.0".GNOME Mail Services (Mailing list).Archived from the original on October 27, 2021. RetrievedMarch 30, 2021.
  109. ^Clasen, Matthias (August 23, 2021)."gtk 4.4.0".GNOME Mail Services (Mailing list).Archived from the original on August 24, 2021. RetrievedJanuary 23, 2022.
  110. ^Clasen, Matthias (December 30, 2021)."gtk 4.6.0".FTP Releases (Mailing list).Archived from the original on January 23, 2022. RetrievedJanuary 23, 2022.
  111. ^Clasen, Matthias (September 6, 2022)."gtk 4.8.0".Archived from the original on January 11, 2023. RetrievedJanuary 11, 2023.
  112. ^"NEWS · 4.10.1 · GNOME / gtk · GitLab".GitLab. March 13, 2023.Archived from the original on April 19, 2023. RetrievedApril 19, 2023.
  113. ^"On deprecations – GTK Development Blog". October 30, 2022.Archived from the original on February 28, 2024. RetrievedApril 21, 2024.
  114. ^Clasen, Matthias (July 28, 2023)."NEWS · 4.12.0 · GNOME / gtk · GitLab".GitLab. RetrievedJanuary 4, 2025.
  115. ^Clasen, Matthias (March 12, 2024)."NEWS · 4.14.0 · GNOME / gtk · GitLab".GitLab. RetrievedJanuary 4, 2025.
  116. ^Clasen, Matthias (September 7, 2024)."NEWS · 4.16.0 · GNOME / gtk · GitLab".GitLab. RetrievedJanuary 4, 2025.

Bibliography

[edit]

External links

[edit]
Wikimedia Commons has media related toGTK.
The WikibookX Window Programming has a page on the topic of:GTK+
Platform
GTK
freedesktop.org
(shared)
Development
GUI designer,RAD
IDEs
GNOME
Cinnamon
Xfce
LXDE
Graphical shells
3rd-party
applications
Office
Education
Graphics
Internet
Audio
Video
Utilities
History
Licenses
Software
Contributors
Other topics
Low-level platform-specific
OnAmigaOS
OnClassic Mac OS,macOS
OnWindows
OnUnix,
underX11
OnBeOS,Haiku
OnAndroid
CLI
Low Level Cross-platform
CLI
C
Java
High-level, platform-specific
OnAmigaOS
OnClassic Mac OS,macOS
Object Pascal
Objective-C,Swift
C++
CLI
OnWindows
CLI
C++
Object Pascal
OnUnix,
underX11
OnAndroid
High-level, cross-platform
C
C++
Objective-C
CLI
Adobe Flash
Go
Haskell
Java
JavaScript
Common Lisp
Lua
Pascal
Object Pascal
Perl
PHP
Python
Ruby
Tcl
XML
shell
Dart
Qt
Open source
GTK
Open source
Proprietary
wxWidgets
Open source
CLI
Open source
Proprietary
VCL,
related
Open source,LCL
Proprietary
Cocoa
Proprietary
Java-based
Open source
Proprietary
Windows API
Open source
Proprietary
Other
Open source
Proprietary
International
National
Retrieved from "https://en.wikipedia.org/w/index.php?title=GTK&oldid=1276895271"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp