ResInsight/ApplicationLibCode/Commands/ApplicationCommands/RicShowPlotWindowFeature.cpp

47 lines
1.8 KiB
C++
Raw Normal View History

2016-06-27 08:27:18 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016 Statoil ASA
//
2016-06-27 08:27:18 -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.
//
2016-06-27 08:27:18 -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.
//
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
2016-06-27 08:27:18 -05:00
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RicShowPlotWindowFeature.h"
#include "RiaGuiApplication.h"
2016-06-27 08:27:18 -05:00
#include <QAction>
CAF_CMD_SOURCE_INIT( RicShowPlotWindowFeature, "RicShowPlotWindowFeature" );
2016-06-27 08:27:18 -05:00
//--------------------------------------------------------------------------------------------------
///
2016-06-27 08:27:18 -05:00
//--------------------------------------------------------------------------------------------------
void RicShowPlotWindowFeature::onActionTriggered( bool isChecked )
2016-06-27 08:27:18 -05:00
{
this->disableModelChangeContribution();
RiaGuiApplication::instance()->getOrCreateAndShowMainPlotWindow();
2016-06-27 08:27:18 -05:00
}
//--------------------------------------------------------------------------------------------------
///
2016-06-27 08:27:18 -05:00
//--------------------------------------------------------------------------------------------------
void RicShowPlotWindowFeature::setupActionLook( QAction* actionToSetup )
2016-06-27 08:27:18 -05:00
{
actionToSetup->setText( "Open Plot Window" );
actionToSetup->setToolTip( "Open Plot Window (Ctrl+Shift+P)" );
2020-10-01 10:25:19 -05:00
actionToSetup->setIcon( QIcon( ":/PlotWindow.svg" ) );
applyShortcutWithHintToAction( actionToSetup, QKeySequence( tr( "Ctrl+Shift+P" ) ) );
2016-06-27 08:27:18 -05:00
}