Crate gtk4

Source
Expand description

§Rust GTK 4 bindings

The project website is here.

Rust bindings of GTK 4, part of gtk4-rs.

This library contains safe Rust bindings for GTK 4, a multi-platform GUI toolkit. It is a part of gtk-rs.

Most of this documentation is generated from the C API. Until all parts of the documentation have been reviewed there will be incongruities with the actual Rust API.

For a gentle introduction to gtk-rs we recommend the online book GUI development with Rust and GTK 4.

See also:

§Minimum supported Rust version

Currently, the minimum supported Rust version is 1.70.

§“Hello, World!” example program

GTK needs to be initialized before use by calling init. Creating an Application will call init for you.

The gtk4 crate is usually renamed to gtk. You can find an example in the features section for how to do this globally in your Cargo.toml.

use gtk4 as gtk;
use gtk::prelude::*;
use gtk::{glib, Application, ApplicationWindow};

fn main() -> glib::ExitCode {
    let app = Application::builder()
        .application_id("org.example.HelloWorld")
        .build();

    app.connect_activate(|app| {
        // We create the main window.
        let window = ApplicationWindow::builder()
            .application(app)
            .default_width(320)
            .default_height(200)
            .title("Hello, World!")
            .build();

        // Show the window.
        window.present();
    });

    app.run()
}

§The main loop

In a typical GTK application you set up the UI, assign signal handlers and run the main event loop.

use gtk4 as gtk;
use gtk::prelude::*;
use gtk::{glib, Application, ApplicationWindow, Button};

fn main() -> glib::ExitCode {
    let application = Application::builder()
        .application_id("com.example.FirstGtkApp")
        .build();

    application.connect_activate(|app| {
        let window = ApplicationWindow::builder()
            .application(app)
            .title("First GTK Program")
            .default_width(350)
            .default_height(70)
            .build();

        let button = Button::with_label("Click me!");
        button.connect_clicked(|_| {
            eprintln!("Clicked!");
        });
        window.set_child(Some(&button));

        window.present();
    });

    application.run()
}

§Threads

GTK is not thread-safe. Accordingly, none of this crate’s structs implement Send or Sync.

The thread where init was called is considered the main thread. OS X has its own notion of the main thread and init must be called on that thread. After successful initialization, calling any gtk or gdk functions (including init) from other threads will panic.

Any thread can schedule a closure to be run by the main loop on the main thread via glib::idle_add or glib::timeout_add. While working with GTK you might need the glib::idle_add_local or glib::timeout_add_local version without the Send bound. Those may only be called from the main thread.

§Panics

The gtk and gdk crates have some run-time safety and contract checks.

  • Any constructor or free function will panic if called before init or on a non-main thread.

  • Any &str or &Path parameter with an interior null (\0) character will cause a panic.

  • Some functions will panic if supplied out-of-range integer parameters. All such cases will be documented individually but they are not yet.

  • A panic in a closure that handles signals or in any other closure passed to a gtk function will abort the process.

§Features

§Library versions

By default this crate provides only GTK 4.0 APIs. You can access additional functionality by selecting one of the v4_2, v4_4, etc. features.

Cargo.toml example:

[dependencies.gtk]
package = "gtk4"
version = "0.x.y"
features = ["v4_2"]

Take care when choosing the version to target: some of your users might not have easy access to the latest ones. The higher the version, the fewer users will have it installed.

§Documentation

§Using

We recommend using crates from crates.io, as demonstrated here.

If you want to track the bleeding edge, use the git dependency instead:

[dependencies]
gtk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gtk4" }

Avoid mixing versioned and git crates like this:

# This will not compile
[dependencies]
gdk = {version = "0.1", package = "gdk4"}
gtk = { git = "https://github.com/gtk-rs/gtk4-rs.git", package = "gtk4" }

§Features

FeatureDescription
v4_18Enable the new APIs part of GTK 4.18
v4_16Enable the new APIs part of GTK 4.16
v4_14Enable the new APIs part of GTK 4.14
v4_12Enable the new APIs part of GTK 4.12
v4_10Enable the new APIs part of GTK 4.10
v4_8Enable the new APIs part of GTK 4.8
v4_6Enable the new APIs part of GTK 4.6
v4_4Enable the new APIs part of GTK 4.4
v4_2Enable the new APIs part of GTK 4.2
gnome_47Enable all version feature flags of this crate and its dependencies to match the GNOME 47 SDK
gnome_46Enable all version feature flags of this crate and its dependencies to match the GNOME 46 SDK
gnome_45Enable all version feature flags of this crate and its dependencies to match the GNOME 45 SDK
gnome_44Enable all version feature flags of this crate and its dependencies to match the GNOME 44 SDK
gnome_43Enable all version feature flags of this crate and its dependencies to match the GNOME 43 SDK
gnome_42Enable all version feature flags of this crate and its dependencies to match the GNOME 42 SDK
unsafe-assume-initializedDisable checks that gtk is initialized, for use in C ABI libraries
xml_validationEnable xml_validation feature of gtk4-macros
blueprintEnable blueprint feature of gtk4-macros

§See Also

§License

The Rust bindings of gtk4 are available under the MIT License, please refer to it.

Re-exports§

pub use subclass::widget::TemplateChild;
pub use cairo;
pub use gdk;
pub use gdk_pixbuf;
pub use gio;
pub use glib;
pub use graphene;
pub use gsk;
pub use gtk4_sys as ffi;
pub use pango;

Modules§

accessible
builders
Builder pattern types.
prelude
Traits intended for blanket imports.
subclass
Traits intended for creating custom types.

Structs§

ATContext
GLib type: GObject with reference counted clone semantics.
AboutDialog
GLib type: GObject with reference counted clone semantics.
Accessible
GLib type: GObject with reference counted clone semantics.
AccessibleListv4_14
GLib type: Boxed type with copy-on-clone semantics.
AccessibleRangev4_10
GLib type: GObject with reference counted clone semantics.
AccessibleTextv4_14
GLib type: GObject with reference counted clone semantics.
AccessibleTextRangev4_14
GLib type: Inline allocated boxed type with stack copy semantics.
ActionBar
GLib type: GObject with reference counted clone semantics.
Actionable
GLib type: GObject with reference counted clone semantics.
ActivateAction
GLib type: GObject with reference counted clone semantics.
Adjustment
GLib type: GObject with reference counted clone semantics.
AlertDialogv4_10
GLib type: GObject with reference counted clone semantics.
AlternativeTrigger
GLib type: GObject with reference counted clone semantics.
AnyFilter
GLib type: GObject with reference counted clone semantics.
AppChooserDeprecated
GLib type: GObject with reference counted clone semantics.
AppChooserButtonDeprecated
GLib type: GObject with reference counted clone semantics.
AppChooserDialogDeprecated
GLib type: GObject with reference counted clone semantics.
AppChooserWidgetDeprecated
GLib type: GObject with reference counted clone semantics.
Application
GLib type: GObject with reference counted clone semantics.
ApplicationInhibitFlags
ApplicationWindow
GLib type: GObject with reference counted clone semantics.
AspectFrame
GLib type: GObject with reference counted clone semantics.
AssistantDeprecated
GLib type: GObject with reference counted clone semantics.
AssistantPageDeprecated
GLib type: GObject with reference counted clone semantics.
BinLayout
GLib type: GObject with reference counted clone semantics.
Bitset
GLib type: Shared boxed type with reference counted clone semantics.
BitsetIter
BookmarkList
GLib type: GObject with reference counted clone semantics.
BoolFilter
GLib type: GObject with reference counted clone semantics.
Border
GLib type: Inline allocated boxed type with stack copy semantics.
Box
GLib type: GObject with reference counted clone semantics.
BoxLayout
GLib type: GObject with reference counted clone semantics.
Buildable
GLib type: GObject with reference counted clone semantics.
Builder
GLib type: GObject with reference counted clone semantics.
BuilderCScope
GLib type: GObject with reference counted clone semantics.
BuilderClosureFlags
BuilderListItemFactory
GLib type: GObject with reference counted clone semantics.
BuilderRustScope
An implementation of BuilderScope that can bind Rust callbacks.
BuilderScope
GLib type: GObject with reference counted clone semantics.
Button
GLib type: GObject with reference counted clone semantics.
Calendar
GLib type: GObject with reference counted clone semantics.
CallbackAction
GLib type: GObject with reference counted clone semantics.
CellAreaDeprecated
GLib type: GObject with reference counted clone semantics.
CellAreaBoxDeprecated
GLib type: GObject with reference counted clone semantics.
CellAreaContextDeprecated
GLib type: GObject with reference counted clone semantics.
CellEditableDeprecated
GLib type: GObject with reference counted clone semantics.
CellLayoutDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererAccelDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererComboDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererPixbufDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererProgressDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererSpinDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererSpinnerDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererState
CellRendererTextDeprecated
GLib type: GObject with reference counted clone semantics.
CellRendererToggleDeprecated
GLib type: GObject with reference counted clone semantics.
CellViewDeprecated
GLib type: GObject with reference counted clone semantics.
CenterBox
GLib type: GObject with reference counted clone semantics.
CenterLayout
GLib type: GObject with reference counted clone semantics.
CheckButton
GLib type: GObject with reference counted clone semantics.
ClosureExpression
GLib type: Shared boxed type with reference counted clone semantics.
ColorButtonDeprecated
GLib type: GObject with reference counted clone semantics.
ColorChooserDeprecated
GLib type: GObject with reference counted clone semantics.
ColorChooserDialogDeprecated
GLib type: GObject with reference counted clone semantics.
ColorChooserWidgetDeprecated
GLib type: GObject with reference counted clone semantics.
ColorDialogv4_10
GLib type: GObject with reference counted clone semantics.
ColorDialogButtonv4_10
GLib type: GObject with reference counted clone semantics.
ColumnView
GLib type: GObject with reference counted clone semantics.
ColumnViewCellv4_12
GLib type: GObject with reference counted clone semantics.
ColumnViewColumn
GLib type: GObject with reference counted clone semantics.
ColumnViewRowv4_12
GLib type: GObject with reference counted clone semantics.
ColumnViewSorterv4_10
GLib type: GObject with reference counted clone semantics.
ComboBoxDeprecated
GLib type: GObject with reference counted clone semantics.
ComboBoxTextDeprecated
GLib type: GObject with reference counted clone semantics.
ConstantExpression
GLib type: Shared boxed type with reference counted clone semantics.
Constraint
GLib type: GObject with reference counted clone semantics.
ConstraintGuide
GLib type: GObject with reference counted clone semantics.
ConstraintLayout
GLib type: GObject with reference counted clone semantics.
ConstraintLayoutChild
GLib type: GObject with reference counted clone semantics.
ConstraintTarget
GLib type: GObject with reference counted clone semantics.
CssLocation
GLib type: Inline allocated boxed type with stack copy semantics.
CssProvider
GLib type: GObject with reference counted clone semantics.
CssSection
GLib type: Shared boxed type with reference counted clone semantics.
CustomFilter
GLib type: GObject with reference counted clone semantics.
CustomSorter
GLib type: GObject with reference counted clone semantics.
DebugFlags
DialogDeprecated
GLib type: GObject with reference counted clone semantics.
DialogFlags
DirectoryList
GLib type: GObject with reference counted clone semantics.
DragIcon
GLib type: GObject with reference counted clone semantics.
DragSource
GLib type: GObject with reference counted clone semantics.
DrawingArea
GLib type: GObject with reference counted clone semantics.
DropControllerMotion
GLib type: GObject with reference counted clone semantics.
DropDown
GLib type: GObject with reference counted clone semantics.
DropTarget
GLib type: GObject with reference counted clone semantics.
DropTargetAsync
GLib type: GObject with reference counted clone semantics.
Editable
GLib type: GObject with reference counted clone semantics.
EditableLabel
GLib type: GObject with reference counted clone semantics.
EmojiChooser
GLib type: GObject with reference counted clone semantics.
Entry
GLib type: GObject with reference counted clone semantics.
EntryBuffer
GLib type: GObject with reference counted clone semantics.
EntryCompletionDeprecated
GLib type: GObject with reference counted clone semantics.
EventController
GLib type: GObject with reference counted clone semantics.
EventControllerFocus
GLib type: GObject with reference counted clone semantics.
EventControllerKey
GLib type: GObject with reference counted clone semantics.
EventControllerLegacy
GLib type: GObject with reference counted clone semantics.
EventControllerMotion
GLib type: GObject with reference counted clone semantics.
EventControllerScroll
GLib type: GObject with reference counted clone semantics.
EventControllerScrollFlags
EveryFilter
GLib type: GObject with reference counted clone semantics.
Expander
GLib type: GObject with reference counted clone semantics.
Expression
GLib type: Shared boxed type with reference counted clone semantics.
ExpressionWatch
GLib type: Shared boxed type with reference counted clone semantics.
FileChooserDeprecated
GLib type: GObject with reference counted clone semantics.
FileChooserDialogDeprecated
GLib type: GObject with reference counted clone semantics.
FileChooserNativeDeprecated
GLib type: GObject with reference counted clone semantics.
FileChooserWidgetDeprecated
GLib type: GObject with reference counted clone semantics.
FileDialogv4_10
GLib type: GObject with reference counted clone semantics.
FileFilter
GLib type: GObject with reference counted clone semantics.
FileLauncherv4_10
GLib type: GObject with reference counted clone semantics.
Filter
GLib type: GObject with reference counted clone semantics.
FilterListModel
GLib type: GObject with reference counted clone semantics.
Fixed
GLib type: GObject with reference counted clone semantics.
FixedLayout
GLib type: GObject with reference counted clone semantics.
FixedLayoutChild
GLib type: GObject with reference counted clone semantics.
FlattenListModel
GLib type: GObject with reference counted clone semantics.
FlowBox
GLib type: GObject with reference counted clone semantics.
FlowBoxChild
GLib type: GObject with reference counted clone semantics.
FontButtonDeprecated
GLib type: GObject with reference counted clone semantics.
FontChooserDeprecated
GLib type: GObject with reference counted clone semantics.
FontChooserDialogDeprecated
GLib type: GObject with reference counted clone semantics.
FontChooserLevel
FontChooserWidgetDeprecated
GLib type: GObject with reference counted clone semantics.
FontDialogv4_10
GLib type: GObject with reference counted clone semantics.
FontDialogButtonv4_10
GLib type: GObject with reference counted clone semantics.
Frame
GLib type: GObject with reference counted clone semantics.
GLArea
GLib type: GObject with reference counted clone semantics.
Gesture
GLib type: GObject with reference counted clone semantics.
GestureClick
GLib type: GObject with reference counted clone semantics.
GestureDrag
GLib type: GObject with reference counted clone semantics.
GestureLongPress
GLib type: GObject with reference counted clone semantics.
GesturePan
GLib type: GObject with reference counted clone semantics.
GestureRotate
GLib type: GObject with reference counted clone semantics.
GestureSingle
GLib type: GObject with reference counted clone semantics.
GestureStylus
GLib type: GObject with reference counted clone semantics.
GestureSwipe
GLib type: GObject with reference counted clone semantics.
GestureZoom
GLib type: GObject with reference counted clone semantics.
GraphicsOffloadv4_14
GLib type: GObject with reference counted clone semantics.
Grid
GLib type: GObject with reference counted clone semantics.
GridLayout
GLib type: GObject with reference counted clone semantics.
GridLayoutChild
GLib type: GObject with reference counted clone semantics.
GridView
GLib type: GObject with reference counted clone semantics.
HeaderBar
GLib type: GObject with reference counted clone semantics.
IMContext
GLib type: GObject with reference counted clone semantics.
IMContextSimple
GLib type: GObject with reference counted clone semantics.
IMMulticontext
GLib type: GObject with reference counted clone semantics.
IconLookupFlags
IconPaintable
GLib type: GObject with reference counted clone semantics.
IconTheme
GLib type: GObject with reference counted clone semantics.
IconViewDeprecated
GLib type: GObject with reference counted clone semantics.
Image
GLib type: GObject with reference counted clone semantics.
InfoBarDeprecated
GLib type: GObject with reference counted clone semantics.
InputHints
Inscriptionv4_8
GLib type: GObject with reference counted clone semantics.
KeyvalTrigger
GLib type: GObject with reference counted clone semantics.
Label
GLib type: GObject with reference counted clone semantics.
LayoutChild
GLib type: GObject with reference counted clone semantics.
LayoutManager
GLib type: GObject with reference counted clone semantics.
LevelBar
GLib type: GObject with reference counted clone semantics.
LinkButton
GLib type: GObject with reference counted clone semantics.
ListBase
GLib type: GObject with reference counted clone semantics.
ListBox
GLib type: GObject with reference counted clone semantics.
ListBoxRow
GLib type: GObject with reference counted clone semantics.
ListHeaderv4_12
GLib type: GObject with reference counted clone semantics.
ListItem
GLib type: GObject with reference counted clone semantics.
ListItemFactory
GLib type: GObject with reference counted clone semantics.
ListScrollFlagsv4_12
ListStoreDeprecated
GLib type: GObject with reference counted clone semantics.
ListView
GLib type: GObject with reference counted clone semantics.
LockButtonDeprecated
GLib type: GObject with reference counted clone semantics.
MapListModel
GLib type: GObject with reference counted clone semantics.
MediaControls
GLib type: GObject with reference counted clone semantics.
MediaFile
GLib type: GObject with reference counted clone semantics.
MediaStream
GLib type: GObject with reference counted clone semantics.
MenuButton
GLib type: GObject with reference counted clone semantics.
MessageDialogDeprecated
GLib type: GObject with reference counted clone semantics.
MnemonicAction
GLib type: GObject with reference counted clone semantics.
MnemonicTrigger
GLib type: GObject with reference counted clone semantics.
MountOperation
GLib type: GObject with reference counted clone semantics.
MultiFilter
GLib type: GObject with reference counted clone semantics.
MultiSelection
GLib type: GObject with reference counted clone semantics.
MultiSorter
GLib type: GObject with reference counted clone semantics.
NamedAction
GLib type: GObject with reference counted clone semantics.
Native
GLib type: GObject with reference counted clone semantics.
NativeDialog
GLib type: GObject with reference counted clone semantics.
NeverTrigger
GLib type: GObject with reference counted clone semantics.
NoSelection
GLib type: GObject with reference counted clone semantics.
Notebook
GLib type: GObject with reference counted clone semantics.
NotebookPage
GLib type: GObject with reference counted clone semantics.
NothingAction
GLib type: GObject with reference counted clone semantics.
NumericSorter
GLib type: GObject with reference counted clone semantics.
ObjectExpression
GLib type: Shared boxed type with reference counted clone semantics.
Orientable
GLib type: GObject with reference counted clone semantics.
Overlay
GLib type: GObject with reference counted clone semantics.
OverlayLayout
GLib type: GObject with reference counted clone semantics.
OverlayLayoutChild
GLib type: GObject with reference counted clone semantics.
PadActionEntry
GLib type: Inline allocated boxed type with stack copy semantics.
PadController
GLib type: GObject with reference counted clone semantics.
PageRange
GLib type: Inline allocated boxed type with stack copy semantics.
PageSetup
GLib type: GObject with reference counted clone semantics.
Paned
GLib type: GObject with reference counted clone semantics.
PaperSize
GLib type: Boxed type with copy-on-clone semantics.
ParamSpecExpression
GLib type: Shared boxed type with reference counted clone semantics.
PasswordEntry
GLib type: GObject with reference counted clone semantics.
PasswordEntryBufferv4_4
GLib type: GObject with reference counted clone semantics.
PickFlags
Picture
GLib type: GObject with reference counted clone semantics.
Popover
GLib type: GObject with reference counted clone semantics.
PopoverMenu
GLib type: GObject with reference counted clone semantics.
PopoverMenuBar
GLib type: GObject with reference counted clone semantics.
PopoverMenuFlags
PrintContext
GLib type: GObject with reference counted clone semantics.
PrintDialogv4_14
GLib type: GObject with reference counted clone semantics.
PrintOperation
GLib type: GObject with reference counted clone semantics.
PrintOperationPreview
GLib type: GObject with reference counted clone semantics.
PrintSettings
GLib type: GObject with reference counted clone semantics.
PrintSetupv4_14
GLib type: Shared boxed type with reference counted clone semantics.
ProgressBar
GLib type: GObject with reference counted clone semantics.
PropertyExpression
GLib type: Shared boxed type with reference counted clone semantics.
Range
GLib type: GObject with reference counted clone semantics.
RecentData
GLib type: Inline allocated boxed type with stack copy semantics.
RecentInfo
GLib type: Shared boxed type with reference counted clone semantics.
RecentManager
GLib type: GObject with reference counted clone semantics.
Requisition
GLib type: Inline allocated boxed type with stack copy semantics.
Revealer
GLib type: GObject with reference counted clone semantics.
Root
GLib type: GObject with reference counted clone semantics.
Scale
GLib type: GObject with reference counted clone semantics.
ScaleButton
GLib type: GObject with reference counted clone semantics.
ScrollInfov4_12
GLib type: Shared boxed type with reference counted clone semantics.
Scrollable
GLib type: GObject with reference counted clone semantics.
Scrollbar
GLib type: GObject with reference counted clone semantics.
ScrolledWindow
GLib type: GObject with reference counted clone semantics.
SearchBar
GLib type: GObject with reference counted clone semantics.
SearchEntry
GLib type: GObject with reference counted clone semantics.
SectionModelv4_12
GLib type: GObject with reference counted clone semantics.
SelectionFilterModel
GLib type: GObject with reference counted clone semantics.
SelectionModel
GLib type: GObject with reference counted clone semantics.
Separator
GLib type: GObject with reference counted clone semantics.
Settings
GLib type: GObject with reference counted clone semantics.
Shortcut
GLib type: GObject with reference counted clone semantics.
ShortcutAction
GLib type: GObject with reference counted clone semantics.
ShortcutActionFlags
ShortcutController
GLib type: GObject with reference counted clone semantics.
ShortcutLabelDeprecated
GLib type: GObject with reference counted clone semantics.
ShortcutManager
GLib type: GObject with reference counted clone semantics.
ShortcutTrigger
GLib type: GObject with reference counted clone semantics.
ShortcutsGroupDeprecated
GLib type: GObject with reference counted clone semantics.
ShortcutsSectionDeprecated
GLib type: GObject with reference counted clone semantics.
ShortcutsShortcutDeprecated
GLib type: GObject with reference counted clone semantics.
ShortcutsWindowDeprecated
GLib type: GObject with reference counted clone semantics.
SignalAction
GLib type: GObject with reference counted clone semantics.
SignalListItemFactory
GLib type: GObject with reference counted clone semantics.
SingleSelection
GLib type: GObject with reference counted clone semantics.
SizeGroup
GLib type: GObject with reference counted clone semantics.
SliceListModel
GLib type: GObject with reference counted clone semantics.
Snapshot
GLib type: GObject with reference counted clone semantics.
SortListModel
GLib type: GObject with reference counted clone semantics.
Sorter
GLib type: GObject with reference counted clone semantics.
SpinButton
GLib type: GObject with reference counted clone semantics.
Spinner
GLib type: GObject with reference counted clone semantics.
Stack
GLib type: GObject with reference counted clone semantics.
StackPage
GLib type: GObject with reference counted clone semantics.
StackSidebar
GLib type: GObject with reference counted clone semantics.
StackSwitcher
GLib type: GObject with reference counted clone semantics.
StateFlags
StatusbarDeprecated
GLib type: GObject with reference counted clone semantics.
StringFilter
GLib type: GObject with reference counted clone semantics.
StringList
GLib type: GObject with reference counted clone semantics.
StringObject
GLib type: GObject with reference counted clone semantics.
StringSorter
GLib type: GObject with reference counted clone semantics.
StyleContextDeprecated
GLib type: GObject with reference counted clone semantics.
StyleContextPrintFlags
StyleProvider
GLib type: GObject with reference counted clone semantics.
Switch
GLib type: GObject with reference counted clone semantics.
SymbolicPaintablev4_6
GLib type: GObject with reference counted clone semantics.
Text
GLib type: GObject with reference counted clone semantics.
TextBuffer
GLib type: GObject with reference counted clone semantics.
TextBufferNotifyFlagsv4_16
TextChildAnchor
GLib type: GObject with reference counted clone semantics.
TextIter
GLib type: Inline allocated boxed type with stack copy semantics.
TextMark
GLib type: GObject with reference counted clone semantics.
TextSearchFlags
TextTag
GLib type: GObject with reference counted clone semantics.
TextTagTable
GLib type: GObject with reference counted clone semantics.
TextView
GLib type: GObject with reference counted clone semantics.
TickCallbackId
ToggleButton
GLib type: GObject with reference counted clone semantics.
Tooltip
GLib type: GObject with reference counted clone semantics.
TreeDragDestDeprecated
GLib type: GObject with reference counted clone semantics.
TreeDragSourceDeprecated
GLib type: GObject with reference counted clone semantics.
TreeExpander
GLib type: GObject with reference counted clone semantics.
TreeIter
GLib type: Inline allocated boxed type with stack copy semantics.
TreeListModel
GLib type: GObject with reference counted clone semantics.
TreeListRow
GLib type: GObject with reference counted clone semantics.
TreeListRowSorter
GLib type: GObject with reference counted clone semantics.
TreeModelDeprecated
GLib type: GObject with reference counted clone semantics.
TreeModelFilterDeprecated
GLib type: GObject with reference counted clone semantics.
TreeModelFlagsDeprecated
TreeModelSortDeprecated
GLib type: GObject with reference counted clone semantics.
TreePath
GLib type: Boxed type with copy-on-clone semantics.
TreeRowReference
GLib type: Boxed type with copy-on-clone semantics.
TreeSelectionDeprecated
GLib type: GObject with reference counted clone semantics.
TreeSortableDeprecated
GLib type: GObject with reference counted clone semantics.
TreeStoreDeprecated
GLib type: GObject with reference counted clone semantics.
TreeViewDeprecated
GLib type: GObject with reference counted clone semantics.
TreeViewColumnDeprecated
GLib type: GObject with reference counted clone semantics.
UriLauncherv4_10
GLib type: GObject with reference counted clone semantics.
Video
GLib type: GObject with reference counted clone semantics.
Viewport
GLib type: GObject with reference counted clone semantics.
VolumeButtonDeprecated
GLib type: GObject with reference counted clone semantics.
Widget
GLib type: GObject with reference counted clone semantics.
WidgetPaintable
GLib type: GObject with reference counted clone semantics.
Window
GLib type: GObject with reference counted clone semantics.
WindowControls
GLib type: GObject with reference counted clone semantics.
WindowGroup
GLib type: GObject with reference counted clone semantics.
WindowHandle
GLib type: GObject with reference counted clone semantics.

Enums§

AccessibleAnnouncementPriorityv4_14
AccessibleAutocomplete
AccessibleInvalidState
AccessiblePlatformStatev4_10
AccessibleProperty
AccessibleRelation
AccessibleRole
AccessibleSort
AccessibleState
AccessibleTextContentChangev4_14
AccessibleTextGranularityv4_14
AccessibleTristate
Align
ArrowType
AssistantPageType
BaselinePosition
BorderStyle
BuilderError
ButtonsType
CellRendererAccelMode
CellRendererMode
Collationv4_10
ConstraintAttribute
ConstraintRelation
ConstraintStrength
ConstraintVflParserError
ContentFitv4_8
CornerType
CssParserError
CssParserWarning
DeleteType
DialogErrorv4_10
DirectionType
EditableProperties
EntryIconPosition
EventSequenceState
FileChooserAction
FileChooserError
FilterChange
FilterMatch
FontLevelv4_10
FontRenderingv4_16
GraphicsOffloadEnabledv4_14
IconSize
IconThemeError
IconViewDropPosition
ImageType
InputPurpose
InscriptionOverflowv4_8
Justification
LevelBarMode
License
ListTabBehaviorv4_12
MessageType
MovementStep
NaturalWrapModev4_6
NotebookTab
NumberUpLayout
Ordering
Orientation
Overflow
PackType
PadActionType
PageOrientation
PageSet
PanDirection
PolicyType
PositionType
PrintDuplex
PrintError
PrintOperationAction
PrintOperationResult
PrintPages
PrintQuality
PrintStatus
PropagationLimit
PropagationPhase
RecentManagerError
ResponseType
RevealerTransitionType
ScrollStep
ScrollType
ScrollablePolicy
SelectionMode
SensitivityType
ShortcutScope
ShortcutType
SizeGroupMode
SizeRequestMode
SortColumnDeprecated
SortType
SorterChange
SorterOrder
SpinButtonUpdatePolicy
SpinType
StackTransitionType
StringFilterMatchMode
SymbolicColorv4_6
SystemSetting
TextDirection
TextExtendSelection
TextViewLayer
TextWindowType
TreeViewColumnSizing
TreeViewDropPosition
TreeViewGridLines
Unit
WrapMode

Constants§

ACCESSIBLE_VALUE_UNDEFINED
INVALID_LIST_POSITION
PRIORITY_RESIZE
STYLE_PROVIDER_PRIORITY_APPLICATION
STYLE_PROVIDER_PRIORITY_FALLBACK
STYLE_PROVIDER_PRIORITY_SETTINGS
STYLE_PROVIDER_PRIORITY_THEME
STYLE_PROVIDER_PRIORITY_USER
TEXT_VIEW_PRIORITY_VALIDATE

Statics§

ACCESSIBLE_ATTRIBUTE_BACKGROUNDv4_14
ACCESSIBLE_ATTRIBUTE_FAMILYv4_14
ACCESSIBLE_ATTRIBUTE_FOREGROUNDv4_14
ACCESSIBLE_ATTRIBUTE_OVERLINEv4_14
ACCESSIBLE_ATTRIBUTE_OVERLINE_NONEv4_14
ACCESSIBLE_ATTRIBUTE_OVERLINE_SINGLEv4_14
ACCESSIBLE_ATTRIBUTE_SIZEv4_14
ACCESSIBLE_ATTRIBUTE_STRETCHv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_CONDENSEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_EXPANDEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_EXTRA_CONDENSEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_EXTRA_EXPANDEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_NORMALv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_SEMI_CONDENSEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_SEMI_EXPANDEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_ULTRA_CONDENSEDv4_14
ACCESSIBLE_ATTRIBUTE_STRETCH_ULTRA_EXPANDEDv4_14
ACCESSIBLE_ATTRIBUTE_STRIKETHROUGHv4_14
ACCESSIBLE_ATTRIBUTE_STYLEv4_14
ACCESSIBLE_ATTRIBUTE_STYLE_ITALICv4_14
ACCESSIBLE_ATTRIBUTE_STYLE_NORMALv4_14
ACCESSIBLE_ATTRIBUTE_STYLE_OBLIQUEv4_14
ACCESSIBLE_ATTRIBUTE_UNDERLINEv4_14
ACCESSIBLE_ATTRIBUTE_UNDERLINE_DOUBLEv4_14
ACCESSIBLE_ATTRIBUTE_UNDERLINE_ERRORv4_14
ACCESSIBLE_ATTRIBUTE_UNDERLINE_NONEv4_14
ACCESSIBLE_ATTRIBUTE_UNDERLINE_SINGLEv4_14
ACCESSIBLE_ATTRIBUTE_VARIANTv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_ALL_PETITE_CAPSv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_ALL_SMALL_CAPSv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_PETITE_CAPSv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_SMALL_CAPSv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_TITLE_CAPSv4_14
ACCESSIBLE_ATTRIBUTE_VARIANT_UNICASEv4_14
ACCESSIBLE_ATTRIBUTE_WEIGHTv4_14
IM_MODULE_EXTENSION_POINT_NAME
LEVEL_BAR_OFFSET_FULL
LEVEL_BAR_OFFSET_HIGH
LEVEL_BAR_OFFSET_LOW
MEDIA_FILE_EXTENSION_POINT_NAME
PAPER_NAME_A3
PAPER_NAME_A4
PAPER_NAME_A5
PAPER_NAME_B5
PAPER_NAME_EXECUTIVE
PAPER_NAME_LEGAL
PAPER_NAME_LETTER
PRINT_SETTINGS_COLLATE
PRINT_SETTINGS_DEFAULT_SOURCE
PRINT_SETTINGS_DITHER
PRINT_SETTINGS_DUPLEX
PRINT_SETTINGS_FINISHINGS
PRINT_SETTINGS_MEDIA_TYPE
PRINT_SETTINGS_NUMBER_UP
PRINT_SETTINGS_NUMBER_UP_LAYOUT
PRINT_SETTINGS_N_COPIES
PRINT_SETTINGS_ORIENTATION
PRINT_SETTINGS_OUTPUT_BASENAME
PRINT_SETTINGS_OUTPUT_BIN
PRINT_SETTINGS_OUTPUT_DIR
PRINT_SETTINGS_OUTPUT_FILE_FORMAT
PRINT_SETTINGS_OUTPUT_URI
PRINT_SETTINGS_PAGE_RANGES
PRINT_SETTINGS_PAGE_SET
PRINT_SETTINGS_PAPER_FORMAT
PRINT_SETTINGS_PAPER_HEIGHT
PRINT_SETTINGS_PAPER_WIDTH
PRINT_SETTINGS_PRINTER
PRINT_SETTINGS_PRINTER_LPI
PRINT_SETTINGS_PRINT_PAGES
PRINT_SETTINGS_QUALITY
PRINT_SETTINGS_RESOLUTION
PRINT_SETTINGS_RESOLUTION_X
PRINT_SETTINGS_RESOLUTION_Y
PRINT_SETTINGS_REVERSE
PRINT_SETTINGS_SCALE
PRINT_SETTINGS_USE_COLOR
PRINT_SETTINGS_WIN32_DRIVER_EXTRA
PRINT_SETTINGS_WIN32_DRIVER_VERSION

Functions§

accelerator_get_default_mod_mask
accelerator_get_label
accelerator_get_label_with_keycode
accelerator_name
accelerator_name_with_keycode
accelerator_parse
accelerator_parse_with_keycode
accelerator_valid
binary_age
check_version
debug_flags
default_language
disable_portalsv4_18
disable_setlocale
hsv_to_rgb
init
Tries to initialize GTK.
interface_age
is_initialized
Returns true if GTK has been initialized.
is_initialized_main_thread
Returns true if GTK has been initialized and this is the main thread.
locale_direction
major_version
micro_version
minor_version
print_run_page_setup_dialog
print_run_page_setup_dialog_async
render_activityDeprecated
render_arrowDeprecated
render_backgroundDeprecated
render_checkDeprecated
render_expanderDeprecated
render_focusDeprecated
render_frameDeprecated
render_handleDeprecated
render_iconDeprecated
render_layoutDeprecated
render_lineDeprecated
render_optionDeprecated
rgb_to_hsv
set_debug_flags
set_initialized
Informs this crate that GTK has been initialized and the current thread is the main one.
show_about_dialog
show_uriDeprecated
show_uri_fullDeprecated
show_uri_full_futureDeprecated
style_context_add_provider_for_display
style_context_remove_provider_for_display
test_accessible_assertion_message_role
test_accessible_has_property
test_accessible_has_relation
test_accessible_has_role
test_accessible_has_state
test_list_all_types
test_register_all_types
test_widget_wait_for_draw
tree_create_row_drag_contentDeprecated
tree_get_row_drag_dataDeprecated

Type Aliases§

Allocation