summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java147
1 files changed, 147 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java
new file mode 100644
index 0000000000..cbc51fe8c3
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.java
@@ -0,0 +1,147 @@
+/*******************************************************************************
+ * 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 NSResponder extends NSObject {
+
+public NSResponder() {
+ super();
+}
+
+public NSResponder(int /*long*/ id) {
+ super(id);
+}
+
+public NSResponder(id id) {
+ super(id);
+}
+
+public boolean acceptsFirstResponder() {
+ return OS.objc_msgSend_bool(this.id, OS.sel_acceptsFirstResponder);
+}
+
+public boolean becomeFirstResponder() {
+ return OS.objc_msgSend_bool(this.id, OS.sel_becomeFirstResponder);
+}
+
+public void cursorUpdate(NSEvent event) {
+ OS.objc_msgSend(this.id, OS.sel_cursorUpdate_, event != null ? event.id : 0);
+}
+
+public void doCommandBySelector(int /*long*/ aSelector) {
+ OS.objc_msgSend(this.id, OS.sel_doCommandBySelector_, aSelector);
+}
+
+public void flagsChanged(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_flagsChanged_, theEvent != null ? theEvent.id : 0);
+}
+
+public void helpRequested(NSEvent eventPtr) {
+ OS.objc_msgSend(this.id, OS.sel_helpRequested_, eventPtr != null ? eventPtr.id : 0);
+}
+
+public void insertText(id insertString) {
+ OS.objc_msgSend(this.id, OS.sel_insertText_, insertString != null ? insertString.id : 0);
+}
+
+public void interpretKeyEvents(NSArray eventArray) {
+ OS.objc_msgSend(this.id, OS.sel_interpretKeyEvents_, eventArray != null ? eventArray.id : 0);
+}
+
+public void keyDown(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_keyDown_, theEvent != null ? theEvent.id : 0);
+}
+
+public void keyUp(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_keyUp_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseDown(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseDown_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseDragged(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseDragged_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseEntered(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseEntered_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseExited(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseExited_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseMoved(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseMoved_, theEvent != null ? theEvent.id : 0);
+}
+
+public void mouseUp(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_mouseUp_, theEvent != null ? theEvent.id : 0);
+}
+
+public void moveToBeginningOfParagraph(id sender) {
+ OS.objc_msgSend(this.id, OS.sel_moveToBeginningOfParagraph_, sender != null ? sender.id : 0);
+}
+
+public void moveToEndOfParagraph(id sender) {
+ OS.objc_msgSend(this.id, OS.sel_moveToEndOfParagraph_, sender != null ? sender.id : 0);
+}
+
+public void moveUp(id sender) {
+ OS.objc_msgSend(this.id, OS.sel_moveUp_, sender != null ? sender.id : 0);
+}
+
+public void noResponderFor(int /*long*/ eventSelector) {
+ OS.objc_msgSend(this.id, OS.sel_noResponderFor_, eventSelector);
+}
+
+public void otherMouseDown(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_otherMouseDown_, theEvent != null ? theEvent.id : 0);
+}
+
+public void otherMouseDragged(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_otherMouseDragged_, theEvent != null ? theEvent.id : 0);
+}
+
+public void otherMouseUp(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_otherMouseUp_, theEvent != null ? theEvent.id : 0);
+}
+
+public void pageDown(id sender) {
+ OS.objc_msgSend(this.id, OS.sel_pageDown_, sender != null ? sender.id : 0);
+}
+
+public void pageUp(id sender) {
+ OS.objc_msgSend(this.id, OS.sel_pageUp_, sender != null ? sender.id : 0);
+}
+
+public boolean resignFirstResponder() {
+ return OS.objc_msgSend_bool(this.id, OS.sel_resignFirstResponder);
+}
+
+public void rightMouseDown(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_rightMouseDown_, theEvent != null ? theEvent.id : 0);
+}
+
+public void rightMouseDragged(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_rightMouseDragged_, theEvent != null ? theEvent.id : 0);
+}
+
+public void rightMouseUp(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_rightMouseUp_, theEvent != null ? theEvent.id : 0);
+}
+
+public void scrollWheel(NSEvent theEvent) {
+ OS.objc_msgSend(this.id, OS.sel_scrollWheel_, theEvent != null ? theEvent.id : 0);
+}
+
+}