lib_myfltk 0.1.0

File handling utility functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

use fltk::{app, window};
use fltk::enums::Color;
use fltk::prelude::{GroupExt, WidgetBase, WidgetExt};

fn main() {
    let app = app::App::default();

    let mut primwin = window::Window::new(1000, 100, 700, 850, "Two Button Popup Example");
    primwin.set_color(Color::Yellow);
    primwin.end();
    primwin.show();

    app.run().unwrap();
}