comparison dwt/internal/cocoa/NSNotificationCenter.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents f565d3a95c0a
children
comparison
equal deleted inserted replaced
44:ca5e494f2bbf 45:d8635bb48c7c
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (c) 2007 IBM Corporation and others. 2 * Copyright (c) 2000, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0 4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * 10 *
11 * Port to the D programming language: 11 * Port to the D programming language:
12 * Jacob Carlborg <jacob.carlborg@gmail.com> 12 * Jacob Carlborg <doob@me.com>
13 *******************************************************************************/ 13 *******************************************************************************/
14 module dwt.internal.cocoa.NSNotificationCenter; 14 module dwt.internal.cocoa.NSNotificationCenter;
15 15
16 import dwt.internal.cocoa.id; 16 import dwt.dwthelper.utils;
17 import dwt.internal.cocoa.NSDictionary; 17 import cocoa = dwt.internal.cocoa.id;
18 import dwt.internal.cocoa.NSObject; 18 import dwt.internal.cocoa.NSObject;
19 import dwt.internal.cocoa.NSNotification;
20 import dwt.internal.cocoa.NSString; 19 import dwt.internal.cocoa.NSString;
21 import dwt.internal.cocoa.OS; 20 import dwt.internal.cocoa.OS;
22 import objc = dwt.internal.objc.runtime; 21 import objc = dwt.internal.objc.runtime;
23 22
24 public class NSNotificationCenter : NSObject 23 public class NSNotificationCenter : NSObject {
25 {
26 24
27 public this () 25 public this() {
28 { 26 super();
29 super(); 27 }
30 }
31 28
32 public this (objc.id id) 29 public this(objc.id id) {
33 { 30 super(id);
34 super(id); 31 }
35 }
36 32
37 public void addObserver (id observer, objc.SEL aSelector, NSString aName, id anObject) 33 public this(cocoa.id id) {
38 { 34 super(id);
39 OS.objc_msgSend(this.id_, OS.sel_addObserver_1selector_1name_1object_1, observer !is null ? observer.id_ : null, aSelector, 35 }
40 aName !is null ? aName.id_ : null, anObject !is null ? anObject.id_ : null);
41 }
42 36
43 public static NSNotificationCenter defaultCenter () 37 public void addObserver(cocoa.id observer, objc.SEL aSelector, NSString aName, cocoa.id anObject) {
44 { 38 OS.objc_msgSend(this.id, OS.sel_addObserver_selector_name_object_, observer !is null ? observer.id : null, aSelector, aName !is null ? aName.id : null, anObject !is null ? anObject.id : null);
45 objc.id result = OS.objc_msgSend(OS.class_NSNotificationCenter, OS.sel_defaultCenter); 39 }
46 return result !is null ? new NSNotificationCenter(result) : null;
47 }
48 40
49 public void postNotification (NSNotification notification) 41 public static NSNotificationCenter defaultCenter() {
50 { 42 objc.id result = OS.objc_msgSend(OS.class_NSNotificationCenter, OS.sel_defaultCenter);
51 OS.objc_msgSend(this.id_, OS.sel_postNotification_1, notification !is null ? notification.id_ : null); 43 return result !is null ? new NSNotificationCenter(result) : null;
52 } 44 }
53 45
54 public void postNotificationName_object_ (NSString aName, id anObject) 46 public void removeObserver(cocoa.id observer) {
55 { 47 OS.objc_msgSend(this.id, OS.sel_removeObserver_, observer !is null ? observer.id : null);
56 OS.objc_msgSend(this.id_, OS.sel_postNotificationName_1object_1, aName !is null ? aName.id_ : null, anObject !is null ? anObject.id_ : null); 48 }
57 }
58
59 public void postNotificationName_object_userInfo_ (NSString aName, id anObject, NSDictionary aUserInfo)
60 {
61 OS.objc_msgSend(this.id_, OS.sel_postNotificationName_1object_1userInfo_1, aName !is null ? aName.id_ : null,
62 anObject !is null ? anObject.id_ : null, aUserInfo !is null ? aUserInfo.id_ : null);
63 }
64
65 public void removeObserver_ (id observer)
66 {
67 OS.objc_msgSend(this.id_, OS.sel_removeObserver_1, observer !is null ? observer.id_ : null);
68 }
69
70 public void removeObserver_name_object_ (id observer, NSString aName, id anObject)
71 {
72 OS.objc_msgSend(this.id_, OS.sel_removeObserver_1name_1object_1, observer !is null ? observer.id_ : null, aName !is null ? aName.id_ : null,
73 anObject !is null ? anObject.id_ : null);
74 }
75 49
76 } 50 }