Skip to main content

ApplicationWindowBuilder

Struct ApplicationWindowBuilder 

Source
pub struct ApplicationWindowBuilder { /* private fields */ }
Expand description

A builder-pattern type to construct ApplicationWindow objects.

Implementations§

Source§

impl ApplicationWindowBuilder

Source

pub fn adaptive_preview(self, adaptive_preview: bool) -> Self

Available on crate feature v1_7 only.
Source

pub fn content(self, content: &impl IsA<Widget>) -> Self

Examples found in repository?
examples/hello-world.rs (line 46)
7fn main() {
8    let application = Application::builder()
9        .application_id("com.example.FirstAdwaitaApp")
10        .build();
11
12    application.connect_activate(|app| {
13        // ActionRows are only available in Adwaita
14        let row = ActionRow::builder()
15            .activatable(true)
16            .selectable(false)
17            .title("Click me")
18            .build();
19        row.connect_activated(|_| {
20            eprintln!("Clicked!");
21        });
22
23        let list = ListBox::builder()
24            .margin_top(32)
25            .margin_end(32)
26            .margin_bottom(32)
27            .margin_start(32)
28            .build();
29        list.add_css_class("boxed-list");
30        list.append(&row);
31
32        // Combine the content in a box
33        let content = Box::new(Orientation::Vertical, 0);
34        // Adwaitas' ApplicationWindow does not include a HeaderBar
35        content.append(
36            &HeaderBar::builder()
37                .title_widget(&adw::WindowTitle::new("First App", ""))
38                .build(),
39        );
40        content.append(&list);
41
42        let window = ApplicationWindow::builder()
43            .application(app)
44            .default_width(350)
45            // add content to window
46            .content(&content)
47            .build();
48        window.present();
49    });
50
51    application.run();
52}
Source

pub fn show_menubar(self, show_menubar: bool) -> Self

Source

pub fn application(self, application: &impl IsA<Application>) -> Self

Examples found in repository?
examples/hello-world.rs (line 43)
7fn main() {
8    let application = Application::builder()
9        .application_id("com.example.FirstAdwaitaApp")
10        .build();
11
12    application.connect_activate(|app| {
13        // ActionRows are only available in Adwaita
14        let row = ActionRow::builder()
15            .activatable(true)
16            .selectable(false)
17            .title("Click me")
18            .build();
19        row.connect_activated(|_| {
20            eprintln!("Clicked!");
21        });
22
23        let list = ListBox::builder()
24            .margin_top(32)
25            .margin_end(32)
26            .margin_bottom(32)
27            .margin_start(32)
28            .build();
29        list.add_css_class("boxed-list");
30        list.append(&row);
31
32        // Combine the content in a box
33        let content = Box::new(Orientation::Vertical, 0);
34        // Adwaitas' ApplicationWindow does not include a HeaderBar
35        content.append(
36            &HeaderBar::builder()
37                .title_widget(&adw::WindowTitle::new("First App", ""))
38                .build(),
39        );
40        content.append(&list);
41
42        let window = ApplicationWindow::builder()
43            .application(app)
44            .default_width(350)
45            // add content to window
46            .content(&content)
47            .build();
48        window.present();
49    });
50
51    application.run();
52}
Source

pub fn decorated(self, decorated: bool) -> Self

Source

pub fn default_height(self, default_height: i32) -> Self

Source

pub fn default_widget(self, default_widget: &impl IsA<Widget>) -> Self

Source

pub fn default_width(self, default_width: i32) -> Self

Examples found in repository?
examples/hello-world.rs (line 44)
7fn main() {
8    let application = Application::builder()
9        .application_id("com.example.FirstAdwaitaApp")
10        .build();
11
12    application.connect_activate(|app| {
13        // ActionRows are only available in Adwaita
14        let row = ActionRow::builder()
15            .activatable(true)
16            .selectable(false)
17            .title("Click me")
18            .build();
19        row.connect_activated(|_| {
20            eprintln!("Clicked!");
21        });
22
23        let list = ListBox::builder()
24            .margin_top(32)
25            .margin_end(32)
26            .margin_bottom(32)
27            .margin_start(32)
28            .build();
29        list.add_css_class("boxed-list");
30        list.append(&row);
31
32        // Combine the content in a box
33        let content = Box::new(Orientation::Vertical, 0);
34        // Adwaitas' ApplicationWindow does not include a HeaderBar
35        content.append(
36            &HeaderBar::builder()
37                .title_widget(&adw::WindowTitle::new("First App", ""))
38                .build(),
39        );
40        content.append(&list);
41
42        let window = ApplicationWindow::builder()
43            .application(app)
44            .default_width(350)
45            // add content to window
46            .content(&content)
47            .build();
48        window.present();
49    });
50
51    application.run();
52}
Source

pub fn deletable(self, deletable: bool) -> Self

Source

pub fn destroy_with_parent(self, destroy_with_parent: bool) -> Self

Source

pub fn display(self, display: &Display) -> Self

Source

pub fn focus_visible(self, focus_visible: bool) -> Self

Source

pub fn focus_widget(self, focus_widget: &impl IsA<Widget>) -> Self

Source

pub fn fullscreened(self, fullscreened: bool) -> Self

Source

pub fn gravity(self, gravity: WindowGravity) -> Self

Available on crate feature gtk_v4_20 only.
Source

pub fn handle_menubar_accel(self, handle_menubar_accel: bool) -> Self

Available on crate feature gtk_v4_2 only.
Source

pub fn hide_on_close(self, hide_on_close: bool) -> Self

Source

pub fn icon_name(self, icon_name: impl Into<GString>) -> Self

Source

pub fn maximized(self, maximized: bool) -> Self

Source

pub fn mnemonics_visible(self, mnemonics_visible: bool) -> Self

Source

pub fn modal(self, modal: bool) -> Self

Source

pub fn resizable(self, resizable: bool) -> Self

Source

pub fn startup_id(self, startup_id: impl Into<GString>) -> Self

Source

pub fn title(self, title: impl Into<GString>) -> Self

Source

pub fn titlebar(self, titlebar: &impl IsA<Widget>) -> Self

Available on crate feature gtk_v4_6 only.
Source

pub fn transient_for(self, transient_for: &impl IsA<Window>) -> Self

Source

pub fn can_focus(self, can_focus: bool) -> Self

Source

pub fn can_target(self, can_target: bool) -> Self

Source

pub fn css_classes(self, css_classes: impl Into<StrV>) -> Self

Source

pub fn css_name(self, css_name: impl Into<GString>) -> Self

Source

pub fn cursor(self, cursor: &Cursor) -> Self

Source

pub fn focus_on_click(self, focus_on_click: bool) -> Self

Source

pub fn focusable(self, focusable: bool) -> Self

Source

pub fn halign(self, halign: Align) -> Self

Source

pub fn has_tooltip(self, has_tooltip: bool) -> Self

Source

pub fn height_request(self, height_request: i32) -> Self

Source

pub fn hexpand(self, hexpand: bool) -> Self

Source

pub fn hexpand_set(self, hexpand_set: bool) -> Self

Source

pub fn layout_manager(self, layout_manager: &impl IsA<LayoutManager>) -> Self

Source

pub fn limit_events(self, limit_events: bool) -> Self

Available on crate feature gtk_v4_18 only.
Source

pub fn margin_bottom(self, margin_bottom: i32) -> Self

Source

pub fn margin_end(self, margin_end: i32) -> Self

Source

pub fn margin_start(self, margin_start: i32) -> Self

Source

pub fn margin_top(self, margin_top: i32) -> Self

Source

pub fn name(self, name: impl Into<GString>) -> Self

Source

pub fn opacity(self, opacity: f64) -> Self

Source

pub fn overflow(self, overflow: Overflow) -> Self

Source

pub fn receives_default(self, receives_default: bool) -> Self

Source

pub fn sensitive(self, sensitive: bool) -> Self

Source

pub fn tooltip_markup(self, tooltip_markup: impl Into<GString>) -> Self

Source

pub fn tooltip_text(self, tooltip_text: impl Into<GString>) -> Self

Source

pub fn valign(self, valign: Align) -> Self

Source

pub fn vexpand(self, vexpand: bool) -> Self

Source

pub fn vexpand_set(self, vexpand_set: bool) -> Self

Source

pub fn visible(self, visible: bool) -> Self

Source

pub fn width_request(self, width_request: i32) -> Self

Source

pub fn accessible_role(self, accessible_role: AccessibleRole) -> Self

Source

pub fn build(self) -> ApplicationWindow

Build the ApplicationWindow.

Examples found in repository?
examples/hello-world.rs (line 47)
7fn main() {
8    let application = Application::builder()
9        .application_id("com.example.FirstAdwaitaApp")
10        .build();
11
12    application.connect_activate(|app| {
13        // ActionRows are only available in Adwaita
14        let row = ActionRow::builder()
15            .activatable(true)
16            .selectable(false)
17            .title("Click me")
18            .build();
19        row.connect_activated(|_| {
20            eprintln!("Clicked!");
21        });
22
23        let list = ListBox::builder()
24            .margin_top(32)
25            .margin_end(32)
26            .margin_bottom(32)
27            .margin_start(32)
28            .build();
29        list.add_css_class("boxed-list");
30        list.append(&row);
31
32        // Combine the content in a box
33        let content = Box::new(Orientation::Vertical, 0);
34        // Adwaitas' ApplicationWindow does not include a HeaderBar
35        content.append(
36            &HeaderBar::builder()
37                .title_widget(&adw::WindowTitle::new("First App", ""))
38                .build(),
39        );
40        content.append(&list);
41
42        let window = ApplicationWindow::builder()
43            .application(app)
44            .default_width(350)
45            // add content to window
46            .content(&content)
47            .build();
48        window.present();
49    });
50
51    application.run();
52}

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.