Files
ResInsight/ApplicationLibCode/ProjectDataModel/WellEvents/RimWellEventKeywordItem.h
T
Kristian Bendiksen 9df7b933a7 #14216 Improve well event GUI: keyword item table, timeline sorting and filtering
Show keyword event items as an editable table in the property panel instead of one tree node per attribute. Items expose a single typed Value column via a proxy field; name and type are read-only.

Add sorting (date, well, type; ascending or descending) and filtering (wells, event types, optional date range) to the well event timeline. The project tree shows the filtered event count in the timeline node name.

Provide well path options for the event well path field, name keyword event tree nodes consistently with other event types, and hide the unused well path field for schedule-level keyword events.
2026-08-12 11:23:32 +02:00

86 lines
2.5 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2025- 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.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "cafAppEnum.h"
#include "cafPdmField.h"
#include "cafPdmObject.h"
#include "cafPdmProxyValueField.h"
#include <QString>
//==================================================================================================
///
/// Represents a single keyword item (field) with a name, type, and value
///
//==================================================================================================
class RimWellEventKeywordItem : public caf::PdmObject
{
CAF_PDM_HEADER_INIT;
public:
enum class ItemType
{
STRING,
INTEGER,
DOUBLE,
FLAG
};
RimWellEventKeywordItem();
~RimWellEventKeywordItem() override;
// Getters
QString itemName() const;
ItemType itemType() const;
QString stringValue() const;
int intValue() const;
double doubleValue() const;
// Setters
void setItemName( const QString& name );
void setStringValue( const QString& value );
void setIntValue( int value );
void setDoubleValue( double value );
void setFlag();
protected:
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
void initAfterRead() override;
private:
QString valueForUi() const;
void setValueForUi( const QString& value );
void updateValueFieldReadOnlyState();
private:
caf::PdmField<QString> m_itemName;
caf::PdmField<caf::AppEnum<ItemType>> m_itemType;
caf::PdmField<QString> m_stringValue;
caf::PdmField<int> m_intValue;
caf::PdmField<double> m_doubleValue;
caf::PdmProxyValueField<QString> m_valueForUi;
};
namespace caf
{
template <>
void caf::AppEnum<RimWellEventKeywordItem::ItemType>::setUp();
} // namespace caf