blob: 606bf4e86cd84b680fbc7dd872f364c5c9d8398f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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_bool(this.id, OS.sel_handleMouseEvent_, theMouseEvent != null ? theMouseEvent.id : 0);
}
public boolean wantsToHandleMouseEvents() {
return OS.objc_msgSend_bool(this.id, OS.sel_wantsToHandleMouseEvents);
}
}