| 200 | } |
| 201 | |
| 202 | void NoteStreamDisplay::LoadLayout(const ofxJSONElement& moduleInfo) |
| 203 | { |
| 204 | mModuleSaveData.LoadString("target", moduleInfo); |
| 205 | mModuleSaveData.LoadFloat("duration_ms", moduleInfo, 2000, 0, 999999, K(isTextField)); |
| 206 | mModuleSaveData.LoadInt("width", moduleInfo, 400, 50, 999999, K(isTextField)); |
| 207 | mModuleSaveData.LoadInt("height", moduleInfo, 200, 50, 999999, K(isTextField)); |
| 208 | |
| 209 | SetUpFromSaveData(); |
| 210 | } |
| 211 | |
| 212 | void NoteStreamDisplay::SaveLayout(ofxJSONElement& moduleInfo) |
| 213 | { |
nothing calls this directly
no test coverage detected