]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Support multiline text editing
[libs/gltk.git] / source / entry.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007-2010  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 "text.h"
12 #include "widget.h"
13
14 namespace Msp {
15 namespace GLtk {
16
17 /**
18 Text entry field.
19
20 Special parts:
21
22   text    The current text of the widget.  Graphics are ignored.
23   cursor  Indicates the current input position.  Fill_x is ignored.
24 */
25 class Entry: public Widget
26 {
27 public:
28         class Loader: public Widget::Loader
29         {
30         public:
31                 Loader(Entry &);
32         };
33
34 private:
35         Text text;
36         bool multiline;
37         unsigned edit_pos;
38
39 public:
40         sigc::signal<void> signal_enter;
41
42         Entry(const Resources &, const std::string & =std::string());
43
44         void set_text(const std::string &);
45         const std::string &get_text() const { return text.get(); }
46         void set_multiline(bool);
47         bool is_multiline() const { return multiline; }
48
49         virtual void key_press(unsigned, unsigned, wchar_t);
50 private:
51         virtual const char *get_class() const { return "entry"; }
52         virtual void render_special(const Part &) const;
53
54         virtual void on_style_change();
55 };
56
57 } // namespace GLtk
58 } // namespace Msp
59
60 #endif
61