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 cmCursesLabelWidget_h
|
|
|
|
#define cmCursesLabelWidget_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 19:52:27 +03:00
|
|
|
#include "cmCursesWidget.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <string>
|
|
|
|
|
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,
|
2002-10-24 02:03:27 +04:00
|
|
|
const std::string& name);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCursesLabelWidget() CM_OVERRIDE;
|
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
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesLabelWidget(const cmCursesLabelWidget& from);
|
|
|
|
void operator=(const cmCursesLabelWidget&);
|
|
|
|
};
|
|
|
|
|
2014-12-11 21:10:03 +03:00
|
|
|
#endif // cmCursesLabelWidget_h
|