CMake/Source/CursesDialog/cmCursesBoolWidget.h

29 lines
698 B
C
Raw Normal View History

2001-11-05 02:05:21 +03:00
#ifndef __cmCursesBoolWidget_h
#define __cmCursesBoolWidget_h
#include "cmCursesWidget.h"
class cmCursesBoolWidget : public cmCursesWidget
{
public:
cmCursesBoolWidget(int width, int height, int left, int top);
// Description:
// 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, FORM* form, WINDOW* w);
// Description:
// Set/Get the value (on/off).
void SetValueAsBool(bool value);
bool GetValueAsBool();
protected:
cmCursesBoolWidget(const cmCursesBoolWidget& from);
void operator=(const cmCursesBoolWidget&);
};
#endif // __cmCursesBoolWidget_h