blob: ab4c512909c8b359f87aa1924014a5f45f1ac3b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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(long /*int*/ id) {
super(id);
}
public NSInputManager(id id) {
super(id);
}
public static NSInputManager currentInputManager() {
long /*int*/ 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);
}
}