view dwt/internal/cocoa/SWTWindowDelegate.d @ 35:7d135fe0caf2

Ported dwt.graphics.Cursor and dwt.widgets.MenuItem
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sun, 14 Sep 2008 23:32:29 +0200
parents f565d3a95c0a
children 642f460a0908
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     
 * Port to the D programming language:
 *     Jacob Carlborg <jacob.carlborg@gmail.com>
 *******************************************************************************/
module dwt.internal.cocoa.SWTWindowDelegate;

import dwt.internal.cocoa.NSInteger;
import dwt.internal.cocoa.NSObject;
import objc = dwt.internal.objc.runtime;

public class SWTWindowDelegate : NSObject {

    public this () {
        super(null);
    }

    public this (objc.id id) {
        super(id);
    }

    public NSInteger tag () {
        return cast(NSInteger) OS.objc_msgSend(id, OS.sel_tag);
    }

    public void setTag (NSInteger tag) {
        OS.objc_msgSend(id, OS.sel_setTag_1, tag);
    }

}