cmake/Source/CursesDialog/cmCursesWidget.h

70 lines
1.8 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
2020-02-01 23:06:01 +01:00
#include <string>
#include "cmCursesStandardIncludes.h"
2017-04-14 19:02:05 +02:00
#include "cmStateTypes.h"
class cmCursesMainForm;
class cmCursesWidget
{
public:
cmCursesWidget(int width, int height, int left, int top);
virtual ~cmCursesWidget();
2013-03-16 19:13:01 +02:00
2019-11-11 23:01:05 +01:00
cmCursesWidget(cmCursesWidget const&) = delete;
cmCursesWidget& operator=(cmCursesWidget const&) = delete;
/**
* Handle user input. Called by the container of this widget
* when this widget has focus. Returns true if the input was
* handled
*/
virtual bool HandleInput(int& key, cmCursesMainForm* fm, WINDOW* w) = 0;
/**
* Change the position of the widget. Set isNewPage to true
* if this widget marks the beginning of a new page.
*/
virtual void Move(int x, int y, bool isNewPage);
/**
* Set/Get the value (setting the value also changes the contents
* of the field buffer).
*/
2015-04-27 22:25:09 +02:00
virtual void SetValue(const std::string& value);
virtual const char* GetValue();
/**
* Get the type of the widget (STRING, PATH etc...)
*/
2017-04-14 19:02:05 +02:00
cmStateEnums::CacheEntryType GetType() { return this->Type; }
/**
* If there are any, print the widget specific commands
* in the toolbar and return true. Otherwise, return false
* and the parent widget will print.
*/
2016-07-09 11:21:54 +02:00
virtual bool PrintKeys() { return false; }
/**
* Set/Get the page this widget is in.
*/
2016-07-09 11:21:54 +02:00
void SetPage(int page) { this->Page = page; }
int GetPage() { return this->Page; }
friend class cmCursesMainForm;
protected:
2017-04-14 19:02:05 +02:00
cmStateEnums::CacheEntryType Type;
std::string Value;
FIELD* Field;
// The page in the main form this widget is in
int Page;
};