2016-10-05 06:36:12 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2016 Statoil ASA
|
2019-06-26 05:09:02 -05:00
|
|
|
//
|
2016-10-05 06:36:12 -05:00
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2019-06-26 05:09:02 -05:00
|
|
|
//
|
2016-10-05 06:36:12 -05:00
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
2019-06-26 05:09:02 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2016-10-05 06:36:12 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RicExitApplicationFeature.h"
|
|
|
|
|
2019-05-06 03:36:05 -05:00
|
|
|
#include "RiaGuiApplication.h"
|
2019-03-14 09:24:11 -05:00
|
|
|
#include "RiuMainWindow.h"
|
2019-06-26 05:09:02 -05:00
|
|
|
#include "RiuPlotMainWindow.h"
|
2016-10-05 06:36:12 -05:00
|
|
|
|
|
|
|
#include <QAction>
|
2019-03-14 09:24:11 -05:00
|
|
|
#include <QDebug>
|
2016-10-05 06:36:12 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
CAF_CMD_SOURCE_INIT( RicExitApplicationFeature, "RicExitApplicationFeature" );
|
2016-10-05 06:36:12 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-06-26 05:09:02 -05:00
|
|
|
///
|
2016-10-05 06:36:12 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RicExitApplicationFeature::isCommandEnabled()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-06-26 05:09:02 -05:00
|
|
|
///
|
2016-10-05 06:36:12 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicExitApplicationFeature::onActionTriggered( bool isChecked )
|
2016-10-05 06:36:12 -05:00
|
|
|
{
|
2017-04-20 03:38:58 -05:00
|
|
|
this->disableModelChangeContribution();
|
|
|
|
|
2019-05-06 03:36:05 -05:00
|
|
|
RiaGuiApplication* app = RiaGuiApplication::instance();
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( !app->askUserToSaveModifiedProject() ) return;
|
2017-04-20 03:38:58 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( app->mainPlotWindow() )
|
2019-06-26 05:09:02 -05:00
|
|
|
{
|
|
|
|
app->mainPlotWindow()->saveWinGeoAndDockToolBarLayout();
|
|
|
|
}
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( app->mainWindow() )
|
2019-06-26 05:09:02 -05:00
|
|
|
{
|
|
|
|
app->mainWindow()->saveWinGeoAndDockToolBarLayout();
|
|
|
|
}
|
|
|
|
|
2019-03-14 09:24:11 -05:00
|
|
|
// Hide all windows first to make sure they get closed properly
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( QWidget* topLevelWidget : app->topLevelWidgets() )
|
2019-03-14 09:24:11 -05:00
|
|
|
{
|
|
|
|
topLevelWidget->hide();
|
|
|
|
}
|
|
|
|
// Close just the main window, it'll take care of closing the plot window
|
|
|
|
app->mainWindow()->close();
|
2016-10-05 06:36:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-06-26 05:09:02 -05:00
|
|
|
///
|
2016-10-05 06:36:12 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RicExitApplicationFeature::setupActionLook( QAction* actionToSetup )
|
2016-10-05 06:36:12 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
actionToSetup->setText( "E&xit" );
|
2019-10-25 05:48:17 -05:00
|
|
|
|
|
|
|
applyShortcutWithHintToAction( actionToSetup, QKeySequence::Quit );
|
2016-10-05 06:36:12 -05:00
|
|
|
}
|