2004-02-04 02:35:57 +00:00
|
|
|
#ifndef __ruamoko_gui_Text_h
|
|
|
|
#define __ruamoko_gui_Text_h
|
|
|
|
|
2020-03-03 06:24:41 +00:00
|
|
|
#include <gui/View.h>
|
2004-02-04 02:35:57 +00:00
|
|
|
|
2011-07-10 08:33:43 +00:00
|
|
|
/** \addtogroup gui */
|
2020-02-11 06:20:49 +00:00
|
|
|
///@{
|
2011-07-10 08:33:43 +00:00
|
|
|
|
2004-02-04 02:35:57 +00:00
|
|
|
@interface Text: View
|
|
|
|
{
|
|
|
|
@public
|
|
|
|
string text;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) initWithBounds: (Rect)aRect;
|
|
|
|
- (id) initWithBounds: (Rect)aRect text:(string)str;
|
|
|
|
- (void) setText: (string)str;
|
|
|
|
- (void) draw;
|
|
|
|
@end
|
|
|
|
|
2020-02-11 06:20:49 +00:00
|
|
|
///@}
|
2011-07-10 08:33:43 +00:00
|
|
|
|
2004-02-04 02:35:57 +00:00
|
|
|
#endif //__ruamoko_gui_Text_h
|