@@ -362,14 +362,22 @@ bool MainWindow::on_actionQuit_triggered()
362
362
if (!editor->confirmClosing ()) return false ;
363
363
364
364
// Close the project, remembering IDE state for restoring at the next session
365
- if (!on_actionCloseProject_triggered ()) return false ;
365
+ auto && settings = qobject_cast<Application*>(qApp)->getSettings ()->getQSettings ();
366
+ if (auto currProject = CEGUIManager::Instance ().getCurrentProject ())
367
+ {
368
+ settings->setValue (" lastProject" , currProject->filePath );
369
+ if (!on_actionCloseProject_triggered ()) return false ;
370
+ }
371
+ else
372
+ {
373
+ settings->remove (" lastProject" );
374
+ }
366
375
367
376
// Close all remaining project-independent tabs
368
377
on_actionCloseAllTabs_triggered ();
369
378
if (ui->tabs ->count () > 0 ) return false ;
370
379
371
380
// Save geometry and state of this window to QSettings
372
- auto && settings = qobject_cast<Application*>(qApp)->getSettings ()->getQSettings ();
373
381
settings->setValue (" window-geometry" , saveGeometry ());
374
382
settings->setValue (" window-state" , saveState ());
375
383
@@ -818,7 +826,7 @@ void MainWindow::openEditorTab(const QString& absolutePath)
818
826
{
819
827
if (activateEditorTabByFilePath (absolutePath)) return ;
820
828
821
- openNewEditor (createEditorForFile (absolutePath));
829
+ initEditor (createEditorForFile (absolutePath));
822
830
}
823
831
824
832
// Closes given editor tab.
@@ -994,14 +1002,6 @@ void MainWindow::on_actionOpenFile_triggered()
994
1002
openEditorTab (fileName);
995
1003
}
996
1004
997
- void MainWindow::openMostRecentProject ()
998
- {
999
- QStringList items;
1000
- recentlyUsedProjects->getRecentlyUsed (items);
1001
- if (!items.empty () && QFileInfo (items[0 ]).exists () && confirmProjectClosing (false ))
1002
- loadProject (items[0 ]);
1003
- }
1004
-
1005
1005
void MainWindow::openRecentProject (const QString& path)
1006
1006
{
1007
1007
if (QFileInfo (path).exists ())
@@ -1320,7 +1320,7 @@ void MainWindow::on_actionNewLayout_triggered()
1320
1320
{
1321
1321
if (auto typedFactory = dynamic_cast <LayoutEditorFactory*>(factory.get ()))
1322
1322
{
1323
- openNewEditor (typedFactory-> create ( QString ()) );
1323
+ openNewEditor (typedFactory);
1324
1324
return ;
1325
1325
}
1326
1326
}
@@ -1332,7 +1332,7 @@ void MainWindow::on_actionNewImageset_triggered()
1332
1332
{
1333
1333
if (auto typedFactory = dynamic_cast <ImagesetEditorFactory*>(factory.get ()))
1334
1334
{
1335
- openNewEditor (typedFactory-> create ( QString ()) );
1335
+ openNewEditor (typedFactory);
1336
1336
return ;
1337
1337
}
1338
1338
}
@@ -1344,7 +1344,7 @@ void MainWindow::on_actionNewOtherFile_triggered()
1344
1344
{
1345
1345
if (auto typedFactory = dynamic_cast <TextEditorFactory*>(factory.get ()))
1346
1346
{
1347
- openNewEditor (typedFactory-> create ( QString ()) );
1347
+ openNewEditor (typedFactory);
1348
1348
return ;
1349
1349
}
1350
1350
}
@@ -1358,7 +1358,20 @@ void MainWindow::on_actionCheckForUpdates_triggered()
1358
1358
app->checkForUpdates ();
1359
1359
}
1360
1360
1361
- void MainWindow::openNewEditor (EditorBasePtr editor)
1361
+ void MainWindow::openNewEditor (EditorFactoryBase* factory)
1362
+ {
1363
+ if (!factory) return ;
1364
+
1365
+ if (factory->requiresProject () && !CEGUIManager::Instance ().isProjectLoaded ())
1366
+ {
1367
+ QMessageBox::warning (this , _title, tr (" Creating this file requires you to have a project opened!" ));
1368
+ return ;
1369
+ }
1370
+
1371
+ initEditor (factory->create (QString ()));
1372
+ }
1373
+
1374
+ void MainWindow::initEditor (EditorBasePtr editor)
1362
1375
{
1363
1376
if (!editor) return ;
1364
1377
@@ -1367,7 +1380,7 @@ void MainWindow::openNewEditor(EditorBasePtr editor)
1367
1380
// Will cleanup itself inside if something went wrong
1368
1381
editor->initialize ();
1369
1382
1370
- // Intentionally before ui->tabs->... to make getEditorForTab() in on_tabs_currentChanged() work
1383
+ // NB: intentionally before ui->tabs->... to make getEditorForTab() in on_tabs_currentChanged() work
1371
1384
auto editorPtr = editor.get ();
1372
1385
activeEditors.push_back (std::move (editor));
1373
1386
0 commit comments