mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
110 lines
4.1 KiB
C++
110 lines
4.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2024- 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>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RimFieldQuickAccess.h"
|
|
|
|
#include "Riu3DMainWindowTools.h"
|
|
|
|
#include "cafPdmUiToolButtonEditor.h"
|
|
|
|
CAF_PDM_SOURCE_INIT( RimFieldQuickAccess, "RimFieldReference" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimFieldQuickAccess::RimFieldQuickAccess()
|
|
{
|
|
CAF_PDM_InitFieldNoDefault( &m_object, "Object", "Object" );
|
|
CAF_PDM_InitFieldNoDefault( &m_fieldName, "FieldName", "FieldName" );
|
|
|
|
CAF_PDM_InitField( &m_selectObjectButton, "SelectObject", false, "...", ":/Bullet.png", "Select Object in Property Editor" );
|
|
m_selectObjectButton.uiCapability()->setUiEditorTypeName( caf::PdmUiToolButtonEditor::uiEditorTypeName() );
|
|
m_selectObjectButton.xmlCapability()->disableIO();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFieldQuickAccess::setField( caf::PdmFieldHandle* field )
|
|
{
|
|
if ( !field ) return;
|
|
|
|
auto ownerObject = field->ownerObject();
|
|
if ( !ownerObject ) return;
|
|
|
|
setField( field->ownerObject(), field->keyword() );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFieldQuickAccess::defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering )
|
|
{
|
|
if ( field() )
|
|
{
|
|
uiOrdering.add( field() );
|
|
}
|
|
|
|
uiOrdering.add( &m_selectObjectButton );
|
|
|
|
uiOrdering.skipRemainingFields();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
caf::PdmFieldHandle* RimFieldQuickAccess::field() const
|
|
{
|
|
if ( !m_object() ) return nullptr;
|
|
|
|
return m_object->findField( m_fieldName() );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
caf::PdmFieldHandle* RimFieldQuickAccess::selectObjectButton()
|
|
{
|
|
return &m_selectObjectButton;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFieldQuickAccess::fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue )
|
|
{
|
|
if ( changedField == &m_selectObjectButton )
|
|
{
|
|
m_selectObjectButton = false;
|
|
|
|
if ( auto pdmObj = dynamic_cast<caf::PdmObject*>( m_object() ) )
|
|
{
|
|
Riu3DMainWindowTools::selectAsCurrentItem( pdmObj );
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFieldQuickAccess::setField( caf::PdmObjectHandle* object, const QString& fieldName )
|
|
{
|
|
m_object = object;
|
|
m_fieldName = fieldName;
|
|
}
|