Docs.rs
  • gtk4-0.8.2
    • gtk4 0.8.2
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Documentation
    • Repository
    • crates.io
    • Source
    • Owners
    • GuillaumeGomez
    • sdroege
    • bilelmoussaoui
    • github:gtk-rs:crates-io
    • Dependencies
      • cairo-rs ^0.19 normal
      • gtk4-sys ^0.8 normal
      • field-offset ^0.3 normal
      • futures-channel ^0.3 normal
      • gdk4 ^0.8 normal
      • gdk-pixbuf ^0.19 normal
      • gio ^0.19 normal
      • glib ^0.19 normal
      • graphene-rs ^0.19 normal
      • gsk4 ^0.8 normal
      • gtk4-macros ^0.8 normal
      • libc ^0.2 normal
      • pango ^0.19 normal
      • gir-format-check ^0.1 dev
    • Versions
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

Files

?
Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Take a look at the license at the top of the repository in the LICENSE file.

// rustdoc-stripper-ignore-next
//! Traits intended for blanket imports.

#[doc(hidden)]
pub use gdk::prelude::*;
#[doc(hidden)]
pub use gsk::prelude::*;

pub use crate::{
    accessible::AccessibleExtManual,
    actionable::ActionableExtManual,
    auto::traits::*,
    cell_area::CellAreaExtManual,
    cell_layout::CellLayoutExtManual,
    color_chooser::ColorChooserExtManual,
    combo_box::ComboBoxExtManual,
    dialog::DialogExtManual,
    drawing_area::DrawingAreaExtManual,
    editable::EditableExtManual,
    entry::EntryExtManual,
    entry_buffer::EntryBufferExtManual,
    expression::{GObjectPropertyExpressionExt, IsExpression},
    file_chooser::FileChooserExtManual,
    font_chooser::FontChooserExtManual,
    media_stream::MediaStreamExtManual,
    native_dialog::NativeDialogExtManual,
    scale::ScaleExtManual,
    shortcut_trigger::ShortcutTriggerExtManual,
    snapshot::SnapshotExtManual,
    text_buffer::TextBufferExtManual,
    tree_model::TreeModelExtManual,
    tree_model_filter::TreeModelFilterExtManual,
    tree_sortable::TreeSortableExtManual,
    tree_view::TreeViewExtManual,
    widget::WidgetExtManual,
};