caw_widgets/
lib.rs

1//! A library of graphical widgets. This library doesn't know about signals or UDP. It just handles
2//! creating interactive widgets and getting data from the widgets. The `midi_udp_widgets_app`
3//! crate is an executable that uses this library to create widgets and sends data from those
4//! widgets over UDP to a synthesizer.
5
6mod button;
7mod computer_keyboard;
8mod knob;
9mod num_keys_bits_7;
10mod switch;
11mod window;
12mod xy;
13
14pub use button::*;
15pub use computer_keyboard::*;
16pub use knob::*;
17pub use num_keys_bits_7::*;
18pub use switch::*;
19pub use xy::*;