]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Refactor edit position adjustments from Entry::insert and delete
[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         sigc::signal<void, unsigned> signal_edit_position_changed;
35         sigc::signal<void, unsigned> signal_scroll_position_changed;
36         sigc::signal<void, const std::string &> signal_text_changed;
37
38         // Deprecated
39         sigc::signal<void> signal_enter;
40
41 private:
42         Text text;
43         bool multiline;
44         unsigned edit_width;
45         unsigned edit_height;
46         unsigned edit_pos;
47         unsigned first_row;
48         unsigned visible_rows;
49         const Part *text_part;
50         VSlider *slider;
51         bool got_key_press;
52         bool cursor_blink;
53         bool selection_active;
54         unsigned selection_pos;
55
56 public:
57         Entry(const std::string & = std::string());
58
59         virtual const char *get_class() const { return "entry"; }
60
61 private:
62         virtual void autosize_special(const Part &, Geometry &) const;
63
64 public:
65         void set_text(const std::string &);
66         void insert(unsigned, const std::string &);
67         void erase(unsigned, unsigned);
68         const std::string &get_text() const { return text.get(); }
69
70         void set_edit_position(unsigned p) { set_edit_position(p, false); }
71         unsigned get_edit_position() const { return edit_pos; }
72         unsigned get_scroll_position() const { return first_row; }
73         unsigned get_visible_rows() const { return visible_rows; }
74         bool get_selection(unsigned &, unsigned &) const;
75         void translate_position(unsigned, unsigned &, unsigned &) const;
76         unsigned translate_position(unsigned, unsigned) const;
77
78         /** Sets the minimum size of the editing area, in characters and rows.  This
79         only affects autosizing. */
80         void set_edit_size(unsigned w, unsigned h);
81
82         void set_multiline(bool);
83         bool is_multiline() const { return multiline; }
84
85 private:
86         virtual void rebuild_special(const Part &);
87         virtual void render_special(const Part &, GL::Renderer &) const;
88
89 public:
90         virtual void touch_press(int, int, unsigned);
91         virtual bool key_press(unsigned, unsigned);
92         virtual bool character(wchar_t);
93         virtual void focus_in();
94         virtual void focus_out();
95         virtual bool navigate(Navigation);
96         virtual void animate(const Time::TimeDelta &);
97 private:
98         virtual void on_size_change();
99         virtual void on_style_change();
100
101         void move_edit_position(Navigation, bool);
102         void adjust_edit_position_for_change(unsigned, int);
103         void set_edit_position(unsigned, bool);
104         void erase_selection(bool);
105         void check_cursor_blink();
106         void check_view_range();
107         void slider_value_changed(double);
108 };
109
110 } // namespace GLtk
111 } // namespace Msp
112
113 #endif
114