]> git.tdb.fi Git - libs/gltk.git/blob - source/entry.h
Some new datafile keywords
[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> signal_enter;
35
36 private:
37         Text text;
38         bool multiline;
39         unsigned edit_width;
40         unsigned edit_height;
41         unsigned edit_pos;
42         unsigned first_row;
43         unsigned visible_rows;
44         const Part *text_part;
45         VSlider *slider;
46         bool got_key_press;
47
48 public:
49         Entry(const std::string & = std::string());
50
51         virtual const char *get_class() const { return "entry"; }
52
53 private:
54         virtual void autosize_special(const Part &, Geometry &);
55
56 public:
57         void set_text(const std::string &);
58         const std::string &get_text() const { return text.get(); }
59
60         /** Sets the minimum size of the editing area, in characters and rows.  This
61         only affects autosizing. */
62         void set_edit_size(unsigned w, unsigned h);
63
64         void set_multiline(bool);
65         bool is_multiline() const { return multiline; }
66
67 private:
68         virtual void rebuild_special(const Part &);
69         virtual void render_special(const Part &, GL::Renderer &) const;
70
71 public:
72         virtual void key_press(unsigned, unsigned);
73         virtual void character(wchar_t);
74         virtual void focus_out();
75 private:
76         virtual void on_geometry_change();
77         virtual void on_style_change();
78
79         void set_edit_position(unsigned);
80         void reposition_slider();
81         void check_view_range();
82         void slider_value_changed(double);
83 };
84
85 } // namespace GLtk
86 } // namespace Msp
87
88 #endif
89