mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Update icon state for well collection when toggled off
p4#: 21430
This commit is contained in:
parent
47eb6c7589
commit
a5b3c233d2
@ -91,7 +91,7 @@ void RivReservoirPipesPartMgr::setScaleTransform(cvf::Transform * scaleTransform
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RivReservoirPipesPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex)
|
void RivReservoirPipesPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex)
|
||||||
{
|
{
|
||||||
if (!m_reservoirView->wellCollection()->showWells() ) return;
|
if (!m_reservoirView->wellCollection()->active() ) return;
|
||||||
|
|
||||||
if (m_reservoirView->wellCollection()->wellPipeVisibility() == RimWellCollection::PIPES_FORCE_ALL_OFF) return;
|
if (m_reservoirView->wellCollection()->wellPipeVisibility() == RimWellCollection::PIPES_FORCE_ALL_OFF) return;
|
||||||
|
|
||||||
|
@ -73,8 +73,8 @@ RimWellCollection::RimWellCollection()
|
|||||||
{
|
{
|
||||||
CAF_PDM_InitObject("Wells", ":/WellCollection.png", "", "");
|
CAF_PDM_InitObject("Wells", ":/WellCollection.png", "", "");
|
||||||
|
|
||||||
CAF_PDM_InitField(&showWells, "ShowWells", true, "Show well", "", "", "");
|
CAF_PDM_InitField(&active, "Active", true, "Active", "", "", "");
|
||||||
showWells.setUiHidden(true);
|
active.setUiHidden(true);
|
||||||
|
|
||||||
CAF_PDM_InitField(&showWellHead, "ShowWellHead", true, "Show well heads", "", "", "");
|
CAF_PDM_InitField(&showWellHead, "ShowWellHead", true, "Show well heads", "", "", "");
|
||||||
CAF_PDM_InitField(&showWellLabel, "ShowWellLabel", true, "Show well labels", "", "", "");
|
CAF_PDM_InitField(&showWellLabel, "ShowWellLabel", true, "Show well labels", "", "", "");
|
||||||
@ -161,7 +161,7 @@ bool RimWellCollection::hasVisibleWellCells()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
bool RimWellCollection::hasVisibleWellPipes()
|
bool RimWellCollection::hasVisibleWellPipes()
|
||||||
{
|
{
|
||||||
if (!this->showWells()) return false;
|
if (!this->active()) return false;
|
||||||
if (this->wellPipeVisibility() == PIPES_FORCE_ALL_OFF) return false;
|
if (this->wellPipeVisibility() == PIPES_FORCE_ALL_OFF) return false;
|
||||||
if (this->wells().size() == 0 ) return false;
|
if (this->wells().size() == 0 ) return false;
|
||||||
if (this->wellPipeVisibility() == PIPES_FORCE_ALL_ON) return true;
|
if (this->wellPipeVisibility() == PIPES_FORCE_ALL_ON) return true;
|
||||||
@ -175,8 +175,10 @@ bool RimWellCollection::hasVisibleWellPipes()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RimWellCollection::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
void RimWellCollection::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
||||||
{
|
{
|
||||||
if (&showWellLabel == changedField || &showWells == changedField)
|
if (&showWellLabel == changedField || &active == changedField)
|
||||||
{
|
{
|
||||||
|
updateIconState();
|
||||||
|
|
||||||
if (m_reservoirView)
|
if (m_reservoirView)
|
||||||
{
|
{
|
||||||
m_reservoirView->createDisplayModelAndRedraw();
|
m_reservoirView->createDisplayModelAndRedraw();
|
||||||
@ -271,5 +273,30 @@ void RimWellCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOrderin
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
caf::PdmFieldHandle* RimWellCollection::objectToggleField()
|
caf::PdmFieldHandle* RimWellCollection::objectToggleField()
|
||||||
{
|
{
|
||||||
return &showWells;
|
return &active;
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RimWellCollection::updateIconState()
|
||||||
|
{
|
||||||
|
// Reset dynamic icon
|
||||||
|
this->setUiIcon(QIcon());
|
||||||
|
// Get static one
|
||||||
|
QIcon icon = this->uiIcon();
|
||||||
|
|
||||||
|
// Get a pixmap, and modify it
|
||||||
|
|
||||||
|
QPixmap icPixmap;
|
||||||
|
icPixmap = icon.pixmap(16, 16, QIcon::Normal);
|
||||||
|
|
||||||
|
if (!active)
|
||||||
|
{
|
||||||
|
QIcon temp(icPixmap);
|
||||||
|
icPixmap = temp.pixmap(16, 16, QIcon::Disabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
QIcon newIcon(icPixmap);
|
||||||
|
this->setUiIcon(newIcon);
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ public:
|
|||||||
typedef caf::AppEnum<RimWellCollection::WellFenceType> WellFenceEnum;
|
typedef caf::AppEnum<RimWellCollection::WellFenceType> WellFenceEnum;
|
||||||
|
|
||||||
caf::PdmField<bool> showWellLabel;
|
caf::PdmField<bool> showWellLabel;
|
||||||
caf::PdmField<bool> showWells;
|
caf::PdmField<bool> active;
|
||||||
|
|
||||||
caf::PdmField<WellCellsRangeFilterEnum> wellCellsToRangeFilterMode;
|
caf::PdmField<WellCellsRangeFilterEnum> wellCellsToRangeFilterMode;
|
||||||
caf::PdmField<bool> showWellCellFences;
|
caf::PdmField<bool> showWellCellFences;
|
||||||
@ -90,6 +90,8 @@ public:
|
|||||||
bool hasVisibleWellCells();
|
bool hasVisibleWellCells();
|
||||||
bool hasVisibleWellPipes();
|
bool hasVisibleWellPipes();
|
||||||
|
|
||||||
|
void updateIconState();
|
||||||
|
|
||||||
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue);
|
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue);
|
||||||
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering);
|
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering);
|
||||||
virtual caf::PdmFieldHandle* objectToggleField();
|
virtual caf::PdmFieldHandle* objectToggleField();
|
||||||
|
Loading…
Reference in New Issue
Block a user