2016-09-27 22:01:08 +03: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 21:10:03 +03:00
|
|
|
#ifndef cmCursesBoolWidget_h
|
|
|
|
#define cmCursesBoolWidget_h
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
|
|
|
#include "cmCursesStandardIncludes.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
#include "cmCursesWidget.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2001-12-13 21:28:41 +03:00
|
|
|
class cmCursesMainForm;
|
2001-11-05 02:05:21 +03:00
|
|
|
|
|
|
|
class cmCursesBoolWidget : public cmCursesWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCursesBoolWidget(int width, int height, int left, int top);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-11-05 02:05:21 +03:00
|
|
|
// Description:
|
|
|
|
// Handle user input. Called by the container of this widget
|
|
|
|
// when this widget has focus. Returns true if the input was
|
|
|
|
// handled.
|
2016-06-27 22:25:27 +03:00
|
|
|
bool HandleInput(int& key, cmCursesMainForm* fm, WINDOW* w) CM_OVERRIDE;
|
2001-11-05 02:05:21 +03:00
|
|
|
|
|
|
|
// Description:
|
|
|
|
// Set/Get the value (on/off).
|
|
|
|
void SetValueAsBool(bool value);
|
|
|
|
bool GetValueAsBool();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesBoolWidget(const cmCursesBoolWidget& from);
|
|
|
|
void operator=(const cmCursesBoolWidget&);
|
|
|
|
};
|
|
|
|
|
2014-12-11 21:10:03 +03:00
|
|
|
#endif // cmCursesBoolWidget_h
|