| 861 | } |
| 862 | |
| 863 | void Controller::openFileDialog() |
| 864 | { |
| 865 | QString dir = QStandardPaths::writableLocation(QStandardPaths::HomeLocation); |
| 866 | QString filePath = DFileDialog::getOpenFileName(nullptr, tr("Open Document"), dir); |
| 867 | if (filePath.isEmpty() && !QFileInfo(filePath).exists()) |
| 868 | return; |
| 869 | recent.saveOpenedFile(filePath); |
| 870 | editor.openFile(QString(), filePath); |
| 871 | } |
| 872 | |
| 873 | void Controller::loading() |
| 874 | { |