mirror of
https://gitlab.freedesktop.org/pipewire/helvum
synced 2026-03-15 03:26:10 +08:00
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.
12 lines
234 B
Rust
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;
|