summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java
deleted file mode 100644
index 8dad7fa24b..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSCursor.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*******************************************************************************
- * 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 NSCursor extends NSObject {
-
-public NSCursor() {
- super();
-}
-
-public NSCursor(int /*long*/ id) {
- super(id);
-}
-
-public NSCursor(id id) {
- super(id);
-}
-
-public static NSCursor IBeamCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_IBeamCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor arrowCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_arrowCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor crosshairCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_crosshairCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor currentCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_currentCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public NSCursor initWithImage(NSImage newImage, NSPoint aPoint) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithImage_hotSpot_, newImage != null ? newImage.id : 0, aPoint);
- return result == this.id ? this : (result != 0 ? new NSCursor(result) : null);
-}
-
-public static NSCursor pointingHandCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_pointingHandCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static void pop() {
- OS.objc_msgSend(OS.class_NSCursor, OS.sel_pop);
-}
-
-public void push() {
- OS.objc_msgSend(this.id, OS.sel_push);
-}
-
-public static NSCursor resizeDownCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeDownCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor resizeLeftCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeLeftCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor resizeLeftRightCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeLeftRightCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor resizeRightCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeRightCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor resizeUpCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeUpCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public static NSCursor resizeUpDownCursor() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSCursor, OS.sel_resizeUpDownCursor);
- return result != 0 ? new NSCursor(result) : null;
-}
-
-public void set() {
- OS.objc_msgSend(this.id, OS.sel_set);
-}
-
-public static void setHiddenUntilMouseMoves(boolean flag) {
- OS.objc_msgSend(OS.class_NSCursor, OS.sel_setHiddenUntilMouseMoves_, flag);
-}
-
-public void setOnMouseEntered(boolean flag) {
- OS.objc_msgSend(this.id, OS.sel_setOnMouseEntered_, flag);
-}
-
-}