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