| 91 | } |
| 92 | |
| 93 | void ASAP_Window::readSettings() |
| 94 | { |
| 95 | _settings->beginGroup("ASAP"); |
| 96 | resize(_settings->value("size", QSize(1037, 786)).toSize()); |
| 97 | if (_settings->value("maximized", false).toBool()) { |
| 98 | this->setWindowState(Qt::WindowMaximized); |
| 99 | } |
| 100 | _settings->endGroup(); |
| 101 | } |
| 102 | |
| 103 | void ASAP_Window::loadPlugins() { |
| 104 | PathologyViewer* viewer = this->findChild<PathologyViewer*>("pathologyView"); |
nothing calls this directly
no outgoing calls
no test coverage detected