mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-27 16:57:01 -06:00
3dac8807c7
updateViewerWidget scheduleUpdateDisplayModelAndRedraw
120 lines
3.7 KiB
C++
120 lines
3.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011- Statoil ASA
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
// Copyright (C) 2011-2012 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 "cafViewer.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
|
|
#include "cafMouseState.h"
|
|
#include "cvfStructGrid.h"
|
|
|
|
class RimView;
|
|
class QLabel;
|
|
class QProgressBar;
|
|
class RiuSimpleHistogramWidget;
|
|
class QCDEStyle;
|
|
|
|
namespace cvf
|
|
{
|
|
class Part;
|
|
class OverlayItem;
|
|
}
|
|
|
|
//==================================================================================================
|
|
//
|
|
// RiuViewer
|
|
//
|
|
//==================================================================================================
|
|
class RiuViewer : public caf::Viewer
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RiuViewer(const QGLFormat& format, QWidget* parent);
|
|
~RiuViewer();
|
|
|
|
void setDefaultView();
|
|
cvf::Vec3d pointOfInterest();
|
|
void setPointOfInterest(cvf::Vec3d poi);
|
|
void setOwnerReservoirView(RimView * owner);
|
|
void setEnableMask(unsigned int mask);
|
|
|
|
void showInfoText(bool enable);
|
|
void setInfoText(QString text);
|
|
void showHistogram(bool enable);
|
|
void setHistogram(double min, double max, const std::vector<size_t>& histogram);
|
|
void setHistogramPercentiles(double pmin, double pmax, double mean);
|
|
|
|
void showAnimationProgress(bool enable);
|
|
|
|
void removeAllColorLegends();
|
|
void addColorLegendToBottomLeftCorner(cvf::OverlayItem* legend);
|
|
|
|
|
|
public slots:
|
|
virtual void slotSetCurrentFrame(int frameIndex);
|
|
virtual void slotEndAnimation();
|
|
|
|
protected:
|
|
void paintOverlayItems(QPainter* painter);
|
|
void keyPressEvent(QKeyEvent* event);
|
|
void mouseReleaseEvent(QMouseEvent* event);
|
|
void mousePressEvent(QMouseEvent* event);
|
|
|
|
void handlePickAction(int winPosX, int winPosY);
|
|
void pickPointAndFace(int winPosX, int winPosY, cvf::Vec3d* localIntersectionPoint, cvf::Part** firstPart, uint* firstPartFaceHit, cvf::Part** nncPart, uint* nncPartFaceHit);
|
|
|
|
private slots:
|
|
void slotRangeFilterI();
|
|
void slotRangeFilterJ();
|
|
void slotRangeFilterK();
|
|
void slotHideFault();
|
|
|
|
private:
|
|
void ijkFromCellIndex(size_t gridIdx, size_t cellIndex, size_t* i, size_t* j, size_t* k);
|
|
|
|
private:
|
|
caf::QtMouseState m_mouseState;
|
|
|
|
QLabel* m_InfoLabel;
|
|
bool m_showInfoText;;
|
|
|
|
QProgressBar* m_animationProgress;
|
|
bool m_showAnimProgress;
|
|
RiuSimpleHistogramWidget* m_histogramWidget;
|
|
bool m_showHistogram;
|
|
|
|
QCDEStyle* m_progressBarStyle;
|
|
|
|
|
|
cvf::Collection<cvf::OverlayItem> m_visibleLegends;
|
|
|
|
caf::PdmPointer<RimView> m_reservoirView;
|
|
|
|
size_t m_currentGridIdx;
|
|
size_t m_currentCellIndex;
|
|
cvf::StructGridInterface::FaceType m_currentFaceIndex;
|
|
|
|
QPoint m_lastMousePressPosition;
|
|
};
|