runtime: Add a Signal class

Not very functional yet
This commit is contained in:
Olivier Goffart 2020-05-20 15:22:07 +02:00
parent 4f22e2c341
commit 83d206ea39
5 changed files with 158 additions and 2 deletions

View file

@ -7,6 +7,7 @@ pub mod abi {
pub mod model;
pub mod primitives;
pub mod properties;
pub mod signals;
pub mod string;
}
@ -16,6 +17,9 @@ pub use abi::string::SharedString;
#[doc(inline)]
pub use abi::properties::Property;
#[doc(inline)]
pub use abi::signals::Signal;
mod item_rendering;
pub struct MainWindow<GraphicsBackend>