]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Reorder class members
[libs/gltk.git] / source / entry.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_ENTRY_H_
9 #define MSP_GLTK_ENTRY_H_
10
11 #include "widget.h"
12
13 namespace Msp {
14 namespace GLtk {
15
16 /**
17 Text entry field.
18
19 Special parts:
20
21   text    The current text of the widget.  Graphics are ignored.
22   cursor  Indicates the current input position.  Fill_x is ignored.
23 */
24 class Entry: public Widget
25 {
26 private:
27         std::string text;
28         unsigned edit_pos;
29
30 public:
31         Entry(const Resources &, const std::string & =std::string());
32
33         void set_text(const std::string &);
34         const std::string &get_text() const { return text; }
35
36         void key_press(unsigned, unsigned, wchar_t);
37         void focus_in();
38         void focus_out();
39 private:
40         const char *get_class() const { return "entry"; }
41         void render_part(const Part &) const;
42 };
43
44 } // namespace GLtk
45 } // namespace Msp
46
47 #endif
48