00001 #ifndef TEXTPANEL_H_ 00002 #define TEXTPANEL_H_ 00003 00004 #include "ifc/EditorWidget.h" 00005 00006 namespace gtkutil 00007 { 00008 00009 class TextPanel: public EditorWidget 00010 { 00011 // Main widget 00012 GtkWidget* _widget; 00013 00014 protected: 00015 00016 /* gtkutil::Widget implementation */ 00017 GtkWidget* _getWidget () const; 00018 00019 public: 00020 00024 TextPanel (); 00025 00029 ~TextPanel (); 00030 00031 /* gtkutil::EditorWidget implementation */ 00032 void setValue (const std::string& value); 00033 std::string getValue () const; 00034 }; 00035 } 00036 00037 #endif /*TEXTPANEL_H_*/