2004-02-03 08:31:26 +00:00
|
|
|
#include "gui/Size.h"
|
|
|
|
#include "gui/Point.h"
|
|
|
|
#include "gui/Rect.h"
|
|
|
|
#include "gui/View.h"
|
|
|
|
|
|
|
|
@implementation View
|
|
|
|
|
|
|
|
- (id) initWithComponents: (integer)x : (integer)y : (integer)w : (integer)h
|
|
|
|
{
|
2004-02-13 02:51:38 +00:00
|
|
|
self = [self init];
|
2004-02-03 08:31:26 +00:00
|
|
|
xpos = xabs = x;
|
|
|
|
ypos = yabs = y;
|
|
|
|
xlen = w;
|
2004-02-13 05:36:35 +00:00
|
|
|
ylen = h;
|
2004-02-03 08:31:26 +00:00
|
|
|
parent = NIL;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) initWithOrigin: (Point)anOrigin size: (Size)aSize
|
|
|
|
{
|
|
|
|
return [self initWithComponents:anOrigin.x :anOrigin.y
|
|
|
|
:aSize.width :aSize.height];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) initWithBounds: (Rect)aRect
|
|
|
|
{
|
|
|
|
return [self initWithOrigin:aRect.origin size:aRect.size];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setBasePos: (integer) x y: (integer) y
|
|
|
|
{
|
2004-02-04 02:35:57 +00:00
|
|
|
local Point point = [[Point alloc] initWithComponents:x :y];
|
|
|
|
[self setBasePos:point];
|
|
|
|
[point dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setBasePos: (Point)pos
|
|
|
|
{
|
|
|
|
xabs = xpos + pos.x;
|
|
|
|
yabs = ypos + pos.y;
|
2004-02-03 08:31:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
-(void) draw
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|