1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
//! Configuration defining available node types, pins and widgets that will be
//! available in given application instance.
//!
//! # Example
//!
//! The following example illustrates a [`Config`](struct.Config.html) which
//! leverages all the available constructs.
//!
//! For more info about each sub-structure, see their respective documentation.
//!
//! ```
//! # use gazpatcho::config::*;
//! let config = Config {
//! node_templates: vec![
//! NodeTemplate {
//! label: "Oscillator".to_owned(),
//! class: "oscillator".to_owned(),
//! pins: vec![
//! Pin {
//! label: "Frequency".to_owned(),
//! class: "frequency".to_owned(),
//! direction: Input,
//! },
//! Pin {
//! label: "Output".to_owned(),
//! class: "output".to_owned(),
//! direction: Output,
//! },
//! ],
//! widgets: vec![
//! MultilineInput {
//! key: "comment".to_owned(),
//! capacity: 1000,
//! size: [300.0, 100.0],
//! },
//! Slider {
//! key: "slider".to_owned(),
//! min: 0.0,
//! max: 10.0,
//! format: "%.1f".to_owned(),
//! width: 150.0,
//! },
//! Trigger {
//! label: "Trigger".to_owned(),
//! key: "trigger".to_owned(),
//! },
//! Switch {
//! label: "Switch".to_owned(),
//! key: "switch".to_owned(),
//! },
//! DropDown {
//! key: "dropdown".to_owned(),
//! items: vec![
//! DropDownItem {
//! label: "Sine".to_owned(),
//! value: "sine".to_owned(),
//! },
//! DropDownItem {
//! label: "Square".to_owned(),
//! value: "square".to_owned(),
//! },
//! ],
//! },
//! ],
//! },
//! ],
//! };
//! ```
/// The structure holding the whole configuration.
///
/// See the [module documentation](index.html) to see an example of a fully
/// defined `Config`.
/// The structure specifying format of a node.
///
/// This includes node's appearance, all input and output pins that are to be
/// connected through patches, and various widgets that can be used to record
/// per-node values.
///
/// See the [module documentation](index.html) to see an example of a fully
/// defined `NodeTemplate` inside a config.
/// The type describing the format of a single pin within a node.
///
/// # Example
///
/// ```
/// # use gazpatcho::config::*;
/// let pin = Pin {
/// label: "Input".to_owned(),
/// class: "input_class".to_owned(),
/// direction: Output,
/// };
/// ```
/// The direction type specifying the orientation of node [`Pins`](struct.Pin.html).
pub use *;
/// Widgets are input dialogs shown on a node.
///
/// Each widget must have a unique `key` within the node it's registered to.
/// This `key` is then used to read values recorded by the user.
pub use *;
/// An item listed in the `DropDown` widget.