2005-02-23 21:43:18 +00:00
|
|
|
#ifndef __GSRunLoopWatcher_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
#define __GSRunLoopWatcher_h_GNUSTEP_BASE_INCLUDE
|
2009-02-26 11:09:05 +00:00
|
|
|
/**
|
|
|
|
Copyright (C) 2008-2009 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
By: Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2019-12-09 23:36:00 +00:00
|
|
|
Lesser General Public License for more details.
|
2009-02-26 11:09:05 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free
|
2024-11-07 13:37:59 +00:00
|
|
|
Software Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 USA.
|
2009-02-26 11:09:05 +00:00
|
|
|
|
|
|
|
$Date$ $Revision$
|
|
|
|
*/
|
2005-02-23 21:43:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The 'GSRunLoopWatcher' class was written to permit the (relatively)
|
|
|
|
* easy addition of new events to be watched for in the runloop.
|
|
|
|
*
|
|
|
|
* To add a new type of event, the 'RunLoopEventType' enumeration must be
|
|
|
|
* extended, and the methods must be modified to handle the new type.
|
|
|
|
*
|
|
|
|
* The internal variables if the GSRunLoopWatcher are used as follows -
|
|
|
|
*
|
|
|
|
* If '_invalidated' is set, the watcher should be disabled and should
|
|
|
|
* be removed from the runloop when next encountered.
|
|
|
|
*
|
2006-03-21 15:33:05 +00:00
|
|
|
* If 'checkBlocking' is set, the run loop should ask the watcher
|
|
|
|
* whether it should block and/or trigger each loop iteration.
|
|
|
|
*
|
2005-02-23 21:43:18 +00:00
|
|
|
* The 'data' variable is used to identify the resource/event that the
|
2006-03-21 15:33:05 +00:00
|
|
|
* watcher is interested in. Its meaning is system dependent.
|
2005-02-23 21:43:18 +00:00
|
|
|
*
|
|
|
|
* The 'receiver' is the object which should be told when the event
|
2021-11-11 10:01:52 +00:00
|
|
|
* occurs. This object is NOT retained so that we can avoid retain
|
|
|
|
* loops. It is the responsibility of the receiver to invalidate
|
|
|
|
* the watcher before it is destroyed.
|
2005-02-23 21:43:18 +00:00
|
|
|
*
|
|
|
|
* The 'type' variable indentifies the type of event watched for.
|
|
|
|
* NSRunLoops [-acceptInputForMode: beforeDate: ] method MUST contain
|
|
|
|
* code to watch for events of each type.
|
|
|
|
*
|
|
|
|
* NB. This class is private to NSRunLoop and must not be subclassed.
|
|
|
|
*/
|
|
|
|
|
2012-03-01 09:14:08 +00:00
|
|
|
#import "common.h"
|
|
|
|
#import "Foundation/NSRunLoop.h"
|
2005-02-23 21:43:18 +00:00
|
|
|
|
|
|
|
@class NSDate;
|
|
|
|
|
|
|
|
@interface GSRunLoopWatcher: NSObject
|
|
|
|
{
|
|
|
|
@public
|
2006-03-21 15:33:05 +00:00
|
|
|
BOOL _invalidated;
|
|
|
|
BOOL checkBlocking;
|
2005-02-23 21:43:18 +00:00
|
|
|
void *data;
|
|
|
|
id receiver;
|
|
|
|
RunLoopEventType type;
|
|
|
|
unsigned count;
|
|
|
|
}
|
|
|
|
- (id) initWithType: (RunLoopEventType)type
|
|
|
|
receiver: (id)anObj
|
|
|
|
data: (void*)data;
|
2006-03-21 15:33:05 +00:00
|
|
|
/**
|
|
|
|
* Returns a boolean indicating whether the receiver needs the loop to
|
|
|
|
* block to wait for input, or whether the loop can run through at once.
|
|
|
|
* It also sets *trigger to say whether the receiver should be triggered
|
|
|
|
* once the input test has been done or not.
|
2005-02-23 21:43:18 +00:00
|
|
|
*/
|
2006-03-21 15:33:05 +00:00
|
|
|
- (BOOL) runLoopShouldBlock: (BOOL*)trigger;
|
|
|
|
@end
|
2005-02-23 21:43:18 +00:00
|
|
|
|
|
|
|
#endif /* __GSRunLoopWatcher_h_GNUSTEP_BASE_INCLUDE */
|