]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/entry.h
Style update: add spaces around assignments
[libs/gltk.git] / source / entry.h
index b09ecb1f024d131161d76771d6b1a5ff7dd33059..0ff5466a613e11bcd545002b4409727b253ef9ef 100644 (file)
@@ -1,26 +1,57 @@
+/* $Id$
+
+This file is part of libmspgltk
+Copyright © 2007-2010  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef MSP_GLTK_ENTRY_H_
 #define MSP_GLTK_ENTRY_H_
 
+#include "text.h"
 #include "widget.h"
 
 namespace Msp {
 namespace GLtk {
 
+/**
+Text entry field.
+
+Special parts:
+
+  text    The current text of the widget.  Graphics are ignored.
+  cursor  Indicates the current input position.  Fill_x is ignored.
+*/
 class Entry: public Widget
 {
 public:
+       class Loader: public Widget::Loader
+       {
+       public:
+               Loader(Entry &);
+       };
+
+private:
+       Text text;
+       bool multiline;
+       unsigned edit_pos;
+
+public:
+       sigc::signal<void> signal_enter;
+
        Entry(const Resources &, const std::string & =std::string());
+
        void set_text(const std::string &);
-       void key_press(unsigned, unsigned, wchar_t);
-       void focus_in();
-       void focus_out();
+       const std::string &get_text() const { return text.get(); }
+       void set_multiline(bool);
+       bool is_multiline() const { return multiline; }
+
+       virtual void key_press(unsigned, unsigned, wchar_t);
 private:
-       std::string text;
-       unsigned edit_pos;
-       bool active;
+       virtual const char *get_class() const { return "entry"; }
+       virtual void render_special(const Part &) const;
 
-       const char *get_class() const { return "entry"; }
-       void render_part(const Part &) const;
+       virtual void on_style_change();
 };
 
 } // namespace GLtk