mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
c3adfb7cb0
p4#: 22387
97 lines
4.2 KiB
C++
97 lines
4.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
#include "cafPdmDocument.h"
|
|
#include "cafUiTreeModelPdm.h"
|
|
|
|
class QFileSystemWatcher;
|
|
|
|
class RimCellPropertyFilter;
|
|
class RimCellRangeFilter;
|
|
class RimCase;
|
|
class RimReservoirView;
|
|
class RimInputProperty;
|
|
class RimStatisticsCase;
|
|
class RimIdenticalGridCaseGroup;
|
|
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimUiTreeModelPdm : public caf::UiTreeModelPdm
|
|
{
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
RimUiTreeModelPdm(QObject* parent);
|
|
|
|
|
|
// TO BE DELETED, NOT USED
|
|
virtual bool insertRows_special(int position, int rows, const QModelIndex &parent = QModelIndex());
|
|
|
|
// Special edit methods
|
|
bool deleteRangeFilter(const QModelIndex& itemIndex);
|
|
bool deletePropertyFilter(const QModelIndex& itemIndex);
|
|
bool deleteReservoirView(const QModelIndex& itemIndex);
|
|
void deleteInputProperty(const QModelIndex& itemIndex);
|
|
void deleteReservoir(RimCase* reservoir);
|
|
void deleteAllWellPaths(const QModelIndex& itemIndex);
|
|
|
|
RimCellPropertyFilter* addPropertyFilter(const QModelIndex& itemIndex, QModelIndex& insertedModelIndex);
|
|
RimCellRangeFilter* addRangeFilter(const QModelIndex& itemIndex, QModelIndex& insertedModelIndex);
|
|
RimReservoirView* addReservoirView(const QModelIndex& itemIndex, QModelIndex& insertedModelIndex);
|
|
void addInputProperty(const QModelIndex& itemIndex, const QStringList& fileNames);
|
|
|
|
void addToParentAndBuildUiItems(caf::PdmUiTreeItem* parentTreeItem, int position, caf::PdmObject* pdmObject);
|
|
|
|
void populateObjectGroupFromModelIndexList(const QModelIndexList& modelIndexList, caf::PdmObjectGroup* objectGroup);
|
|
void addObjects(const QModelIndex& itemIndex, caf::PdmObjectGroup& pdmObjects);
|
|
void moveObjects(const QModelIndex& itemIndex, caf::PdmObjectGroup& pdmObjects);
|
|
|
|
RimStatisticsCase* addStatisticalCalculation(const QModelIndex& itemIndex, QModelIndex& insertedModelIndex);
|
|
RimIdenticalGridCaseGroup* addCaseGroup(QModelIndex& insertedModelIndex);
|
|
|
|
bool deleteObjectFromPdmPointersField(const QModelIndex& itemIndex);
|
|
|
|
void updateScriptPaths();
|
|
|
|
virtual Qt::DropActions supportedDropActions() const;
|
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
|
|
virtual QMimeData* mimeData(const QModelIndexList &indexes) const;
|
|
virtual QStringList mimeTypes() const;
|
|
|
|
RimIdenticalGridCaseGroup* gridCaseGroupFromItemIndex(const QModelIndex& itemIndex);
|
|
void setObjectToggleStateForSelection(QModelIndexList selectedIndexes, int state);
|
|
|
|
private slots:
|
|
void slotRefreshScriptTree(QString path);
|
|
|
|
private:
|
|
void clearClipboard();
|
|
RimCase* caseFromItemIndex(const QModelIndex& itemIndex);
|
|
private:
|
|
QFileSystemWatcher* m_scriptChangeDetector;
|
|
};
|
|
|