Struct fltk::group::Flex

source ·
pub struct Flex { /* private fields */ }
Expand description

a Flexbox widget

Example

use fltk::{prelude::*, *};
fn main() {
    let a = app::App::default();
    let mut win = window::Window::default().with_size(400, 300);
    let mut col = group::Flex::default().size_of_parent();
    col.set_type(group::FlexType::Column);
    let expanding = button::Button::default().with_label("Expanding");
    let mut normal = button::Button::default().with_label("Normal");
    col.set_size(&mut normal, 30);
    col.end();
    win.end();
    win.show();
    a.run().unwrap();
}

Implementations§

source§

impl Flex

source

pub fn add<W: WidgetExt>(&mut self, widget: &W)

Add a widget to the Flex box

source

pub fn insert<W: WidgetExt>(&mut self, widget: &W, idx: i32)

Add a widget to the Flex box

source

pub fn set_size<W: WidgetExt>(&mut self, w: &W, size: i32)

👎Deprecated since 1.4.8: please use fixed instead

Set the size of the widget, same as fixed (before it was changed in FLTK 1.4)

source

pub fn fixed<W: WidgetExt>(&mut self, w: &W, size: i32)

Set the size of the widget, same as set_size, but more inline with the new FLTK Fl_Flex api

Examples found in repository?
examples/editor2.rs (line 250)
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
fn main() {
    let a = app::App::default().with_scheme(app::Scheme::Oxy);
    app::get_system_colors();

    let mut buf = text::TextBuffer::default();
    buf.set_tab_distance(4);

    let state = State::new(buf.clone());
    app::GlobalState::new(state);

    let mut w = window::Window::default()
        .with_size(WIDTH, HEIGHT)
        .with_label("Ted");
    w.set_xclass("ted");
    {
        let mut col = group::Flex::default_fill().column();
        col.set_pad(0);
        let mut m = menu::SysMenuBar::default();
        init_menu(&mut m);
        let mut ed = text::TextEditor::default().with_id("ed");
        ed.set_buffer(buf);
        ed.set_linenumber_width(40);
        ed.set_text_font(Font::Courier);
        ed.set_trigger(CallbackTrigger::Changed);
        ed.set_callback(editor_cb);
        handle_drag_drop(&mut ed);
        w.resizable(&col);
        col.fixed(&m, 30);
        col.end();
    }
    w.end();
    w.show();
    w.set_callback(win_cb);
    a.run().unwrap();
}
More examples
Hide additional examples
examples/temp_converter2.rs (line 52)
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
    pub fn new() -> Self {
        let a = app::App::default();
        MyApp::init_styles();
        let (s, r) = app::channel();

        let (inp1, inp2) = {
            let mut win = window::Window::default().with_size(150, 200);
            let mut flex = group::Flex::default()
                .with_size(130, 180)
                .center_of(&win)
                .column();
            make_label("Celcius");
            let mut inp1 = input::FloatInput::default().with_size(0, 40);
            make_label("Fahrenheit");
            let mut inp2 = input::FloatInput::default().with_size(0, 40);
            flex.fixed(&inp1, 30);
            flex.fixed(&inp2, 30);
            flex.end();
            win.end();
            win.make_resizable(true);
            win.show();

            inp1.set_value(&format!("{}", 0.0));
            inp2.set_value(&format!("{}", 32.0));

            inp1.set_trigger(CallbackTrigger::Changed);
            inp2.set_trigger(CallbackTrigger::Changed);

            inp1.emit(s, Message::CelciusChanged);
            inp2.emit(s, Message::FahrenheitChanged);

            (inp1, inp2)
        };
        Self { a, inp1, inp2, r }
    }
examples/flex.rs (line 28)
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
fn buttons_panel(parent: &mut group::Flex) {
    frame::Frame::default();
    let w = frame::Frame::default().with_label("Welcome to Flex Login");

    let mut urow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Username:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let username = input::Input::default();

        urow.fixed(&username, 180);
        urow.end();
    }

    let mut prow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Password:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let password = input::Input::default();

        prow.fixed(&password, 180);
        prow.end();
    }

    let pad = frame::Frame::default();

    let mut brow = group::Flex::default().row();
    {
        frame::Frame::default();
        let reg = create_button("Register");
        let login = create_button("Login");

        brow.fixed(&reg, 80);
        brow.fixed(&login, 80);
        brow.end();
    }

    let b = frame::Frame::default();

    frame::Frame::default();

    parent.fixed(&w, 60);
    parent.fixed(&urow, 30);
    parent.fixed(&prow, 30);
    parent.fixed(&pad, 1);
    parent.fixed(&brow, 30);
    parent.fixed(&b, 30);
}

fn middle_panel(parent: &mut group::Flex) {
    frame::Frame::default();

    let mut frame = frame::Frame::default().with_label("Image");
    frame.set_frame(enums::FrameType::BorderBox);
    frame.set_color(enums::Color::from_rgb(0, 200, 0));
    let spacer = frame::Frame::default();

    let mut bp = group::Flex::default().column();
    buttons_panel(&mut bp);
    bp.end();

    frame::Frame::default();

    parent.fixed(&frame, 200);
    parent.fixed(&spacer, 10);
    parent.fixed(&bp, 300);
}

fn main_panel(parent: &mut group::Flex) {
    frame::Frame::default();

    let mut mp = group::Flex::default().row();
    middle_panel(&mut mp);
    mp.end();

    frame::Frame::default();

    parent.fixed(&mp, 200);
}
source

pub fn debug(flag: bool)

Debug the flex layout

source

pub fn column(self) -> Self

Set the type to be a column

Examples found in repository?
examples/flex.rs (line 6)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
fn main() {
    let a = app::App::default().with_scheme(app::Scheme::Gtk);
    let mut win = window::Window::default().with_size(640, 480);
    let mut col = group::Flex::default_fill().column();
    main_panel(&mut col);
    col.end();
    win.resizable(&col);
    win.set_color(enums::Color::from_rgb(250, 250, 250));
    win.end();
    win.show();
    win.size_range(600, 400, 0, 0);
    a.run().unwrap();
}

fn buttons_panel(parent: &mut group::Flex) {
    frame::Frame::default();
    let w = frame::Frame::default().with_label("Welcome to Flex Login");

    let mut urow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Username:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let username = input::Input::default();

        urow.fixed(&username, 180);
        urow.end();
    }

    let mut prow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Password:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let password = input::Input::default();

        prow.fixed(&password, 180);
        prow.end();
    }

    let pad = frame::Frame::default();

    let mut brow = group::Flex::default().row();
    {
        frame::Frame::default();
        let reg = create_button("Register");
        let login = create_button("Login");

        brow.fixed(&reg, 80);
        brow.fixed(&login, 80);
        brow.end();
    }

    let b = frame::Frame::default();

    frame::Frame::default();

    parent.fixed(&w, 60);
    parent.fixed(&urow, 30);
    parent.fixed(&prow, 30);
    parent.fixed(&pad, 1);
    parent.fixed(&brow, 30);
    parent.fixed(&b, 30);
}

fn middle_panel(parent: &mut group::Flex) {
    frame::Frame::default();

    let mut frame = frame::Frame::default().with_label("Image");
    frame.set_frame(enums::FrameType::BorderBox);
    frame.set_color(enums::Color::from_rgb(0, 200, 0));
    let spacer = frame::Frame::default();

    let mut bp = group::Flex::default().column();
    buttons_panel(&mut bp);
    bp.end();

    frame::Frame::default();

    parent.fixed(&frame, 200);
    parent.fixed(&spacer, 10);
    parent.fixed(&bp, 300);
}
More examples
Hide additional examples
examples/widget_id.rs (line 56)
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
fn main() {
    let counter = Counter { count: 0 };
    let _state = app::GlobalState::new(counter);
    let app = app::App::default().with_scheme(app::Scheme::Gtk);
    let mut wind = window::Window::default()
        .with_size(160, 200)
        .with_label("Counter");
    let col = group::Flex::default_fill().column();
    button::Button::default()
        .with_label("+")
        .on_trigger(increment); // passed by function object
    frame::Frame::default().with_label("0").with_id("my_frame"); // pass id here
    button::Button::default()
        .with_label("-")
        .on_trigger(|_| increment_by(-1)); // called in closure
    col.end();
    wind.make_resizable(true);
    wind.end();
    wind.show();

    app.run().unwrap();
}
examples/closable_tab.rs (line 20)
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
39
40
41
42
43
fn main() {
    let app = app::App::default();
    let mut win = window::Window::default().with_size(800, 600);
    let row = group::Flex::default_fill().row();
    let mut tabs = group::Tabs::default();
    tabs.set_tab_align(enums::Align::Right);
    tabs.handle_overflow(group::TabsOverflow::Compress);
    // first tab
    {
        let mut col1 = group::Flex::default().with_label("\t\ttab1").column();
        col1.set_trigger(CallbackTrigger::Closed);
        col1.set_callback(tab_close_cb);
        // widgets
        col1.end();
    }
    // end first tab

    // second tab
    {
        let mut col2 = group::Flex::default().with_label("\t\ttab2").column();
        col2.set_trigger(CallbackTrigger::Closed);
        col2.set_callback(tab_close_cb);
        // widgets
        col2.end();
    }
    // end second tab
    tabs.end();
    tabs.auto_layout();
    row.end();
    win.end();
    win.show();
    app.run().unwrap();
}
examples/editor2.rs (line 238)
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
fn main() {
    let a = app::App::default().with_scheme(app::Scheme::Oxy);
    app::get_system_colors();

    let mut buf = text::TextBuffer::default();
    buf.set_tab_distance(4);

    let state = State::new(buf.clone());
    app::GlobalState::new(state);

    let mut w = window::Window::default()
        .with_size(WIDTH, HEIGHT)
        .with_label("Ted");
    w.set_xclass("ted");
    {
        let mut col = group::Flex::default_fill().column();
        col.set_pad(0);
        let mut m = menu::SysMenuBar::default();
        init_menu(&mut m);
        let mut ed = text::TextEditor::default().with_id("ed");
        ed.set_buffer(buf);
        ed.set_linenumber_width(40);
        ed.set_text_font(Font::Courier);
        ed.set_trigger(CallbackTrigger::Changed);
        ed.set_callback(editor_cb);
        handle_drag_drop(&mut ed);
        w.resizable(&col);
        col.fixed(&m, 30);
        col.end();
    }
    w.end();
    w.show();
    w.set_callback(win_cb);
    a.run().unwrap();
}
examples/temp_converter2.rs (line 47)
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
    pub fn new() -> Self {
        let a = app::App::default();
        MyApp::init_styles();
        let (s, r) = app::channel();

        let (inp1, inp2) = {
            let mut win = window::Window::default().with_size(150, 200);
            let mut flex = group::Flex::default()
                .with_size(130, 180)
                .center_of(&win)
                .column();
            make_label("Celcius");
            let mut inp1 = input::FloatInput::default().with_size(0, 40);
            make_label("Fahrenheit");
            let mut inp2 = input::FloatInput::default().with_size(0, 40);
            flex.fixed(&inp1, 30);
            flex.fixed(&inp2, 30);
            flex.end();
            win.end();
            win.make_resizable(true);
            win.show();

            inp1.set_value(&format!("{}", 0.0));
            inp2.set_value(&format!("{}", 32.0));

            inp1.set_trigger(CallbackTrigger::Changed);
            inp2.set_trigger(CallbackTrigger::Changed);

            inp1.emit(s, Message::CelciusChanged);
            inp2.emit(s, Message::FahrenheitChanged);

            (inp1, inp2)
        };
        Self { a, inp1, inp2, r }
    }
source

pub fn row(self) -> Self

Set the type to a row

Examples found in repository?
examples/closable_tab.rs (line 14)
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
39
40
41
42
43
fn main() {
    let app = app::App::default();
    let mut win = window::Window::default().with_size(800, 600);
    let row = group::Flex::default_fill().row();
    let mut tabs = group::Tabs::default();
    tabs.set_tab_align(enums::Align::Right);
    tabs.handle_overflow(group::TabsOverflow::Compress);
    // first tab
    {
        let mut col1 = group::Flex::default().with_label("\t\ttab1").column();
        col1.set_trigger(CallbackTrigger::Closed);
        col1.set_callback(tab_close_cb);
        // widgets
        col1.end();
    }
    // end first tab

    // second tab
    {
        let mut col2 = group::Flex::default().with_label("\t\ttab2").column();
        col2.set_trigger(CallbackTrigger::Closed);
        col2.set_callback(tab_close_cb);
        // widgets
        col2.end();
    }
    // end second tab
    tabs.end();
    tabs.auto_layout();
    row.end();
    win.end();
    win.show();
    app.run().unwrap();
}
More examples
Hide additional examples
examples/flex.rs (line 21)
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
fn buttons_panel(parent: &mut group::Flex) {
    frame::Frame::default();
    let w = frame::Frame::default().with_label("Welcome to Flex Login");

    let mut urow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Username:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let username = input::Input::default();

        urow.fixed(&username, 180);
        urow.end();
    }

    let mut prow = group::Flex::default().row();
    {
        frame::Frame::default()
            .with_label("Password:")
            .with_align(enums::Align::Inside | enums::Align::Right);
        let password = input::Input::default();

        prow.fixed(&password, 180);
        prow.end();
    }

    let pad = frame::Frame::default();

    let mut brow = group::Flex::default().row();
    {
        frame::Frame::default();
        let reg = create_button("Register");
        let login = create_button("Login");

        brow.fixed(&reg, 80);
        brow.fixed(&login, 80);
        brow.end();
    }

    let b = frame::Frame::default();

    frame::Frame::default();

    parent.fixed(&w, 60);
    parent.fixed(&urow, 30);
    parent.fixed(&prow, 30);
    parent.fixed(&pad, 1);
    parent.fixed(&brow, 30);
    parent.fixed(&b, 30);
}

fn middle_panel(parent: &mut group::Flex) {
    frame::Frame::default();

    let mut frame = frame::Frame::default().with_label("Image");
    frame.set_frame(enums::FrameType::BorderBox);
    frame.set_color(enums::Color::from_rgb(0, 200, 0));
    let spacer = frame::Frame::default();

    let mut bp = group::Flex::default().column();
    buttons_panel(&mut bp);
    bp.end();

    frame::Frame::default();

    parent.fixed(&frame, 200);
    parent.fixed(&spacer, 10);
    parent.fixed(&bp, 300);
}

fn main_panel(parent: &mut group::Flex) {
    frame::Frame::default();

    let mut mp = group::Flex::default().row();
    middle_panel(&mut mp);
    mp.end();

    frame::Frame::default();

    parent.fixed(&mp, 200);
}
source

pub fn recalc(&self)

Recalculate children’s coords and sizes

source

pub fn layout(&self)

Recalculate children’s coords and sizes

source

pub fn set_margin(&mut self, m: i32)

Set the margin

source

pub fn margin(&self) -> i32

Get the margin

source

pub fn set_pad(&mut self, p: i32)

Set the padding

Examples found in repository?
examples/editor2.rs (line 239)
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
fn main() {
    let a = app::App::default().with_scheme(app::Scheme::Oxy);
    app::get_system_colors();

    let mut buf = text::TextBuffer::default();
    buf.set_tab_distance(4);

    let state = State::new(buf.clone());
    app::GlobalState::new(state);

    let mut w = window::Window::default()
        .with_size(WIDTH, HEIGHT)
        .with_label("Ted");
    w.set_xclass("ted");
    {
        let mut col = group::Flex::default_fill().column();
        col.set_pad(0);
        let mut m = menu::SysMenuBar::default();
        init_menu(&mut m);
        let mut ed = text::TextEditor::default().with_id("ed");
        ed.set_buffer(buf);
        ed.set_linenumber_width(40);
        ed.set_text_font(Font::Courier);
        ed.set_trigger(CallbackTrigger::Changed);
        ed.set_callback(editor_cb);
        handle_drag_drop(&mut ed);
        w.resizable(&col);
        col.fixed(&m, 30);
        col.end();
    }
    w.end();
    w.show();
    w.set_callback(win_cb);
    a.run().unwrap();
}
source

pub fn pad(&self) -> i32

Get the padding

source

pub fn set_margins(&mut self, left: i32, top: i32, right: i32, bottom: i32)

Set the margins

source

pub fn margins(&self) -> (i32, i32, i32, i32)

Get the margins -> returns (left, top, right, bottom)

Trait Implementations§

source§

impl Clone for Flex

source§

fn clone(&self) -> Flex

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Flex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Flex

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl GroupExt for Flex

source§

fn begin(&self)

Begins a group, used for widgets implementing the group trait
source§

fn end(&self)

Ends a group, used for widgets implementing the group trait
source§

fn clear(&mut self)

Clear a group from all widgets
source§

fn children(&self) -> i32

Return the number of children in a group
source§

fn child(&self, idx: i32) -> Option<Widget>

Return child widget by index
source§

fn find<W: WidgetExt>(&self, widget: &W) -> i32

Find a widget within a group and return its index
source§

fn add<W: WidgetExt>(&mut self, widget: &W)

Add a widget to a group
source§

fn insert<W: WidgetExt>(&mut self, widget: &W, index: i32)

Insert a widget to a group at a certain index
source§

fn remove<W: WidgetExt>(&mut self, widget: &W)

Remove a widget from a group, but does not delete it
source§

fn remove_by_index(&mut self, idx: i32)

Remove a child widget by its index
source§

fn resizable<W: WidgetExt>(&self, widget: &W)

The resizable widget defines both the resizing frame and the resizing behavior of the group and its children.
source§

fn make_resizable(&mut self, val: bool)

Make the group itself resizable, should be called before the widget is shown
source§

fn add_resizable<W: WidgetExt>(&mut self, widget: &W)

Adds a widget to the group and makes it the resizable widget
source§

fn set_clip_children(&mut self, flag: bool)

Clips children outside the group boundaries
source§

fn clip_children(&self) -> bool

Get whether clip_children is set
source§

fn draw_child<W: WidgetExt>(&self, w: &mut W)

Draw a child widget, the call should be in a WidgetBase::draw method
source§

fn update_child<W: WidgetExt>(&self, w: &mut W)

Update a child widget, the call should be in a WidgetBase::draw method
source§

fn draw_outside_label<W: WidgetExt>(&self, w: &mut W)

Draw the outside label, the call should be in a WidgetBase::draw method
source§

fn draw_children(&mut self)

Draw children, the call should be in a WidgetBase::draw method
source§

fn init_sizes(&mut self)

Resets the internal array of widget sizes and positions
source§

fn bounds(&self) -> Vec<(i32, i32, i32, i32)>

Get the bounds of all children widgets (left, upper, right, bottom)
source§

unsafe fn into_group(&self) -> Group

Converts a widget implementing GroupExt into a Group widget Read more
source§

impl IntoIterator for Flex

§

type Item = Widget

The type of the elements being iterated over.
§

type IntoIter = IntoIter<<Flex as IntoIterator>::Item, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Flex> for Flex

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl WidgetBase for Flex

source§

fn new<T: Into<Option<&'static str>>>( x: i32, y: i32, width: i32, height: i32, title: T ) -> Flex

Creates a new widget, takes an x, y coordinates, as well as a width and height, plus a title Read more
source§

fn default_fill() -> Self

Constructs a widget with the size of its parent
source§

fn delete(wid: Self)

Deletes widgets and their children.
source§

unsafe fn from_widget_ptr(ptr: *mut Fl_Widget) -> Self

transforms a widget pointer to a Widget, for internal use Read more
source§

unsafe fn from_widget<W: WidgetExt>(w: W) -> Self

Get a widget from base widget Read more
source§

fn handle<F: FnMut(&mut Self, Event) -> bool + 'static>(&mut self, cb: F)

Set a custom handler, where events are managed manually, akin to Fl_Widget::handle(int). Handled or ignored events should return true, unhandled events should return false. takes the widget as a closure argument
source§

fn draw<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)

Set a custom draw method. takes the widget as a closure argument. macOS requires that WidgetBase::draw actually calls drawing functions
source§

fn resize_callback<F: FnMut(&mut Self, i32, i32, i32, i32) + 'static>( &mut self, cb: F )

Perform a callback on resize. Avoid resizing the parent or the same widget to avoid infinite recursion
source§

unsafe fn assume_derived(&mut self)

Makes the widget derived Read more
source§

fn from_dyn_widget<W: WidgetExt>(w: &W) -> Option<Self>

Cast a type-erased widget back to its original widget
source§

fn from_dyn_widget_ptr(w: *mut Fl_Widget) -> Option<Self>

Cast a type-erased widget pointer back to its original widget
source§

impl WidgetExt for Flex

source§

fn center_x<W: WidgetExt>(self, w: &W) -> Self

Initialize center of another widget

source§

fn center_y<W: WidgetExt>(self, w: &W) -> Self

Initialize center of another widget

source§

fn with_pos(self, x: i32, y: i32) -> Self

Initialize to a position x, y
source§

fn with_size(self, width: i32, height: i32) -> Self

Initialize to size width, height
source§

fn with_label(self, title: &str) -> Self

Initialize with a label
source§

fn with_align(self, align: Align) -> Self

Initialize with alignment
source§

fn with_type<T: WidgetType>(self, typ: T) -> Self

Initialize with type
source§

fn below_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self

Initialize at bottom of another widget
source§

fn above_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self

Initialize above of another widget
source§

fn right_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self

Initialize right of another widget
source§

fn left_of<W: WidgetExt>(self, wid: &W, padding: i32) -> Self

Initialize left of another widget
source§

fn center_of<W: WidgetExt>(self, w: &W) -> Self

Initialize center of another widget
source§

fn center_of_parent(self) -> Self

Initialize center of parent
source§

fn size_of<W: WidgetExt>(self, w: &W) -> Self

Initialize to the size of another widget
source§

fn size_of_parent(self) -> Self

Initialize to the size of the parent
source§

fn set_pos(&mut self, x: i32, y: i32)

Set to position x, y
source§

fn set_size(&mut self, width: i32, height: i32)

Set to dimensions width and height
source§

fn set_label(&mut self, title: &str)

Sets the widget’s label. labels support special symbols preceded by an @ sign. and for the associated formatting.
source§

fn redraw(&mut self)

Redraws a widget, necessary for resizing and changing positions
source§

fn show(&mut self)

Shows the widget
source§

fn hide(&mut self)

Hides the widget
source§

fn x(&self) -> i32

Returns the x coordinate of the widget
source§

fn y(&self) -> i32

Returns the y coordinate of the widget
source§

fn width(&self) -> i32

Returns the width of the widget
source§

fn height(&self) -> i32

Returns the height of the widget
source§

fn w(&self) -> i32

Returns the width of the widget
source§

fn h(&self) -> i32

Returns the height of the widget
source§

fn label(&self) -> String

Returns the label of the widget
source§

fn measure_label(&self) -> (i32, i32)

Measures the label’s width and height
source§

fn as_widget_ptr(&self) -> *mut Fl_Widget

transforms a widget to a base Fl_Widget, for internal use
source§

fn activate(&mut self)

Activates the widget
source§

fn deactivate(&mut self)

Deactivates the widget
source§

fn redraw_label(&mut self)

Redraws the label of the widget
source§

fn resize(&mut self, x: i32, y: i32, width: i32, height: i32)

Resizes and/or moves the widget, takes x, y, width and height
source§

fn widget_resize(&mut self, x: i32, y: i32, width: i32, height: i32)

Does a simple resize ignoring class-specific resize functionality
source§

fn tooltip(&self) -> Option<String>

Returns the tooltip text
source§

fn set_tooltip(&mut self, txt: &str)

Sets the tooltip text
source§

fn color(&self) -> Color

Returns the widget color
source§

fn set_color(&mut self, color: Color)

Sets the widget’s color
source§

fn label_color(&self) -> Color

Returns the widget label’s color
source§

fn set_label_color(&mut self, color: Color)

Sets the widget label’s color
source§

fn label_font(&self) -> Font

Returns the widget label’s font
source§

fn set_label_font(&mut self, font: Font)

Sets the widget label’s font
source§

fn label_size(&self) -> i32

Returns the widget label’s size
source§

fn set_label_size(&mut self, sz: i32)

Sets the widget label’s size
source§

fn label_type(&self) -> LabelType

Returns the widget label’s type
source§

fn set_label_type(&mut self, typ: LabelType)

Sets the widget label’s type
source§

fn frame(&self) -> FrameType

Returns the widget’s frame type
source§

fn set_frame(&mut self, typ: FrameType)

Sets the widget’s frame type
source§

fn changed(&self) -> bool

Returns whether the widget was changed
source§

fn set_changed(&mut self)

Mark the widget as changed
source§

fn clear_changed(&mut self)

Clears the changed status of the widget
source§

fn align(&self) -> Align

Returns the alignment of the widget
source§

fn set_align(&mut self, align: Align)

Sets the alignment of the widget
source§

fn set_trigger(&mut self, trigger: CallbackTrigger)

Sets the default callback trigger for a widget, equivalent to when()
source§

fn trigger(&self) -> CallbackTrigger

Return the callback trigger, equivalent to when()
source§

fn parent(&self) -> Option<Group>

Returns the parent of the widget
source§

fn selection_color(&self) -> Color

Gets the selection color of the widget
source§

fn set_selection_color(&mut self, color: Color)

Sets the selection color of the widget
source§

fn do_callback(&mut self)

Runs the already registered callback
source§

fn window(&self) -> Option<Box<dyn WindowExt>>

Returns the direct window holding the widget
source§

fn top_window(&self) -> Option<Box<dyn WindowExt>>

Returns the topmost window holding the widget
source§

fn takes_events(&self) -> bool

Checks whether a widget is capable of taking events
source§

fn take_focus(&mut self) -> Result<(), FltkError>

Make the widget take focus Read more
source§

fn set_visible_focus(&mut self)

Set the widget to have visible focus
source§

fn clear_visible_focus(&mut self)

Clear visible focus
source§

fn visible_focus(&mut self, v: bool)

Set the visible focus using a flag
source§

fn has_visible_focus(&self) -> bool

Return whether the widget has visible focus
source§

fn has_focus(&self) -> bool

Return whether the widget has focus
source§

fn was_deleted(&self) -> bool

Check if a widget was deleted
source§

fn damage(&self) -> bool

Return whether the widget was damaged
source§

fn set_damage(&mut self, flag: bool)

Signal the widget as damaged and it should be redrawn in the next event loop cycle
source§

fn damage_type(&self) -> Damage

Return the damage mask
source§

fn set_damage_type(&mut self, mask: Damage)

Signal the type of damage a widget received
source§

fn set_damage_area(&mut self, mask: Damage, x: i32, y: i32, w: i32, h: i32)

Signal damage for an area inside the widget
source§

fn clear_damage(&mut self)

Clear the damaged flag
source§

fn as_window(&self) -> Option<Box<dyn WindowExt>>

Return the widget as a window if it’s a window
source§

fn as_group(&self) -> Option<Group>

Return the widget as a group widget if it’s a group widget
source§

fn inside<W: WidgetExt>(&self, wid: &W) -> bool

Checks whether the self widget is inside another widget
source§

fn get_type<T: WidgetType>(&self) -> T

Returns the widget type when applicable
source§

fn set_type<T: WidgetType>(&mut self, typ: T)

Sets the widget type
source§

fn set_image<I: ImageExt>(&mut self, image: Option<I>)

Sets the image of the widget
source§

fn set_image_scaled<I: ImageExt>(&mut self, image: Option<I>)

Sets the image of the widget scaled to the widget’s size
source§

fn image(&self) -> Option<Box<dyn ImageExt>>

Gets the image associated with the widget
source§

unsafe fn image_mut(&self) -> Option<&mut Image>

Get a reference type of the widget’s image Read more
source§

fn set_deimage<I: ImageExt>(&mut self, image: Option<I>)

Sets the deactivated image of the widget
source§

fn set_deimage_scaled<I: ImageExt>(&mut self, image: Option<I>)

Sets the deactivated image of the widget scaled to the widget’s size
source§

fn deimage(&self) -> Option<Box<dyn ImageExt>>

Gets the deactivated image associated with the widget
source§

unsafe fn deimage_mut(&self) -> Option<&mut Image>

Get a reference type of the widget’s deactivated image Read more
source§

fn set_callback<F: FnMut(&mut Self) + 'static>(&mut self, cb: F)

Sets the callback when the widget is triggered (clicks for example) takes the widget as a closure argument
source§

fn emit<T: 'static + Clone + Send + Sync>(&mut self, sender: Sender<T>, msg: T)

Emits a message on callback using a sender
source§

unsafe fn into_widget<W: WidgetBase>(&self) -> W

Upcast a WidgetExt to some widget type Read more
source§

fn visible(&self) -> bool

Returns whether a widget is visible
source§

fn visible_r(&self) -> bool

Returns whether a widget or any of its parents are visible (recursively)
source§

fn is_same<W: WidgetExt>(&self, other: &W) -> bool

Return whether two widgets object point to the same widget
source§

fn active(&self) -> bool

Returns whether a widget is active
source§

fn active_r(&self) -> bool

Returns whether a widget or any of its parents are active (recursively)
source§

fn handle_event(&mut self, event: Event) -> bool

Handle a specific event
source§

fn is_derived(&self) -> bool

Check whether a widget is derived
source§

fn as_base_widget(&self) -> Widgetwhere Self: Sized,

Upcast a WidgetExt to a Widget
source§

impl Eq for Flex

source§

impl Send for Flex

source§

impl Sync for Flex

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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

impl<W> WidgetId<W> for Wwhere W: WidgetExt + Send + Sync + Clone + 'static,

source§

fn set_id(&mut self, id: &str)

Set the widget’s Id
source§

fn with_id(self, id: &str) -> W

Construct a widget with an Id