A custom OS for the xteink x4 ebook reader
1// font-dependent UI widgets (app-side)
2//
3// these widgets depend on BitmapFont from the fontdue pipeline and
4// live in the apps layer, not the kernel; the kernel's ui/ module
5// holds only font-independent primitives (Region, Alignment, etc)
6
7pub mod bitmap_label;
8pub mod button_feedback;
9pub mod format;
10pub mod list;
11pub mod quick_menu;
12pub mod selectable_row;
13
14pub use bitmap_label::{BitmapDynLabel, BitmapLabel};
15pub use button_feedback::{BUTTON_BAR_H, ButtonFeedback};
16pub use format::{draw_position_indicator, fmt_percent, fmt_position};
17pub use list::ListSelection;
18pub use quick_menu::QuickMenu;
19pub use selectable_row::SelectableRow;