]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Make the entry widget cursor blink
[libs/gltk.git] / source / entry.h
1 #ifndef MSP_GLTK_ENTRY_H_
2 #define MSP_GLTK_ENTRY_H_
3
4 #include "container.h"
5 #include "text.h"
6 #include "widget.h"
7
8 namespace Msp {
9 namespace GLtk {
10
11 class VSlider;
12
13 /**
14 Text entry field.
15
16 Special parts:
17
18   text    The current text of the widget.  Graphics are ignored.
19   cursor  Indicates the current input position.  Fill_x is ignored.
20   slider  A vertical slider for multiline entries.
21 */
22 class Entry: virtual public Widget, private Container
23 {
24 public:
25         class Loader: public DataFile::DerivedObjectLoader<Entry, Widget::Loader>
26         {
27         public:
28                 Loader(Entry &);
29
30         private:
31                 void multiline(bool);
32         };
33
34         // Deprecated
35         sigc::signal<void> signal_enter;
36
37 private:
38         Text text;
39         bool multiline;
40         unsigned edit_width;
41         unsigned edit_height;
42         unsigned edit_pos;
43         unsigned first_row;
44         unsigned visible_rows;
45         const Part *text_part;
46         VSlider *slider;
47         bool got_key_press;
48         bool cursor_blink;
49
50 public:
51         Entry(const std::string & = std::string());
52
53         virtual const char *get_class() const { return "entry"; }
54
55 private:
56         virtual void autosize_special(const Part &, Geometry &) const;
57
58 public:
59         void set_text(const std::string &);
60         const std::string &get_text() const { return text.get(); }
61
62         /** Sets the minimum size of the editing area, in characters and rows.  This
63         only affects autosizing. */
64         void set_edit_size(unsigned w, unsigned h);
65
66         void set_multiline(bool);
67         bool is_multiline() const { return multiline; }
68
69 private:
70         virtual void rebuild_special(const Part &);
71         virtual void render_special(const Part &, GL::Renderer &) const;
72
73 public:
74         virtual void touch_press(int, int, unsigned);
75         virtual bool key_press(unsigned, unsigned);
76         virtual bool character(wchar_t);
77         virtual void focus_in();
78         virtual void focus_out();
79         virtual bool navigate(Navigation);
80         virtual void animate(const Time::TimeDelta &);
81 private:
82         virtual void on_geometry_change();
83         virtual void on_style_change();
84
85         void set_edit_position(unsigned);
86         void check_cursor_blink();
87         void check_view_range();
88         void slider_value_changed(double);
89 };
90
91 } // namespace GLtk
92 } // namespace Msp
93
94 #endif
95