///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2018- Equinor ASA // // 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 "RimTextAnnotationInView.h" #include "RimTextAnnotation.h" #include "RimAnnotationCollectionBase.h" #include "RimAnnotationGroupCollection.h" CAF_PDM_SOURCE_INIT(RimTextAnnotationInView, "RimTextAnnotationInView"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimTextAnnotationInView::RimTextAnnotationInView() { CAF_PDM_InitObject("TextAnnotationInView", ":/TextAnnotation16x16.png", "", ""); CAF_PDM_InitField(&m_isActive, "IsActive", true, "Is Active", "", "", ""); CAF_PDM_InitFieldNoDefault(&m_sourceAnnotation, "SourceAnnotation", "Source Annotation", "", "", ""); m_isActive.uiCapability()->setUiHidden(true); m_sourceAnnotation.uiCapability()->setUiHidden(true); m_sourceAnnotation = nullptr; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimTextAnnotationInView::RimTextAnnotationInView(RimTextAnnotation* sourceAnnotation) : RimTextAnnotationInView() { CVF_ASSERT(sourceAnnotation); m_isActive = sourceAnnotation->isActive(); m_sourceAnnotation = sourceAnnotation; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RimTextAnnotationInView::isActive() const { return m_isActive(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimTextAnnotationInView::setSourceAnnotation(RimTextAnnotation* annotation) { m_sourceAnnotation = annotation; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimTextAnnotation* RimTextAnnotationInView::sourceAnnotation() const { return m_sourceAnnotation; } //-------------------------------------------------------------------------------------------------- /// Returns true if annotation can be displayed due to all toggles that affect this annotation //-------------------------------------------------------------------------------------------------- bool RimTextAnnotationInView::isVisible() const { RimAnnotationGroupCollection* coll; firstAncestorOrThisOfType(coll); bool visible = true; if (coll) visible = coll->isVisible(); if (visible && m_sourceAnnotation) { visible = m_sourceAnnotation->isVisible(); if (visible) { RimAnnotationGroupCollection* globalColl; m_sourceAnnotation->firstAncestorOrThisOfType(globalColl); if (globalColl) visible = globalColl->isVisible(); } } if (visible) visible = m_isActive; return visible; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimTextAnnotationInView::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) { if (changedField == &m_isActive) { RimAnnotationCollectionBase* coll; firstAncestorOrThisOfType(coll); if (coll) coll->scheduleRedrawOfRelevantViews(); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmFieldHandle* RimTextAnnotationInView::objectToggleField() { return &m_isActive; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmFieldHandle* RimTextAnnotationInView::userDescriptionField() { return m_sourceAnnotation ? m_sourceAnnotation->userDescriptionField() : nullptr; }