///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RimEclipseCellColors.h" #include "RimEclipseView.h" #include "RimTernaryLegendConfig.h" #include "RiuMainWindow.h" #include "RimEclipseFaultColors.h" CAF_PDM_SOURCE_INIT(RimEclipseCellColors, "ResultSlot"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimEclipseCellColors::RimEclipseCellColors() { CAF_PDM_InitObject("Cell Result", ":/CellResult.png", "", ""); CAF_PDM_InitFieldNoDefault(&obsoleteField_legendConfig, "LegendDefinition", "Legend Definition", "", "", ""); this->obsoleteField_legendConfig.uiCapability()->setUiHidden(true); this->obsoleteField_legendConfig.uiCapability()->setUiChildrenHidden(true); this->obsoleteField_legendConfig.xmlCapability()->setIOWritable(false); CAF_PDM_InitFieldNoDefault(&m_legendConfigData, "ResultVarLegendDefinitionList", "", "", "", ""); m_legendConfigData.uiCapability()->setUiHidden(true); m_legendConfigData.uiCapability()->setUiChildrenHidden(true); CAF_PDM_InitFieldNoDefault(&ternaryLegendConfig, "TernaryLegendDefinition", "Ternary Legend Definition", "", "", ""); this->ternaryLegendConfig = new RimTernaryLegendConfig(); this->ternaryLegendConfig.uiCapability()->setUiHidden(true); this->ternaryLegendConfig.uiCapability()->setUiChildrenHidden(true); CAF_PDM_InitFieldNoDefault(&m_legendConfigPtrField, "LegendDefinitionPtrField", "Legend Definition PtrField", "", "", ""); this->m_legendConfigPtrField.uiCapability()->setUiHidden(true); this->m_legendConfigPtrField.uiCapability()->setUiChildrenHidden(true); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimEclipseCellColors::~RimEclipseCellColors() { CVF_ASSERT(obsoleteField_legendConfig() == NULL); m_legendConfigData.deleteAllChildObjects(); delete ternaryLegendConfig(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimEclipseCellColors::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) { RimEclipseResultDefinition::fieldChangedByUi(changedField, oldValue, newValue); // Update of legend config must happen after RimEclipseResultDefinition::fieldChangedByUi(), as this function modifies this->resultVariable() if (changedField == &m_resultVariableUiField) { if (oldValue != newValue) { changeLegendConfig(this->resultVariable()); } if (newValue != RimDefines::undefinedResultName()) { if (m_reservoirView) m_reservoirView->hasUserRequestedAnimation = true; } RimEclipseFaultColors* faultColors = dynamic_cast(this->parentField()->ownerObject()); if (faultColors) { faultColors->updateConnectedEditors(); } } if (m_reservoirView) m_reservoirView->createDisplayModelAndRedraw(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimEclipseCellColors::changeLegendConfig(QString resultVarNameOfNewLegend) { if (resultVarNameOfNewLegend == RimDefines::ternarySaturationResultName()) { this->ternaryLegendConfig.uiCapability()->setUiChildrenHidden(false); this->m_legendConfigPtrField.uiCapability()->setUiChildrenHidden(true); } else { this->ternaryLegendConfig.uiCapability()->setUiChildrenHidden(true); bool found = false; QString legendResultVariable; if (this->m_legendConfigPtrField()) { legendResultVariable = this->m_legendConfigPtrField()->resultVariableName(); } if (!this->m_legendConfigPtrField() || legendResultVariable != resultVarNameOfNewLegend) { for (size_t i = 0; i < m_legendConfigData.size(); i++) { if (m_legendConfigData[i]->resultVariableName() == resultVarNameOfNewLegend) { this->m_legendConfigPtrField = m_legendConfigData[i]; found = true; break; } } // Not found ? if (!found) { RimLegendConfig* newLegend = new RimLegendConfig; newLegend->setReservoirView(m_reservoirView); newLegend->resultVariableName = resultVarNameOfNewLegend; m_legendConfigData.push_back(newLegend); this->m_legendConfigPtrField = newLegend; } } this->m_legendConfigPtrField.uiCapability()->setUiChildrenHidden(false); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimEclipseCellColors::initAfterRead() { RimEclipseResultDefinition::initAfterRead(); if (this->m_legendConfigPtrField() && this->m_legendConfigPtrField()->resultVariableName == "") { this->m_legendConfigPtrField()->resultVariableName = this->resultVariable(); } if (obsoleteField_legendConfig) { // The current legend config is NOT stored in in ResInsight up to v 1.3.7-dev RimLegendConfig* obsoleteLegend = obsoleteField_legendConfig(); // set to NULL before pushing into container obsoleteField_legendConfig = NULL; m_legendConfigData.push_back(obsoleteLegend); m_legendConfigPtrField = obsoleteLegend; } changeLegendConfig(this->resultVariable()); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimEclipseCellColors::setReservoirView(RimEclipseView* ownerReservoirView) { RimEclipseResultDefinition::setReservoirView(ownerReservoirView); m_reservoirView = ownerReservoirView; for (size_t i = 0; i < m_legendConfigData.size(); i++) { m_legendConfigData[i]->setReservoirView(ownerReservoirView); } this->ternaryLegendConfig()->setReservoirView(ownerReservoirView); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimEclipseCellColors::setResultVariable(const QString& val) { RimEclipseResultDefinition::setResultVariable(val); this->changeLegendConfig(val); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimLegendConfig* RimEclipseCellColors::legendConfig() { return m_legendConfigPtrField; }