2015-08-11 08:33:06 -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 "RicGeoMechPropertyFilterNewFeature.h"
|
2015-08-11 08:33:06 -05:00
|
|
|
|
|
|
|
#include "RicGeoMechPropertyFilterNewExec.h"
|
2015-08-17 08:00:45 -05:00
|
|
|
#include "RicGeoMechPropertyFilterFeatureImpl.h"
|
2015-08-11 08:33:06 -05:00
|
|
|
|
|
|
|
#include "RimGeoMechPropertyFilter.h"
|
|
|
|
#include "RimGeoMechPropertyFilterCollection.h"
|
|
|
|
|
|
|
|
#include "cafCmdExecCommandManager.h"
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
2015-08-17 08:09:01 -05:00
|
|
|
CAF_CMD_SOURCE_INIT(RicGeoMechPropertyFilterNewFeature, "RicGeoMechPropertyFilterNewFeature");
|
2015-08-11 08:33:06 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
bool RicGeoMechPropertyFilterNewFeature::isCommandEnabled()
|
2015-08-11 08:33:06 -05:00
|
|
|
{
|
2015-08-17 08:00:45 -05:00
|
|
|
std::vector<RimGeoMechPropertyFilterCollection*> filterCollections = RicGeoMechPropertyFilterFeatureImpl::selectedPropertyFilterCollections();
|
2015-10-30 09:41:43 -05:00
|
|
|
if (filterCollections.size() == 1)
|
|
|
|
{
|
|
|
|
return RicGeoMechPropertyFilterFeatureImpl::isPropertyFilterCommandAvailable(filterCollections[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2015-08-11 08:33:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
void RicGeoMechPropertyFilterNewFeature::onActionTriggered(bool isChecked)
|
2015-08-11 08:33:06 -05:00
|
|
|
{
|
2015-08-17 08:00:45 -05:00
|
|
|
std::vector<RimGeoMechPropertyFilterCollection*> filterCollections = RicGeoMechPropertyFilterFeatureImpl::selectedPropertyFilterCollections();
|
2015-08-11 08:33:06 -05:00
|
|
|
if (filterCollections.size() == 1)
|
|
|
|
{
|
|
|
|
RicGeoMechPropertyFilterNewExec* filterExec = new RicGeoMechPropertyFilterNewExec(filterCollections[0]);
|
|
|
|
caf::CmdExecCommandManager::instance()->processExecuteCommand(filterExec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-08-17 06:32:50 -05:00
|
|
|
void RicGeoMechPropertyFilterNewFeature::setupActionLook(QAction* actionToSetup)
|
2015-08-11 08:33:06 -05:00
|
|
|
{
|
|
|
|
actionToSetup->setIcon(QIcon(":/CellFilter_Values.png"));
|
|
|
|
actionToSetup->setText("New Property Filter");
|
|
|
|
}
|