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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*!
Documentation for the examples

Each file is a standalone executable with its own main function. Examples vary from basic hello world simplicity to some more complex examples. They may contain logic bugs, however their purpose is for demonstration and for testing UI elements. If you would like to contribute fixes, improvements or more examples, you're very welcome to do so.

More interesting examples can be found in the fltk-rs-demos [repo](https://github.com/fltk-rs/demos).
Also a nice implementation of the 7guis tasks can be found [here](https://github.com/tdryer/7guis-fltk-rs).
Various advanced examples can also be found [here](https://github.com/wyhinton/FLTK-RS-Examples).
*/

pub mod animations;
pub mod calculator;
pub mod calculator2;
pub mod charts;
pub mod closable_tab;
pub mod composite_widgets;
pub mod counter;
pub mod counter2;
pub mod counter3;
pub mod counter4;
pub mod custom_choice;
pub mod custom_dial;
pub mod custom_popup;
pub mod custom_widgets;
pub mod defaults;
pub mod editor;
pub mod editor2;
pub mod fb;
pub mod flex;
pub mod format_text;
pub mod frames;
pub mod gradients;
pub mod hello_button;
pub mod hello_svg;
pub mod image;
pub mod menubutton;
pub mod messages;
pub mod paint;
pub mod pong;
pub mod popup_browser;
pub mod rgb;
pub mod rounded_images;
pub mod screens_info;
pub mod shapedwindow_taskbar;
pub mod spreadsheet;
pub mod system_fonts;
pub mod table;
pub mod tabs;
pub mod temp_converter;
pub mod threads_windows;
pub mod tile;
pub mod tree;
pub mod widget_table;
pub mod wizard;