///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2026- 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 "cafPdmField.h" #include "cafPdmFieldCvfColor.h" #include "cafPdmObjectHandle.h" #include "cafPdmObjectMethod.h" #include "cafPdmPtrField.h" #include "cvfColor3.h" #include class RimCase; class RimColorLegend; //================================================================================================== /// //================================================================================================== class RimcColorLegendCollection_createColorLegend : public caf::PdmObjectCreationMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegendCollection_createColorLegend( caf::PdmObjectHandle* self ); std::expected execute() override; QString classKeywordReturnedType() const override; private: caf::PdmField m_legendName; }; //================================================================================================== /// //================================================================================================== class RimcColorLegend_addColorLegendItem : public caf::PdmObjectCreationMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegend_addColorLegendItem( caf::PdmObjectHandle* self ); std::expected execute() override; QString classKeywordReturnedType() const override; private: caf::PdmField m_categoryValue; caf::PdmField m_categoryName; caf::PdmField m_color; }; //================================================================================================== /// //================================================================================================== class RimcColorLegendCollection_updateColorLegend : public caf::PdmObjectCreationMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegendCollection_updateColorLegend( caf::PdmObjectHandle* self ); std::expected execute() override; QString classKeywordReturnedType() const override; private: caf::PdmPtrField m_case; caf::PdmField m_resultName; caf::PdmField m_legendName; caf::PdmField> m_categoryValues; caf::PdmField> m_categoryNames; caf::PdmField> m_colors; }; //================================================================================================== /// //================================================================================================== class RimcColorLegendCollection_setDefaultColorLegendForResult : public caf::PdmVoidObjectMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegendCollection_setDefaultColorLegendForResult( caf::PdmObjectHandle* self ); std::expected execute() override; private: caf::PdmPtrField m_case; caf::PdmField m_resultName; caf::PdmPtrField m_colorLegend; }; //================================================================================================== /// //================================================================================================== class RimcColorLegendCollection_deleteColorLegend : public caf::PdmVoidObjectMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegendCollection_deleteColorLegend( caf::PdmObjectHandle* self ); std::expected execute() override; private: caf::PdmPtrField m_case; caf::PdmField m_resultName; }; //================================================================================================== /// //================================================================================================== class RimcColorLegendCollection_findDefaultLegendForResult : public caf::PdmObjectMethod { CAF_PDM_HEADER_INIT; public: RimcColorLegendCollection_findDefaultLegendForResult( caf::PdmObjectHandle* self ); std::expected execute() override; QString classKeywordReturnedType() const override; private: caf::PdmPtrField m_case; caf::PdmField m_resultName; };