mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
167 lines
6.5 KiB
C++
167 lines
6.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2020 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 "RimColorLegendItem.h"
|
|
#include "RimColorLegend.h"
|
|
|
|
#include "cafPdmUiSliderEditor.h"
|
|
|
|
#include "cvfColor3.h"
|
|
|
|
#include <QColor>
|
|
#include <QString>
|
|
|
|
CAF_PDM_SOURCE_INIT( RimColorLegendItem, "ColorLegendItem" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimColorLegendItem::RimColorLegendItem()
|
|
{
|
|
CAF_PDM_InitObject( "ColorLegendItem" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_color, "Color", "Color" );
|
|
m_color = cvf::Color3f( cvf::Color3::ColorIdent::BLACK );
|
|
|
|
CAF_PDM_InitField( &m_categoryValue, "CategoryValue", 0, "Category Number" );
|
|
m_categoryValue.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName() );
|
|
|
|
CAF_PDM_InitField( &m_categoryName, "CategoryName", QString( "" ), "Category Name" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_nameProxy, "NameProxy", "Name Proxy" );
|
|
m_nameProxy.registerGetMethod( this, &RimColorLegendItem::itemName );
|
|
m_nameProxy.uiCapability()->setUiHidden( true );
|
|
m_nameProxy.xmlCapability()->disableIO();
|
|
|
|
setDeletable( true );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimColorLegendItem::~RimColorLegendItem()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::setValues( const QString& categoryName, int categoryValue, const cvf::Color3f& color )
|
|
{
|
|
m_categoryName = categoryName;
|
|
m_categoryValue = categoryValue;
|
|
m_color = color;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::setCategoryValue( int categoryValue )
|
|
{
|
|
m_categoryValue = categoryValue;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::setReadOnly( bool doReadOnly )
|
|
{
|
|
m_categoryName.uiCapability()->setUiReadOnly( true );
|
|
m_categoryValue.uiCapability()->setUiReadOnly( true );
|
|
m_color.uiCapability()->setUiReadOnly( true );
|
|
setDeletable( !doReadOnly );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const cvf::Color3f& RimColorLegendItem::color() const
|
|
{
|
|
return m_color();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const QString& RimColorLegendItem::categoryName() const
|
|
{
|
|
return m_categoryName();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
int RimColorLegendItem::categoryValue() const
|
|
{
|
|
return m_categoryValue();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue )
|
|
{
|
|
RimColorLegend* colorLegend = firstAncestorOrThisOfType<RimColorLegend>();
|
|
if ( colorLegend )
|
|
{
|
|
colorLegend->onColorLegendItemHasChanged();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
caf::PdmFieldHandle* RimColorLegendItem::userDescriptionField()
|
|
{
|
|
return &m_nameProxy;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::defineEditorAttribute( const caf::PdmFieldHandle* field, QString uiConfigName, caf::PdmUiEditorAttribute* attribute )
|
|
{
|
|
caf::PdmUiSliderEditorAttribute* myAttr = dynamic_cast<caf::PdmUiSliderEditorAttribute*>( attribute );
|
|
if ( myAttr )
|
|
{
|
|
myAttr->m_minimum = 0;
|
|
myAttr->m_maximum = 100;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// "stringify" category value and name; category value with leading zeros presupposing max 2 digits
|
|
//--------------------------------------------------------------------------------------------------
|
|
QString RimColorLegendItem::itemName() const
|
|
{
|
|
return QString( "%1" ).arg( m_categoryValue, 2, 10, QChar( '0' ) ) + " " + m_categoryName;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimColorLegendItem::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName /*= ""*/ )
|
|
{
|
|
QColor qcolor( m_color().rByte(), m_color().gByte(), m_color().bByte() );
|
|
|
|
caf::IconProvider iconProvider = uiIconProvider();
|
|
|
|
iconProvider.setBackgroundColorString( qcolor.name() );
|
|
setUiIcon( iconProvider );
|
|
}
|