mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 10:11:03 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13846 72102866-910b-0410-8b05-ffd578937521
126 lines
3.2 KiB
Objective-C
126 lines
3.2 KiB
Objective-C
/** Implementation of NSNotification for GNUstep
|
|
Copyright (C) 1996 Free Software Foundation, Inc.
|
|
|
|
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
|
Created: March 1996
|
|
|
|
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 Library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
<title>NSNotification class reference</title>
|
|
$Date$ $Revision$
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <Foundation/NSNotification.h>
|
|
#include <Foundation/NSCoder.h>
|
|
#include <Foundation/NSString.h>
|
|
|
|
@implementation NSNotification (GNUstep)
|
|
/* <init />
|
|
* Initialise a newly created notification.
|
|
*/
|
|
- (id) initWithName: (NSString*)name
|
|
object: (id)object
|
|
userInfo: (NSDictionary*)info
|
|
{
|
|
_name = [name copyWithZone: GSObjCZone(self)];
|
|
_object = TEST_RETAIN(object);
|
|
_info = TEST_RETAIN(info);
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSNotification
|
|
|
|
|
|
+ (NSNotification*) notificationWithName: (NSString*)name
|
|
object: (id)object
|
|
userInfo: (NSDictionary*)info
|
|
{
|
|
return AUTORELEASE([[self allocWithZone: NSDefaultMallocZone()]
|
|
initWithName: name object: object userInfo: info]);
|
|
}
|
|
|
|
+ (NSNotification*) notificationWithName: (NSString*)name
|
|
object: (id)object
|
|
{
|
|
return [self notificationWithName: name object: object userInfo: nil];
|
|
}
|
|
|
|
|
|
- (id) copyWithZone: (NSZone*)zone
|
|
{
|
|
if (NSShouldRetainWithZone (self, zone))
|
|
{
|
|
return [self retain];
|
|
}
|
|
return [[[self class] allocWithZone: zone] initWithName: _name
|
|
object: _object
|
|
userInfo: _info];
|
|
}
|
|
|
|
- (void) dealloc
|
|
{
|
|
RELEASE(_name);
|
|
TEST_RELEASE(_object);
|
|
TEST_RELEASE(_info);
|
|
[super dealloc];
|
|
}
|
|
|
|
- (NSString*) description
|
|
{
|
|
return [[super description] stringByAppendingFormat:
|
|
@" Name: %@ Object: %@ Info: %@", _name, _object, _info];
|
|
}
|
|
|
|
- (NSString*) name
|
|
{
|
|
return _name;
|
|
}
|
|
|
|
- (id) object
|
|
{
|
|
return _object;
|
|
}
|
|
|
|
- (NSDictionary*) userInfo
|
|
{
|
|
return _info;
|
|
}
|
|
|
|
/*
|
|
* NSCoding protocol - the MacOS-X documentation says it should conform,
|
|
* but how can we meaningfully encode/decode the object and userInfo.
|
|
* We do it anyway - at least it should make sense over DO.
|
|
*/
|
|
- (void) encodeWithCoder: (NSCoder*)aCoder
|
|
{
|
|
[aCoder encodeValueOfObjCType: @encode(id) at: &_name];
|
|
[aCoder encodeValueOfObjCType: @encode(id) at: &_object];
|
|
[aCoder encodeValueOfObjCType: @encode(id) at: &_info];
|
|
}
|
|
|
|
- (id) initWithCoder: (NSCoder*)aCoder
|
|
{
|
|
[aCoder decodeValueOfObjCType: @encode(id) at: &_name];
|
|
[aCoder decodeValueOfObjCType: @encode(id) at: &_object];
|
|
[aCoder decodeValueOfObjCType: @encode(id) at: &_info];
|
|
return self;
|
|
}
|
|
|
|
@end
|