gtk4/
prelude.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! Traits intended for blanket imports.
5
6#[doc(hidden)]
7pub use gdk::prelude::*;
8#[doc(hidden)]
9pub use gsk::prelude::*;
10
11pub use crate::{
12    accessible::AccessibleExtManual,
13    actionable::ActionableExtManual,
14    auto::traits::*,
15    cell_area::CellAreaExtManual,
16    cell_layout::CellLayoutExtManual,
17    color_chooser::ColorChooserExtManual,
18    combo_box::ComboBoxExtManual,
19    dialog::DialogExtManual,
20    drawing_area::DrawingAreaExtManual,
21    editable::EditableExtManual,
22    entry::EntryExtManual,
23    entry_buffer::EntryBufferExtManual,
24    event_controller::EventControllerExtManual,
25    expression::{GObjectPropertyExpressionExt, IsExpression},
26    file_chooser::FileChooserExtManual,
27    font_chooser::FontChooserExtManual,
28    media_stream::MediaStreamExtManual,
29    native_dialog::NativeDialogExtManual,
30    scale::ScaleExtManual,
31    shortcut_trigger::ShortcutTriggerExtManual,
32    snapshot::SnapshotExtManual,
33    text_buffer::TextBufferExtManual,
34    tree_model::TreeModelExtManual,
35    tree_model_filter::TreeModelFilterExtManual,
36    tree_sortable::TreeSortableExtManual,
37    tree_view::TreeViewExtManual,
38    widget::WidgetExtManual,
39};