blob: bc2d73e0cc48e539196a09d2c4e5138685b12fa8 [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSInputManager extends NSObject {
public NSInputManager() {
super();
}
public NSInputManager(int /*long*/ id) {
super(id);
}
public NSInputManager(id id) {
super(id);
}
public static NSInputManager currentInputManager() {
int /*long*/ result = OS.objc_msgSend(OS.class_NSInputManager, OS.sel_currentInputManager);
return result != 0 ? new NSInputManager(result) : null;
}
public boolean handleMouseEvent(NSEvent theMouseEvent) {
return OS.objc_msgSend(this.id, OS.sel_handleMouseEvent_, theMouseEvent != null ? theMouseEvent.id : 0) != 0;
}
public boolean wantsToHandleMouseEvents() {
return OS.objc_msgSend(this.id, OS.sel_wantsToHandleMouseEvents) != 0;
}
}