2001-11-05 02:05:21 +03:00
|
|
|
#ifndef __cmCursesLabelWidget_h
|
|
|
|
#define __cmCursesLabelWidget_h
|
|
|
|
|
2001-11-05 19:52:27 +03:00
|
|
|
#include "cmCursesWidget.h"
|
2001-11-05 21:24:44 +03:00
|
|
|
#include "cmCursesStandardIncludes.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2001-12-13 21:28:41 +03:00
|
|
|
class cmCursesMainForm;
|
2001-11-05 02:05:21 +03:00
|
|
|
|
|
|
|
class cmCursesLabelWidget : public cmCursesWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCursesLabelWidget(int width, int height, int left, int top,
|
|
|
|
const std::string& name);
|
|
|
|
virtual ~cmCursesLabelWidget();
|
|
|
|
|
|
|
|
// Description:
|
|
|
|
// Handle user input. Called by the container of this widget
|
|
|
|
// when this widget has focus. Returns true if the input was
|
|
|
|
// handled
|
2001-12-13 21:28:41 +03:00
|
|
|
virtual bool HandleInput(int& key, cmCursesMainForm* fm, WINDOW* w);
|
2001-11-05 02:05:21 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesLabelWidget(const cmCursesLabelWidget& from);
|
|
|
|
void operator=(const cmCursesLabelWidget&);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cmCursesLabelWidget_h
|