2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-12-11 13:10:03 -05:00
|
|
|
#ifndef cmCursesWidget_h
|
|
|
|
#define cmCursesWidget_h
|
2001-11-04 18:05:21 -05:00
|
|
|
|
2016-09-01 21:55:09 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
2001-11-05 13:24:44 -05:00
|
|
|
#include "cmCursesStandardIncludes.h"
|
2016-09-01 21:55:09 +02:00
|
|
|
#include "cmState.h"
|
2001-11-04 18:05:21 -05:00
|
|
|
|
2016-09-01 21:55:09 +02:00
|
|
|
#include <string>
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2001-12-13 13:28:41 -05:00
|
|
|
class cmCursesMainForm;
|
|
|
|
|
2001-11-04 18:05:21 -05:00
|
|
|
class cmCursesWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCursesWidget(int width, int height, int left, int top);
|
|
|
|
virtual ~cmCursesWidget();
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2001-12-13 13:28:41 -05:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2001-11-04 18:05:21 -05:00
|
|
|
virtual void Move(int x, int y, bool isNewPage);
|
|
|
|
|
2001-12-13 13:28:41 -05:00
|
|
|
/**
|
|
|
|
* Set/Get the value (setting the value also changes the contents
|
|
|
|
* of the field buffer).
|
|
|
|
*/
|
2014-02-21 19:05:55 -05:00
|
|
|
virtual void SetValue(const std::string& value);
|
2001-11-04 18:05:21 -05:00
|
|
|
virtual const char* GetValue();
|
|
|
|
|
2001-12-13 13:28:41 -05:00
|
|
|
/**
|
|
|
|
* Get the type of the widget (STRING, PATH etc...)
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
cmState::CacheEntryType GetType() { return this->Type; }
|
2001-11-04 18:05:21 -05:00
|
|
|
|
2001-12-13 13:28:41 -05:00
|
|
|
/**
|
|
|
|
* 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-05-16 10:34:04 -04:00
|
|
|
virtual bool PrintKeys() { return false; }
|
2001-12-13 13:28:41 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set/Get the page this widget is in.
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
void SetPage(int page) { this->Page = page; }
|
|
|
|
int GetPage() { return this->Page; }
|
2001-12-13 13:28:41 -05:00
|
|
|
|
2001-11-04 18:05:21 -05:00
|
|
|
friend class cmCursesMainForm;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesWidget(const cmCursesWidget& from);
|
|
|
|
void operator=(const cmCursesWidget&);
|
|
|
|
|
2015-04-07 22:45:54 +02:00
|
|
|
cmState::CacheEntryType Type;
|
2006-03-16 10:44:55 -05:00
|
|
|
std::string Value;
|
|
|
|
FIELD* Field;
|
2001-12-13 13:28:41 -05:00
|
|
|
// The page in the main form this widget is in
|
2006-03-16 10:44:55 -05:00
|
|
|
int Page;
|
2001-11-04 18:05:21 -05:00
|
|
|
};
|
|
|
|
|
2014-12-11 13:10:03 -05:00
|
|
|
#endif // cmCursesWidget_h
|