Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_GUI_TEXTGADGET_H__
00009 #define __SP_GUI_TEXTGADGET_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #ifdef SP_COMPILE_WITH_GUI
00015
00016
00017 #include "GUI/spGUIGadget.hpp"
00018
00019
00020 namespace sp
00021 {
00022 namespace gui
00023 {
00024
00025
00030 class SP_EXPORT GUITextGadget : public GUIGadget
00031 {
00032
00033 public:
00034
00035 GUITextGadget();
00036 ~GUITextGadget();
00037
00038 bool update();
00039 void draw();
00040
00041 };
00042
00043
00044 }
00045
00046 }
00047
00048
00049 #endif
00050
00051 #endif
00052
00053
00054
00055