cmCursesDummyWidget.cxx 601 B

12345678910111213141516171819
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmCursesDummyWidget.h"
  4. #include "cmCursesWidget.h"
  5. #include "cmStateTypes.h"
  6. cmCursesDummyWidget::cmCursesDummyWidget(int width, int height, int left,
  7. int top)
  8. : cmCursesWidget(width, height, left, top)
  9. {
  10. this->Type = cmStateEnums::INTERNAL;
  11. }
  12. bool cmCursesDummyWidget::HandleInput(int& /*key*/, cmCursesMainForm* /*fm*/,
  13. WINDOW* /*w*/)
  14. {
  15. return false;
  16. }