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 cmCursesOptionsWidget_h
|
|
|
|
#define cmCursesOptionsWidget_h
|
2013-09-21 01:47:38 +04:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
|
|
|
#include "cmCursesStandardIncludes.h"
|
2013-09-21 01:47:38 +04:00
|
|
|
#include "cmCursesWidget.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2013-09-21 01:47:38 +04:00
|
|
|
class cmCursesMainForm;
|
|
|
|
|
|
|
|
class cmCursesOptionsWidget : public cmCursesWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCursesOptionsWidget(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.
|
2016-06-27 22:25:27 +03:00
|
|
|
bool HandleInput(int& key, cmCursesMainForm* fm, WINDOW* w) CM_OVERRIDE;
|
2014-02-22 04:05:55 +04:00
|
|
|
void SetOption(const std::string&);
|
2016-05-16 17:34:04 +03:00
|
|
|
void AddOption(std::string const&);
|
2013-09-21 01:47:38 +04:00
|
|
|
void NextOption();
|
|
|
|
void PreviousOption();
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2013-09-21 01:47:38 +04:00
|
|
|
protected:
|
|
|
|
cmCursesOptionsWidget(const cmCursesOptionsWidget& from);
|
|
|
|
void operator=(const cmCursesOptionsWidget&);
|
|
|
|
std::vector<std::string> Options;
|
|
|
|
std::vector<std::string>::size_type CurrentOption;
|
|
|
|
};
|
|
|
|
|
2014-12-11 21:10:03 +03:00
|
|
|
#endif // cmCursesOptionsWidget_h
|