mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-27 08:47:00 -06:00
bb2eda3e73
Also refactored slotCreateCommandObject
140 lines
3.7 KiB
C++
140 lines
3.7 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 <QTreeView>
|
|
|
|
class QItemSelection;
|
|
class RimIdenticalGridCaseGroup;
|
|
class RimScriptCollection;
|
|
|
|
namespace caf {
|
|
class PdmObjectGroup;
|
|
}
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimUiTreeView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RimUiTreeView(QWidget *parent = 0);
|
|
~RimUiTreeView();
|
|
|
|
virtual void setModel(QAbstractItemModel* model);
|
|
|
|
void selectedUiItems(std::vector<caf::PdmUiItem*>& objects);
|
|
|
|
|
|
protected:
|
|
void contextMenuEvent(QContextMenuEvent* event);
|
|
|
|
private slots:
|
|
void slotAddChildItem();
|
|
void slotDeleteItem();
|
|
|
|
void slotAddRangeFilter();
|
|
void slotAddSliceFilterI();
|
|
void slotAddSliceFilterJ();
|
|
void slotAddSliceFilterK();
|
|
void slotDeleteRangeFilter();
|
|
|
|
void slotAddPropertyFilter();
|
|
void slotDeletePropertyFilter();
|
|
void slotAddGeoMechPropertyFilter();
|
|
void slotDeleteGeoMechPropertyFilter();
|
|
|
|
void slotEditScript();
|
|
void slotNewScript();
|
|
void slotExecuteScript();
|
|
void slotExecuteScriptForSelectedCases();
|
|
|
|
void slotAddView();
|
|
void slotDeleteView();
|
|
|
|
void slotAddInputProperty();
|
|
void slotDeleteObjectFromContainer();
|
|
void slotWriteInputProperty();
|
|
void slotWriteBinaryResultAsInputProperty();
|
|
|
|
void slotCloseCase();
|
|
void slotCloseGeomechCase();
|
|
|
|
void slotNewStatisticsCase();
|
|
void slotComputeStatistics();
|
|
|
|
void slotAddCaseGroup();
|
|
void slotDeleteObjectFromPdmChildArrayField();
|
|
|
|
void slotAddScriptPath();
|
|
void slotDeleteScriptPath();
|
|
|
|
void slotCopyPdmObjectToClipboard();
|
|
void slotPastePdmObjects();
|
|
|
|
void slotSelectionChanged(const QItemSelection & selected, const QItemSelection & deselected);
|
|
|
|
void slotToggleItems();
|
|
void slotToggleItemsOn();
|
|
void slotToggleItemsOff();
|
|
|
|
void slotDeleteAllWellPaths();
|
|
|
|
signals:
|
|
void selectedObjectChanged( caf::PdmObjectHandle* pdmObject );
|
|
|
|
public:
|
|
enum SelectionToggleType
|
|
{
|
|
TOGGLE_ON,
|
|
TOGGLE_OFF,
|
|
TOGGLE,
|
|
TOGGLE_UNDEFINED
|
|
};
|
|
|
|
|
|
private:
|
|
bool userConfirmedGridCaseGroupChange(const QModelIndexList& itemIndexList);
|
|
bool hasAnyStatisticsResults(RimIdenticalGridCaseGroup* gridCaseGroup);
|
|
|
|
void createPdmObjectsFromClipboard(caf::PdmObjectGroup* objectGroup);
|
|
bool hasClipboardValidData();
|
|
|
|
virtual void keyPressEvent(QKeyEvent* keyEvent);
|
|
virtual void mousePressEvent(QMouseEvent* mouseEvent);
|
|
|
|
virtual void dropEvent(QDropEvent* dropEvent);
|
|
|
|
void executeSelectionToggleOperation(SelectionToggleType toggleState);
|
|
void appendToggleItemActions(QMenu& contextMenu);
|
|
|
|
void setExpandedUpToRoot(const QModelIndex& itemIndex);
|
|
|
|
void appendScriptItems(QMenu* menu, RimScriptCollection* scriptCollection);
|
|
private:
|
|
QAction* m_pasteAction;
|
|
};
|
|
|
|
|