| 158 | } |
| 159 | |
| 160 | void SpectralDisplay::LoadLayout(const ofxJSONElement& moduleInfo) |
| 161 | { |
| 162 | mModuleSaveData.LoadString("target", moduleInfo); |
| 163 | mModuleSaveData.LoadInt("width", moduleInfo, 600, 50, 2000, K(isTextField)); |
| 164 | mModuleSaveData.LoadInt("height", moduleInfo, 100, 50, 2000, K(isTextField)); |
| 165 | |
| 166 | SetUpFromSaveData(); |
| 167 | } |
| 168 | |
| 169 | void SpectralDisplay::SaveLayout(ofxJSONElement& moduleInfo) |
| 170 | { |
nothing calls this directly
no test coverage detected