]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Focus entry widget on touch press
[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
49 public:
50         Entry(const std::string & = std::string());
51
52         virtual const char *get_class() const { return "entry"; }
53
54 private:
55         virtual void autosize_special(const Part &, Geometry &) const;
56
57 public:
58         void set_text(const std::string &);
59         const std::string &get_text() const { return text.get(); }
60
61         /** Sets the minimum size of the editing area, in characters and rows.  This
62         only affects autosizing. */
63         void set_edit_size(unsigned w, unsigned h);
64
65         void set_multiline(bool);
66         bool is_multiline() const { return multiline; }
67
68 private:
69         virtual void rebuild_special(const Part &);
70         virtual void render_special(const Part &, GL::Renderer &) const;
71
72 public:
73         virtual void touch_press(int, int, unsigned);
74         virtual bool key_press(unsigned, unsigned);
75         virtual bool character(wchar_t);
76         virtual void focus_out();
77         virtual bool navigate(Navigation);
78 private:
79         virtual void on_geometry_change();
80         virtual void on_style_change();
81
82         void set_edit_position(unsigned);
83         void check_view_range();
84         void slider_value_changed(double);
85 };
86
87 } // namespace GLtk
88 } // namespace Msp
89
90 #endif
91