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 cmCursesLongMessageForm_h
|
|
|
|
#define cmCursesLongMessageForm_h
|
2001-11-30 07:45:01 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <cmConfigure.h>
|
2001-11-30 07:45:01 +03:00
|
|
|
|
2016-04-29 16:40:20 +03:00
|
|
|
#include "cmCursesForm.h"
|
2016-09-01 22:55:09 +03:00
|
|
|
#include "cmCursesStandardIncludes.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2001-11-30 07:45:01 +03:00
|
|
|
|
|
|
|
class cmCursesLongMessageForm : public cmCursesForm
|
|
|
|
{
|
|
|
|
public:
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCursesLongMessageForm(std::vector<std::string> const& messages,
|
2002-10-24 02:03:27 +04:00
|
|
|
const char* title);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCursesLongMessageForm() CM_OVERRIDE;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-11-30 07:45:01 +03:00
|
|
|
// Description:
|
|
|
|
// Handle user input.
|
2016-06-27 22:25:27 +03:00
|
|
|
void HandleInput() CM_OVERRIDE;
|
2001-11-30 07:45:01 +03:00
|
|
|
|
|
|
|
// Description:
|
|
|
|
// Display form. Use a window of size width x height, starting
|
|
|
|
// at top, left.
|
2016-06-27 22:25:27 +03:00
|
|
|
void Render(int left, int top, int width, int height) CM_OVERRIDE;
|
2001-11-30 07:45:01 +03:00
|
|
|
|
|
|
|
// Description:
|
|
|
|
// This method should normally called only by the form.
|
|
|
|
// The only exception is during a resize.
|
|
|
|
void PrintKeys();
|
|
|
|
|
|
|
|
// Description:
|
|
|
|
// This method should normally called only by the form.
|
|
|
|
// The only exception is during a resize.
|
2016-06-27 22:25:27 +03:00
|
|
|
void UpdateStatusBar() CM_OVERRIDE;
|
2001-11-30 07:45:01 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesLongMessageForm(const cmCursesLongMessageForm& from);
|
|
|
|
void operator=(const cmCursesLongMessageForm&);
|
|
|
|
|
2006-03-16 18:44:55 +03:00
|
|
|
std::string Messages;
|
|
|
|
std::string Title;
|
2001-11-30 07:45:01 +03:00
|
|
|
|
2006-03-16 18:44:55 +03:00
|
|
|
FIELD* Fields[2];
|
2001-11-30 07:45:01 +03:00
|
|
|
};
|
|
|
|
|
2014-12-11 21:10:03 +03:00
|
|
|
#endif // cmCursesLongMessageForm_h
|