blob: f8630d73ab6f745c1581768248e3564c10d4fea0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! General graphical user interfaces
//!
//! This mod does not contain all graphical content on screen, but all user interfaces that is drawn
//! that is not contained in a different category. This means all interface elements where it does not
//! make sense to bind it to any other part of the program, for instance a tool or type of element.
//! It also does *not* contain anything that does anything that is not triggered by the user, which
//! means everything is called top-down from this module. A function in this module should not be
//! called from any point in the program except the main loop, where the user input is polled.
pub mod dimension_indicator;
pub mod position_indicator;
pub mod tool_sidebar;
pub use self::dimension_indicator::*;
pub use self::position_indicator::*;
pub use self::tool_sidebar::*;
|