quakeforge/ruamoko/gui/Text.r

42 lines
562 B
R
Raw Normal View History

#include <gui/Text.h>
#include <string.h>
#include <draw.h>
2004-02-04 02:35:57 +00:00
@implementation Text
- (id) init
{
text = str_new ();
return self;
}
- (void) dealloc
{
str_free (text);
[super dealloc];
}
2004-02-04 02:35:57 +00:00
- (id) initWithBounds: (Rect)aRect
{
return [self initWithBounds:aRect text:""];
}
- (id) initWithBounds: (Rect)aRect text:(string)str
{
self = [super initWithBounds:aRect];
str_copy (text, str);
return self;
}
- (void) setText: (string)str
{
str_copy (text, str);
}
- (void) draw
{
local int maxlen = xlen / 8;
2004-02-04 02:35:57 +00:00
Draw_nString (xabs, yabs, text, maxlen);
}
@end