summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java
deleted file mode 100644
index 0051f13796..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java
+++ /dev/null
@@ -1,65 +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 NSFontManager extends NSObject {
-
-public NSFontManager() {
- super();
-}
-
-public NSFontManager(int /*long*/ id) {
- super(id);
-}
-
-public NSFontManager(id id) {
- super(id);
-}
-
-public NSArray availableFontFamilies() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_availableFontFamilies);
- return result != 0 ? new NSArray(result) : null;
-}
-
-public NSArray availableFonts() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_availableFonts);
- return result != 0 ? new NSArray(result) : null;
-}
-
-public NSArray availableMembersOfFontFamily(NSString fam) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_availableMembersOfFontFamily_, fam != null ? fam.id : 0);
- return result != 0 ? new NSArray(result) : null;
-}
-
-public NSFont convertFont(NSFont fontObj, int /*long*/ trait) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_convertFont_toHaveTrait_, fontObj != null ? fontObj.id : 0, trait);
- return result != 0 ? new NSFont(result) : null;
-}
-
-public NSFont fontWithFamily(NSString family, int /*long*/ traits, int /*long*/ weight, float /*double*/ size) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_fontWithFamily_traits_weight_size_, family != null ? family.id : 0, traits, weight, size);
- return result != 0 ? new NSFont(result) : null;
-}
-
-public static NSFontManager sharedFontManager() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSFontManager, OS.sel_sharedFontManager);
- return result != 0 ? new NSFontManager(result) : null;
-}
-
-public int /*long*/ traitsOfFont(NSFont fontObj) {
- return OS.objc_msgSend(this.id, OS.sel_traitsOfFont_, fontObj != null ? fontObj.id : 0);
-}
-
-public int /*long*/ weightOfFont(NSFont fontObj) {
- return OS.objc_msgSend(this.id, OS.sel_weightOfFont_, fontObj != null ? fontObj.id : 0);
-}
-
-}