/////////////////////////////// Slots /////////////////////////////////////
| 302 | |
| 303 | //////////////////////////////////// Slots ///////////////////////////////////// |
| 304 | void |
| 305 | RMSViewTab::onSave(void) |
| 306 | { |
| 307 | QString fileName = |
| 308 | QFileDialog::getSaveFileName( |
| 309 | this, |
| 310 | "Save data to MATLAB file", |
| 311 | "power.m", |
| 312 | "MATLAB scripts (*.m)"); |
| 313 | |
| 314 | if (fileName.size() > 0) |
| 315 | this->saveToMatlab(fileName); |
| 316 | } |
| 317 | |
| 318 | void |
| 319 | RMSViewTab::onStop(void) |
nothing calls this directly
no test coverage detected