mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
126 lines
4.5 KiB
C++
126 lines
4.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RicRangeFilterNewExec.h"
|
|
|
|
#include "RimCellRangeFilter.h"
|
|
#include "RimCellRangeFilterCollection.h"
|
|
#include "RimView.h"
|
|
#include "RiuMainWindow.h"
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicRangeFilterNewExec::RicRangeFilterNewExec(RimCellRangeFilterCollection* rangeFilterCollection)
|
|
: CmdExecuteCommand(NULL)
|
|
{
|
|
m_iSlice = false;
|
|
m_jSlice = false;
|
|
m_kSlice = false;
|
|
|
|
m_iSliceStart = -1;
|
|
m_jSliceStart = -1;
|
|
m_kSliceStart = -1;
|
|
|
|
cellRangeFilterCollection = rangeFilterCollection;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicRangeFilterNewExec::~RicRangeFilterNewExec()
|
|
{
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QString RicRangeFilterNewExec::name()
|
|
{
|
|
if (m_iSlice)
|
|
return "Create I Slice Filter";
|
|
else if (m_jSlice)
|
|
return "Create J Slice Filter";
|
|
else if (m_kSlice)
|
|
return "Create K Slice Filter";
|
|
|
|
return "Create Range Filter";
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicRangeFilterNewExec::redo()
|
|
{
|
|
assert(cellRangeFilterCollection);
|
|
|
|
RimCellRangeFilter* rangeFilter = new RimCellRangeFilter();
|
|
cellRangeFilterCollection->rangeFilters.push_back(rangeFilter);
|
|
rangeFilter->setDefaultValues();
|
|
|
|
rangeFilter->name = QString("Range Filter (%1)").arg(cellRangeFilterCollection->rangeFilters().size());
|
|
|
|
if (m_iSlice)
|
|
{
|
|
rangeFilter->cellCountI = 1;
|
|
rangeFilter->name = QString("Slice I (%1)").arg(cellRangeFilterCollection->rangeFilters().size());
|
|
}
|
|
|
|
if (m_jSlice)
|
|
{
|
|
rangeFilter->cellCountJ = 1;
|
|
rangeFilter->name = QString("Slice J (%1)").arg(cellRangeFilterCollection->rangeFilters().size());
|
|
}
|
|
|
|
if (m_kSlice)
|
|
{
|
|
rangeFilter->cellCountK = 1;
|
|
rangeFilter->name = QString("Slice K (%1)").arg(cellRangeFilterCollection->rangeFilters().size());
|
|
}
|
|
|
|
if (m_iSliceStart > -1) rangeFilter->startIndexI = m_iSliceStart;
|
|
if (m_jSliceStart > -1) rangeFilter->startIndexJ = m_jSliceStart;
|
|
if (m_kSliceStart > -1) rangeFilter->startIndexK = m_kSliceStart;
|
|
|
|
cellRangeFilterCollection->reservoirView()->scheduleGeometryRegen(RANGE_FILTERED);
|
|
cellRangeFilterCollection->reservoirView()->scheduleGeometryRegen(RANGE_FILTERED_INACTIVE);
|
|
cellRangeFilterCollection->reservoirView()->scheduleCreateDisplayModelAndRedraw();
|
|
|
|
cellRangeFilterCollection->updateConnectedEditors();
|
|
|
|
RiuMainWindow::instance()->setCurrentObjectInTreeView(rangeFilter);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicRangeFilterNewExec::undo()
|
|
{
|
|
assert(cellRangeFilterCollection);
|
|
|
|
cellRangeFilterCollection->rangeFilters.erase(cellRangeFilterCollection->rangeFilters.size() - 1);
|
|
|
|
cellRangeFilterCollection->reservoirView()->scheduleGeometryRegen(RANGE_FILTERED);
|
|
cellRangeFilterCollection->reservoirView()->scheduleGeometryRegen(RANGE_FILTERED_INACTIVE);
|
|
|
|
cellRangeFilterCollection->updateConnectedEditors();
|
|
}
|