blob: a516bca40e194d2fb6db97a7077e919af1314acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef __cmCursesWidget_h
#define __cmCursesWidget_h
#include "../cmCacheManager.h"
#include "cmCursesStandardIncludes.h"
class cmCursesWidget
{
public:
cmCursesWidget(int width, int height, int left, int top);
virtual ~cmCursesWidget();
// Description:
// Handle user input. Called by the container of this widget
// when this widget has focus. Returns true if the input was
// handled
virtual bool HandleInput(int& key, FORM* form, WINDOW* w) = 0;
// Description:
// Change the position of the widget. Set isNewPage to true
// if this widget marks the beginning of a new page.
virtual void Move(int x, int y, bool isNewPage);
// Description:
// Set/Get the value (setting the value also changes the contents
// of the field buffer).
virtual void SetValue(const char* value);
virtual const char* GetValue();
// Description:
// Get the type of the widget (STRING, PATH etc...)
cmCacheManager::CacheEntryType GetType()
{ return m_Type; }
friend class cmCursesMainForm;
protected:
cmCursesWidget(const cmCursesWidget& from);
void operator=(const cmCursesWidget&);
cmCacheManager::CacheEntryType m_Type;
std::string m_Value;
FIELD* m_Field;
};
#endif // __cmCursesWidget_h
|