/* $Id$ */ #ifndef __MWOO_WIDGET_ENTRY_H__ #define __MWOO_WIDGET_ENTRY_H__ #include namespace MwOO { class Entry : public MwOO::Base { public: Entry(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h); void SetText(const char* value); const char* GetText(void); void SetBackground(const char* value); const char* GetBackground(void); void SetForeground(const char* value); const char* GetForeground(void); }; } // namespace MwOO #endif