mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
e472364f51
ease derived class initialization (all allocation can be done in -init). Objective-C rocks :)
74 lines
920 B
R
74 lines
920 B
R
#include "gui/Size.h"
|
|
|
|
@implementation Size
|
|
|
|
- (id) initWithComponents: (integer)w : (integer)h
|
|
{
|
|
self = [self init];
|
|
width = w;
|
|
height = h;
|
|
return self;
|
|
}
|
|
|
|
- (id) initWithSize: (Size)aSize
|
|
{
|
|
self = [self init];
|
|
|
|
if (!self || !aSize)
|
|
return NIL;
|
|
|
|
width = [aSize width];
|
|
height = [aSize height];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (id) copy
|
|
{
|
|
local id myCopy = [super copy];
|
|
|
|
if (!myCopy)
|
|
myCopy = [[self class] alloc];
|
|
|
|
return [myCopy initWithComponents: width : height];
|
|
}
|
|
|
|
- (integer) width
|
|
{
|
|
return width;
|
|
}
|
|
|
|
- (integer) height
|
|
{
|
|
return height;
|
|
}
|
|
|
|
- (void) setSize: (Size)aSize
|
|
{
|
|
width = [aSize width];
|
|
height = [aSize height];
|
|
}
|
|
|
|
- (void) setWidth: (integer) w
|
|
{
|
|
width = w;
|
|
}
|
|
|
|
- (void) setHeight: (integer) h
|
|
{
|
|
height = h;
|
|
}
|
|
|
|
- (void) addSize: (Size)aSize
|
|
{
|
|
width += [aSize width];
|
|
height += [aSize height];
|
|
}
|
|
|
|
- (void) subtractSize: (Size)aSize
|
|
{
|
|
width += [aSize width];
|
|
height += [aSize height];
|
|
}
|
|
|
|
@end
|