fltk/macros/mod.rs
1/// Provides the default implementation macro for browser widgets
2pub mod browser;
3
4/// Provides the default implementation macro for button widgets
5pub mod button;
6
7/// Provides the default implementation macro for display widgets
8pub mod display;
9
10/// Provides the default implementation macro for group widgets
11pub mod group;
12
13/// Provides the default implementation macro for image widgets
14pub mod image;
15
16/// Provides the default implementation macro for input widgets
17pub mod input;
18
19/// Provides the default implementation macro for menu widgets
20pub mod menu;
21
22/// Provides the default implementation macro for table widgets
23pub mod table;
24
25/// Provides the default implementation macro for valuator widgets
26pub mod valuator;
27
28/// Provides the default implementation macro for widget widgets
29pub mod widget;
30
31/// Provides the default implementation macro for window widgets
32pub mod window;
33
34#[doc(hidden)]
35pub mod utils;