/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #ifndef cmCursesCacheEntryComposite_h #define cmCursesCacheEntryComposite_h #include "cmConfigure.h" // IWYU pragma: keep #include #include class cmCursesLabelWidget; class cmCursesWidget; class cmState; class cmCursesCacheEntryComposite { public: cmCursesCacheEntryComposite(const std::string& key, int labelwidth, int entrywidth); cmCursesCacheEntryComposite(const std::string& key, cmState* state, bool isNew, int labelwidth, int entrywidth); ~cmCursesCacheEntryComposite(); cmCursesCacheEntryComposite(cmCursesCacheEntryComposite const&) = delete; cmCursesCacheEntryComposite& operator=(cmCursesCacheEntryComposite const&) = delete; cmCursesCacheEntryComposite(cmCursesCacheEntryComposite&&) = default; cmCursesCacheEntryComposite& operator=(cmCursesCacheEntryComposite&&) = default; const char* GetValue(); friend class cmCursesMainForm; protected: std::unique_ptr Label; std::unique_ptr IsNewLabel; std::unique_ptr Entry; std::string Key; int LabelWidth; int EntryWidth; }; #endif // cmCursesCacheEntryComposite_h