mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4683 clang-format on all files in ApplicationCode
This commit is contained in:
@@ -1,54 +1,52 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// 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 <http://www.gnu.org/licenses/gpl.html>
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RimPolylinesAnnotationInView.h"
|
||||
#include "RimPolylinesAnnotation.h"
|
||||
#include "RimAnnotationCollectionBase.h"
|
||||
#include "RimAnnotationGroupCollection.h"
|
||||
#include "RimPolylinesAnnotation.h"
|
||||
|
||||
|
||||
CAF_PDM_SOURCE_INIT(RimPolylinesAnnotationInView, "RimPolylinesAnnotationInView");
|
||||
|
||||
CAF_PDM_SOURCE_INIT( RimPolylinesAnnotationInView, "RimPolylinesAnnotationInView" );
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimPolylinesAnnotationInView::RimPolylinesAnnotationInView()
|
||||
{
|
||||
CAF_PDM_InitObject("PolyLinesAnnotationInView", ":/WellCollection.png", "", "");
|
||||
CAF_PDM_InitObject( "PolyLinesAnnotationInView", ":/WellCollection.png", "", "" );
|
||||
|
||||
CAF_PDM_InitField(&m_isActive, "IsActive", true, "Is Active", "", "", "");
|
||||
CAF_PDM_InitFieldNoDefault(&m_sourceAnnotation, "SourceAnnotation", "Source Annotation", "", "", "");
|
||||
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_isActive.uiCapability()->setUiHidden( true );
|
||||
m_sourceAnnotation.uiCapability()->setUiHidden( true );
|
||||
m_sourceAnnotation = nullptr;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimPolylinesAnnotationInView::RimPolylinesAnnotationInView(RimPolylinesAnnotation* sourceAnnotation)
|
||||
RimPolylinesAnnotationInView::RimPolylinesAnnotationInView( RimPolylinesAnnotation* sourceAnnotation )
|
||||
: RimPolylinesAnnotationInView()
|
||||
{
|
||||
CVF_ASSERT(sourceAnnotation);
|
||||
CVF_ASSERT( sourceAnnotation );
|
||||
|
||||
m_isActive = sourceAnnotation->isActive();
|
||||
m_isActive = sourceAnnotation->isActive();
|
||||
m_sourceAnnotation = sourceAnnotation;
|
||||
}
|
||||
|
||||
@@ -74,38 +72,38 @@ RimPolylinesAnnotation* RimPolylinesAnnotationInView::sourceAnnotation() const
|
||||
bool RimPolylinesAnnotationInView::isVisible() const
|
||||
{
|
||||
RimAnnotationGroupCollection* coll;
|
||||
firstAncestorOrThisOfType(coll);
|
||||
firstAncestorOrThisOfType( coll );
|
||||
|
||||
bool visible = true;
|
||||
if (coll) visible = coll->isVisible();
|
||||
if (visible && m_sourceAnnotation)
|
||||
if ( coll ) visible = coll->isVisible();
|
||||
if ( visible && m_sourceAnnotation )
|
||||
{
|
||||
visible = m_sourceAnnotation->isVisible();
|
||||
|
||||
if (visible)
|
||||
if ( visible )
|
||||
{
|
||||
RimAnnotationGroupCollection* globalColl;
|
||||
m_sourceAnnotation->firstAncestorOrThisOfType(globalColl);
|
||||
if (globalColl) visible = globalColl->isVisible();
|
||||
m_sourceAnnotation->firstAncestorOrThisOfType( globalColl );
|
||||
if ( globalColl ) visible = globalColl->isVisible();
|
||||
}
|
||||
}
|
||||
if (visible) visible = m_isActive;
|
||||
if ( visible ) visible = m_isActive;
|
||||
return visible;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimPolylinesAnnotationInView::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
|
||||
const QVariant& oldValue,
|
||||
const QVariant& newValue)
|
||||
void RimPolylinesAnnotationInView::fieldChangedByUi( const caf::PdmFieldHandle* changedField,
|
||||
const QVariant& oldValue,
|
||||
const QVariant& newValue )
|
||||
{
|
||||
if (changedField == &m_isActive)
|
||||
if ( changedField == &m_isActive )
|
||||
{
|
||||
RimAnnotationCollectionBase* coll;
|
||||
firstAncestorOrThisOfType(coll);
|
||||
firstAncestorOrThisOfType( coll );
|
||||
|
||||
if (coll) coll->scheduleRedrawOfRelevantViews();
|
||||
if ( coll ) coll->scheduleRedrawOfRelevantViews();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,4 +122,3 @@ caf::PdmFieldHandle* RimPolylinesAnnotationInView::userDescriptionField()
|
||||
{
|
||||
return m_sourceAnnotation ? m_sourceAnnotation->userDescriptionField() : nullptr;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user