Files
helvum/src/view/mod.rs
Tom A. Wagner be240231c0 Merge Controller and View structs into one Application struct.
The `View` sturct was mostly a layer of indirection, and the controller benefitted by absorbing the gtk::Application
subclass parts, so now those two are merged into a new gtk::Application subclass.
2021-05-08 18:06:52 +02:00

12 lines
234 B
Rust

//! The view presented to the user.
//!
//! This module contains gtk widgets needed to present the graphical user interface.
mod graph_view;
mod node;
mod port;
pub use graph_view::GraphView;
pub use node::Node;
pub use port::Port;