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

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents 642f460a0908
children
comparison
equal deleted inserted replaced
44:ca5e494f2bbf 45:d8635bb48c7c
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.SWTWindowDelegate; 14 module dwt.internal.cocoa.SWTWindowDelegate;
15 15
16 import dwt.internal.cocoa.NSInteger; 16 import dwt.dwthelper.utils;
17 import dwt.internal.cocoa.NSObject; 17 import dwt.internal.cocoa.NSObject;
18 import dwt.internal.cocoa.OS;
19 import objc = dwt.internal.objc.runtime; 18 import objc = dwt.internal.objc.runtime;
20 19
21 public class SWTWindowDelegate : NSObject { 20 public class SWTWindowDelegate : NSObject {
22 21
23 public this () { 22 public this() {
24 super(null); 23 super(cast(objc.id) null);
25 } 24 }
26 25
27 public this (objc.id id) { 26 public this(objc.id id) {
28 super(id); 27 super(id);
29 } 28 }
30
31 public NSInteger tag () {
32 return cast(NSInteger) OS.objc_msgSend(id_, OS.sel_tag);
33 }
34
35 public void setTag (NSInteger tag) {
36 OS.objc_msgSend(id_, OS.sel_setTag_1, tag);
37 }
38 29
39 } 30 }