///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) Statoil ASA, Ceetron Solutions 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 "RimFault.h" #include "RigFault.h" #include "RimReservoirView.h" #include "RimResultSlot.h" #include "RimCellEdgeResultSlot.h" #include "Rim3dOverlayInfoConfig.h" #include "RimCellPropertyFilterCollection.h" #include "RimCellRangeFilterCollection.h" #include "RimWellCollection.h" CAF_PDM_SOURCE_INIT(RimFault, "Fault"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFault::RimFault() { CAF_PDM_InitObject("RimFault", ":/draw_style_faults_24x24.png", "", ""); CAF_PDM_InitFieldNoDefault(&name, "FaultName", "Name", "", "", ""); name.setUiHidden(true); name.setUiReadOnly(true); CAF_PDM_InitField(&showFault, "ShowFault", true, "Show fault", "", "", ""); showFault.setUiHidden(true); CAF_PDM_InitField(&faultColor, "Color", cvf::Color3f(0.588f, 0.588f, 0.804f), "Fault color", "", "", ""); m_rigFault = NULL; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimFault::~RimFault() { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmFieldHandle* RimFault::userDescriptionField() { return &name; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFault::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) { if (&showFault == changedField) { this->updateUiIconFromState(showFault); RimReservoirView* reservoirView = NULL; this->firstAncestorOfType(reservoirView); if (reservoirView) { reservoirView->scheduleCreateDisplayModelAndRedraw(); } } if (&faultColor == changedField) { RimReservoirView* reservoirView = NULL; this->firstAncestorOfType(reservoirView); if (reservoirView) { reservoirView->scheduleCreateDisplayModelAndRedraw(); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmFieldHandle* RimFault::objectToggleField() { return &showFault; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimFault::setFaultGeometry(const RigFault* faultGeometry) { m_rigFault = faultGeometry; this->name = faultGeometry->name(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- const RigFault* RimFault::faultGeometry() const { return m_rigFault; }