///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafAppEnum.h" #include "cafPdmField.h" #include "cafPdmObject.h" #include "cafPdmPtrField.h" #include #include class RimWellPath; //================================================================================================== /// /// Base class for well events in a timeline-based event system /// //================================================================================================== class RimWellEvent : public caf::PdmObject { CAF_PDM_HEADER_INIT; public: enum class EventType { PERF, VALVE, TUBING, WSTATE, WTYPE, WELLSPEC, WCONTROL, KEYWORD, SCHEDULE_KEYWORD, RAW_TEXT }; RimWellEvent(); ~RimWellEvent() override; QDateTime eventDate() const; void setEventDate( const QDateTime& date ); RimWellPath* wellPath() const; void setWellPath( RimWellPath* wellPath ); QString wellName() const; // Convenience method to get well name QString comment() const; void setComment( const QString& comment ); virtual EventType eventType() const = 0; virtual QString generateScheduleKeyword( const QString& wellName ) const = 0; protected: void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; QList calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override; protected: caf::PdmField m_eventDate; caf::PdmPtrField m_wellPath; caf::PdmField m_comment; }; namespace caf { template <> void caf::AppEnum::setUp(); } // namespace caf