Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSText.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSText.java128
1 files changed, 0 insertions, 128 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSText.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSText.java
deleted file mode 100644
index d995f8fbf2..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSText.java
+++ /dev/null
@@ -1,128 +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 NSText extends NSView {
-
-public NSText() {
- super();
-}
-
-public NSText(int /*long*/ id) {
- super(id);
-}
-
-public NSText(id id) {
- super(id);
-}
-
-public void copy(id sender) {
- OS.objc_msgSend(this.id, OS.sel_copy_, sender != null ? sender.id : 0);
-}
-
-public void cut(id sender) {
- OS.objc_msgSend(this.id, OS.sel_cut_, sender != null ? sender.id : 0);
-}
-
-public id delegate() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_delegate);
- return result != 0 ? new id(result) : null;
-}
-
-public NSFont font() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_font);
- return result != 0 ? new NSFont(result) : null;
-}
-
-public void paste(id sender) {
- OS.objc_msgSend(this.id, OS.sel_paste_, sender != null ? sender.id : 0);
-}
-
-public void replaceCharactersInRange(NSRange range, NSString aString) {
- OS.objc_msgSend(this.id, OS.sel_replaceCharactersInRange_withString_, range, aString != null ? aString.id : 0);
-}
-
-public void scrollRangeToVisible(NSRange range) {
- OS.objc_msgSend(this.id, OS.sel_scrollRangeToVisible_, range);
-}
-
-public void selectAll(id sender) {
- OS.objc_msgSend(this.id, OS.sel_selectAll_, sender != null ? sender.id : 0);
-}
-
-public NSRange selectedRange() {
- NSRange result = new NSRange();
- OS.objc_msgSend_stret(result, this.id, OS.sel_selectedRange);
- return result;
-}
-
-public void setAlignment(int /*long*/ mode) {
- OS.objc_msgSend(this.id, OS.sel_setAlignment_, mode);
-}
-
-public void setBackgroundColor(NSColor color) {
- OS.objc_msgSend(this.id, OS.sel_setBackgroundColor_, color != null ? color.id : 0);
-}
-
-public void setDelegate(id anObject) {
- OS.objc_msgSend(this.id, OS.sel_setDelegate_, anObject != null ? anObject.id : 0);
-}
-
-public void setDrawsBackground(boolean flag) {
- OS.objc_msgSend(this.id, OS.sel_setDrawsBackground_, flag);
-}
-
-public void setEditable(boolean flag) {
- OS.objc_msgSend(this.id, OS.sel_setEditable_, flag);
-}
-
-public void setFont(NSFont obj) {
- OS.objc_msgSend(this.id, OS.sel_setFont_, obj != null ? obj.id : 0);
-}
-
-public void setHorizontallyResizable(boolean flag) {
- OS.objc_msgSend(this.id, OS.sel_setHorizontallyResizable_, flag);
-}
-
-public void setMaxSize(NSSize newMaxSize) {
- OS.objc_msgSend(this.id, OS.sel_setMaxSize_, newMaxSize);
-}
-
-public void setMinSize(NSSize newMinSize) {
- OS.objc_msgSend(this.id, OS.sel_setMinSize_, newMinSize);
-}
-
-public void setSelectable(boolean flag) {
- OS.objc_msgSend(this.id, OS.sel_setSelectable_, flag);
-}
-
-public void setSelectedRange(NSRange range) {
- OS.objc_msgSend(this.id, OS.sel_setSelectedRange_, range);
-}
-
-public void setString(NSString string) {
- OS.objc_msgSend(this.id, OS.sel_setString_, string != null ? string.id : 0);
-}
-
-public void setTextColor(NSColor color) {
- OS.objc_msgSend(this.id, OS.sel_setTextColor_, color != null ? color.id : 0);
-}
-
-public void sizeToFit() {
- OS.objc_msgSend(this.id, OS.sel_sizeToFit);
-}
-
-public NSString string() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_string);
- return result != 0 ? new NSString(result) : null;
-}
-
-}

Back to the top