view dwt/internal/cocoa/DOMMouseEvent.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
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2008 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 <doob@me.com>
 *******************************************************************************/
module dwt.internal.cocoa.DOMMouseEvent;

import dwt.dwthelper.utils;
import cocoa = dwt.internal.cocoa.id;
import dwt.internal.cocoa.DOMUIEvent;
import dwt.internal.cocoa.OS;
import objc = dwt.internal.objc.runtime;

public class DOMMouseEvent : DOMUIEvent {

public this() {
    super();
}

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

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

public bool altKey() {
    return OS.objc_msgSend_bool(this.id, OS.sel_altKey);
}

public short button() {
    return cast(short)OS.objc_msgSend(this.id, OS.sel_button);
}

public int clientX() {
    return cast(int)/*64*/OS.objc_msgSend(this.id, OS.sel_clientX);
}

public int clientY() {
    return cast(int)/*64*/OS.objc_msgSend(this.id, OS.sel_clientY);
}

public bool ctrlKey() {
    return OS.objc_msgSend_bool(this.id, OS.sel_ctrlKey);
}

public bool metaKey() {
    return OS.objc_msgSend_bool(this.id, OS.sel_metaKey);
}

public bool shiftKey() {
    return OS.objc_msgSend_bool(this.id, OS.sel_shiftKey);
}

}