mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
167 lines
2.8 KiB
R
167 lines
2.8 KiB
R
#include <Array.h>
|
|
#include "event.h"
|
|
#include "qwaq-draw.h"
|
|
#include "qwaq-garray.h"
|
|
#include "qwaq-group.h"
|
|
#include "qwaq-view.h"
|
|
|
|
@implementation Group
|
|
|
|
-initWithContext: (id<TextContext>) context owner: (View *) owner
|
|
{
|
|
if (!(self = [super init])) {
|
|
return nil;
|
|
}
|
|
self.owner = owner;
|
|
self.context = context;
|
|
focused = -1;
|
|
views = [[Array array] retain];
|
|
return self;
|
|
}
|
|
|
|
-(void)dealloc
|
|
{
|
|
[views release];
|
|
}
|
|
|
|
-insert: (View *) view
|
|
{
|
|
[views addObject: view];
|
|
[view setOwner: self];
|
|
[view setContext: context];
|
|
return self;
|
|
}
|
|
|
|
-remove: (View *) view
|
|
{
|
|
int index = [views indexOfObject: view];
|
|
if (index != NotFound) {
|
|
if (focused == index) {
|
|
focused = -1;
|
|
} else if (focused > index) {
|
|
focused--;
|
|
}
|
|
[views removeObjectAtIndex: index];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
-(Rect) rect
|
|
{
|
|
if (owner) {
|
|
return [owner rect];
|
|
}
|
|
return {[self origin], [self size]};
|
|
}
|
|
|
|
-(Point) origin
|
|
{
|
|
if (owner) {
|
|
return [owner origin];
|
|
}
|
|
return {0, 0};
|
|
}
|
|
|
|
-(Extent) size
|
|
{
|
|
if (owner) {
|
|
return [owner size];
|
|
}
|
|
return [context size];
|
|
}
|
|
|
|
static BOOL
|
|
not_dont_draw (id aView, void *aGroup)
|
|
{
|
|
View *view = aView;
|
|
Group *group = (Group *) aGroup;
|
|
|
|
return !([view options] & ofDontDraw);
|
|
}
|
|
|
|
-draw
|
|
{
|
|
[views makeObjectsPerformSelector: @selector(draw)
|
|
if: not_dont_draw
|
|
with: self];
|
|
return self;
|
|
}
|
|
|
|
-redraw
|
|
{
|
|
if (owner) {
|
|
[owner redraw];
|
|
} else {
|
|
[self draw];
|
|
if (__obj_responds_to (context, @selector(refresh))) {
|
|
[(id)context refresh];
|
|
}
|
|
}
|
|
return self;
|
|
}
|
|
|
|
static View *
|
|
find_mouse_view(Group *group, Point pos)
|
|
{
|
|
for (int i = [group.views count]; i--; ) {
|
|
View *v = [group.views objectAtIndex: i];
|
|
if ([v containsPoint: pos]) {
|
|
return v;
|
|
}
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
-handleEvent: (qwaq_event_t *) event
|
|
{
|
|
if (event.what & qe_focused) {
|
|
if (focused >= 0) {
|
|
[[views objectAtIndex:focused] handleEvent: event];
|
|
}
|
|
} else if (event.what & qe_positional) {
|
|
Point origin = {};
|
|
if (owner) {
|
|
origin = [owner origin];
|
|
}
|
|
event.mouse.x -= origin.x;
|
|
event.mouse.y -= origin.y;
|
|
Point pos = {event.mouse.x, event.mouse.y};
|
|
if (mouse_grabbed) {
|
|
[mouse_grabbed handleEvent: event];
|
|
} else {
|
|
if (mouse_within && ![mouse_within containsPoint: pos]) {
|
|
[mouse_within onMouseLeave: pos];
|
|
mouse_within = nil;
|
|
}
|
|
if (!mouse_within) {
|
|
mouse_within = find_mouse_view (self, pos);
|
|
if (mouse_within) {
|
|
[mouse_within onMouseEnter: pos];
|
|
}
|
|
}
|
|
if (mouse_within) {
|
|
[mouse_within handleEvent: event];
|
|
}
|
|
}
|
|
event.mouse.x += origin.x;
|
|
event.mouse.y += origin.y;
|
|
} else {
|
|
// broadcast
|
|
[views makeObjectsPerformSelector: @selector(draw) withObject: event];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
-(void) grabMouse
|
|
{
|
|
mouse_grabbed = mouse_within;
|
|
[owner grabMouse];
|
|
}
|
|
|
|
-(void) releaseMouse
|
|
{
|
|
mouse_grabbed = nil;
|
|
[owner releaseMouse];
|
|
}
|
|
|
|
@end
|