cmCursesDummyWidget.h 594 B

1234567891011121314151617181920212223
  1. #ifndef __cmCursesDummyWidget_h
  2. #define __cmCursesDummyWidget_h
  3. #include "cmCursesWidget.h"
  4. class cmCursesDummyWidget : public cmCursesWidget
  5. {
  6. public:
  7. cmCursesDummyWidget(int width, int height, int left, int top);
  8. // Description:
  9. // Handle user input. Called by the container of this widget
  10. // when this widget has focus. Returns true if the input was
  11. // handled.
  12. virtual bool HandleInput(int& key, FORM* form, WINDOW* w);
  13. protected:
  14. cmCursesDummyWidget(const cmCursesDummyWidget& from);
  15. void operator=(const cmCursesDummyWidget&);
  16. };
  17. #endif // __cmCursesDummyWidget_h