EditorWidget.h
Go to the documentation of this file.00001 #ifndef EDITORWIDGET_H_
00002 #define EDITORWIDGET_H_
00003
00004 #include "Widget.h"
00005
00006 #include <gtk/gtkwidget.h>
00007 #include <string>
00008
00009 namespace gtkutil
00010 {
00011
00026 class EditorWidget: public Widget
00027 {
00028 public:
00029
00030 virtual ~EditorWidget ()
00031 {
00032 }
00033
00039 virtual void setValue (const std::string& val) = 0;
00040
00044 virtual std::string getValue () const = 0;
00045
00046 };
00047
00048 }
00049
00050 #endif