Uses of Class
org.eclipse.swt.graphics.Font

Packages that use Font
org.eclipse.ercp.swt.mobile This package contains classes which are suitable for mobile devices. 
org.eclipse.ercp.update.views   
org.eclipse.jface.preference Provides a framework for preferences. 
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images. 
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
org.eclipse.swt.graphics SWT graphics classes. 
org.eclipse.swt.widgets Optional Expanded eSWT Widgets This package includes widgets which are in the Expanded portion of eSWT. 
 

Uses of Font in org.eclipse.ercp.swt.mobile
 

Methods in org.eclipse.ercp.swt.mobile with parameters of type Font
 void ListBox.setFont(Font font)
          Sets the font for the details text of an item.
 void ListBox.setHeadingFont(Font font)
          Sets the font for the heading text of an item.
 

Uses of Font in org.eclipse.ercp.update.views
 

Methods in org.eclipse.ercp.update.views with parameters of type Font
 void WrappedLabel.setFont(Font labelFont)
           
 

Uses of Font in org.eclipse.jface.preference
 

Methods in org.eclipse.jface.preference with parameters of type Font
protected  Composite PreferencePage.createNoteComposite(Font font, Composite composite, java.lang.String title, java.lang.String message)
          Creates a composite with a highlighted Note entry and a message text.
 

Uses of Font in org.eclipse.jface.resource
 

Methods in org.eclipse.jface.resource that return Font
abstract  Font FontDescriptor.createFont(Device device)
          Creates the Font described by this descriptor.
 Font ResourceManager.createFont(FontDescriptor descriptor)
          Returns the Font described by the given FontDescriptor.
 Font FontRegistry.defaultFont()
          Returns the default font data.
 Font FontRegistry.get(java.lang.String symbolicName)
          Returns the font associated with the given symbolic font name.
static Font JFaceResources.getBannerFont()
          Returns the JFace's banner font.
 Font FontRegistry.getBold(java.lang.String symbolicName)
          Returns the bold font associated with the given symbolic font name.
static Font JFaceResources.getDefaultFont()
          Returns the JFace's standard font.
static Font JFaceResources.getDialogFont()
          Returns the JFace's dialog font.
static Font JFaceResources.getFont(java.lang.String symbolicName)
          Returns the font in JFace's font registry with the given symbolic font name.
static Font JFaceResources.getHeaderFont()
          Returns the JFace's header font.
 Font FontRegistry.getItalic(java.lang.String symbolicName)
          Returns the italic font associated with the given symbolic font name.
static Font JFaceResources.getTextFont()
          Returns the JFace's text font.
static Font JFaceResources.getViewerFont()
          Deprecated. This font is not in use
 

Methods in org.eclipse.jface.resource with parameters of type Font
static FontDescriptor FontDescriptor.createFrom(Font font)
          Creates a FontDescriptor that describes an existing font.
static FontDescriptor FontDescriptor.createFrom(Font font, Device originalDevice)
          Creates a FontDescriptor that describes an existing font.
abstract  void FontDescriptor.destroyFont(Font previouslyCreatedFont)
          Deallocates anything that was allocated by createFont, given a font that was allocated by an equal FontDescriptor.
 

Uses of Font in org.eclipse.jface.viewers
 

Methods in org.eclipse.jface.viewers that return Font
 Font IFontDecorator.decorateFont(java.lang.Object element)
          Return the font for element or null if there is not one.
 Font ViewerLabel.getFont()
          Get the font.
 Font DecoratingLabelProvider.getFont(java.lang.Object element)
           
 Font IFontProvider.getFont(java.lang.Object element)
          Provides a font for the given element.
 Font ITableFontProvider.getFont(java.lang.Object element, int columnIndex)
          Provides a font for the given element at index columnIndex.
 

Methods in org.eclipse.jface.viewers with parameters of type Font
 void IDecoration.setFont(Font font)
          Set the font for this decoration.
 void ViewerLabel.setFont(Font font)
          Set the font.
 

Uses of Font in org.eclipse.swt.graphics
 

Methods in org.eclipse.swt.graphics that return Font
 Font GC.getFont()
          Returns the font currently being used by the receiver to draw and measure text.
 Font Device.getSystemFont()
          Returns a reasonable font for applications to use.
 

Methods in org.eclipse.swt.graphics with parameters of type Font
 void GC.setFont(Font font)
          Sets the font which will be used by the receiver to draw and measure text to the argument.
 

Uses of Font in org.eclipse.swt.widgets
 

Methods in org.eclipse.swt.widgets that return Font
 Font Control.getFont()
          Returns the font that the receiver will use to paint textual information.
 Font TableItem.getFont()
          Returns the font that the receiver will use to paint textual information for this item.
 Font TreeItem.getFont()
          Returns the font that the receiver will use to paint textual information for this item.
 Font TableItem.getFont(int index)
          Returns the font that the receiver will use to paint textual information for the specified cell in this item.
 Font Display.getSystemFont()
          Returns a reasonable font for applications to use.
 

Methods in org.eclipse.swt.widgets with parameters of type Font
 void Control.setFont(Font font)
          Sets the font that the receiver will use to paint textual information to the font specified by the argument, or to the default font for that kind of control if the argument is null.
 void TableItem.setFont(Font font)
          Sets the font that the receiver will use to paint textual information for this item to the font specified by the argument, or to the default font for that kind of control if the argument is null.
 void TreeItem.setFont(Font font)
          Sets the font that the receiver will use to paint textual information for this item to the font specified by the argument, or to the default font for that kind of control if the argument is null.
 void TableItem.setFont(int index, Font font)
          Sets the font that the receiver will use to paint textual information for the specified cell in this item to the font specified by the argument, or to the default font for that kind of control if the argument is null.