2015-08-07 08:08:17 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-08-17 06:32:50 -05:00
|
|
|
#include "RicEclipseCaseNewGroupFeature.h"
|
2015-08-07 08:08:17 -05:00
|
|
|
|
2015-08-11 09:18:27 -05:00
|
|
|
#include "RicEclipseCaseNewGroupExec.h"
|
|
|
|
|
2015-08-07 08:08:17 -05:00
|
|
|
#include "RimCase.h"
|
2015-08-20 07:20:13 -05:00
|
|
|
#include "RimEclipseCaseCollection.h"
|
2015-08-07 08:08:17 -05:00
|
|
|
|
|
|
|
#include "cafSelectionManager.h"
|
2015-08-11 09:18:27 -05:00
|
|
|
#include "cafCmdExecCommandManager.h"
|
2015-08-07 08:08:17 -05:00
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
2015-08-17 08:09:01 -05:00
|
|
|
CAF_CMD_SOURCE_INIT(RicEclipseCaseNewGroupFeature, "RicEclipseCaseNewGroupFeature");
|
2015-08-07 08:08:17 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
bool RicEclipseCaseNewGroupFeature::isCommandEnabled()
|
2015-08-07 08:08:17 -05:00
|
|
|
{
|
2015-08-20 07:20:13 -05:00
|
|
|
std::vector<RimCase*> caseSelection;
|
|
|
|
caf::SelectionManager::instance()->objectsByType(&caseSelection);
|
2015-08-07 08:08:17 -05:00
|
|
|
|
2015-08-20 07:20:13 -05:00
|
|
|
std::vector<RimEclipseCaseCollection*> caseCollSelection;
|
|
|
|
caf::SelectionManager::instance()->objectsByType(&caseCollSelection);
|
|
|
|
|
|
|
|
return caseSelection.size() > 0 || caseCollSelection.size() > 0;
|
2015-08-07 08:08:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
void RicEclipseCaseNewGroupFeature::onActionTriggered(bool isChecked)
|
2015-08-07 08:08:17 -05:00
|
|
|
{
|
2015-08-11 09:18:27 -05:00
|
|
|
RicEclipseCaseNewGroupExec* cmdExec = new RicEclipseCaseNewGroupExec();
|
|
|
|
caf::CmdExecCommandManager::instance()->processExecuteCommand(cmdExec);
|
2015-08-07 08:08:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
void RicEclipseCaseNewGroupFeature::setupActionLook(QAction* actionToSetup)
|
2015-08-07 08:08:17 -05:00
|
|
|
{
|
|
|
|
actionToSetup->setText("New Grid Case Group");
|
|
|
|
}
|
|
|
|
|
|
|
|
|