| 882 | } |
| 883 | |
| 884 | void MainWindow::setCurrentFile(QString file) |
| 885 | { |
| 886 | _currentProcessFileName = file; |
| 887 | IPLFileIO::setBasedir(QFileInfo(_currentProcessFileName).absolutePath().toStdString()); |
| 888 | |
| 889 | //setWindowFilePath(_currentProcessFileName); |
| 890 | QString windowTitle("ImagePlay"); |
| 891 | if(_currentProcessFileName.length() > 0) |
| 892 | windowTitle.append(" - ").append(_currentProcessFileName); |
| 893 | setWindowTitle(windowTitle); |
| 894 | } |
| 895 | |
| 896 | bool MainWindow::readProcessFile(QString file) |
| 897 | { |
nothing calls this directly
no test coverage detected