Uses of Class
org.gjt.sp.jedit.syntax.SyntaxStyle

Packages that use SyntaxStyle
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.gui Various GUI controls and dialog boxes. 
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
org.gjt.sp.jedit.textarea Since jEdit 4.2, many TextArea classes have been split into a base and derived class. 
org.gjt.sp.util Utility classes used by jEdit but that do not depend on jEdit itself. 
 

Uses of SyntaxStyle in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return SyntaxStyle
static SyntaxStyle[] GUIUtilities.loadStyles(java.lang.String family, int size)
          Deprecated. use SyntaxUtilities.loadStyles(String,int)
static SyntaxStyle[] GUIUtilities.loadStyles(java.lang.String family, int size, boolean color)
          Deprecated. use SyntaxUtilities.loadStyles(String,int,boolean)
static SyntaxStyle GUIUtilities.parseStyle(java.lang.String str, java.lang.String family, int size)
          Converts a style string to a style object.
static SyntaxStyle GUIUtilities.parseStyle(java.lang.String str, java.lang.String family, int size, boolean color)
          Deprecated. use SyntaxUtilities.parseStyle(String,String,int,boolean)
 

Methods in org.gjt.sp.jedit with parameters of type SyntaxStyle
static java.lang.String GUIUtilities.getStyleString(SyntaxStyle style)
          Converts a style into it's string representation.
 

Uses of SyntaxStyle in org.gjt.sp.jedit.gui
 

Methods in org.gjt.sp.jedit.gui that return SyntaxStyle
 SyntaxStyle StyleEditor.getStyle()
           
 

Constructors in org.gjt.sp.jedit.gui with parameters of type SyntaxStyle
StyleEditor(javax.swing.JDialog parent, SyntaxStyle style, java.lang.String styleName)
           
StyleEditor(javax.swing.JFrame parent, SyntaxStyle style, java.lang.String styleName)
           
 

Uses of SyntaxStyle in org.gjt.sp.jedit.syntax
 

Fields in org.gjt.sp.jedit.syntax declared as SyntaxStyle
 SyntaxStyle Chunk.style
           
 

Methods in org.gjt.sp.jedit.syntax with parameters of type SyntaxStyle
 void DisplayTokenHandler.init(SyntaxStyle[] styles, java.awt.font.FontRenderContext fontRenderContext, javax.swing.text.TabExpander expander, java.util.List<Chunk> out, float wrapMargin)
          Init some variables that will be used when marking tokens.
 

Constructors in org.gjt.sp.jedit.syntax with parameters of type SyntaxStyle
Chunk(byte id, int offset, int length, ParserRuleSet rules, SyntaxStyle[] styles, byte defaultID)
           
 

Uses of SyntaxStyle in org.gjt.sp.jedit.textarea
 

Methods in org.gjt.sp.jedit.textarea that return SyntaxStyle
 SyntaxStyle[] TextAreaPainter.getFoldLineStyle()
          Returns the fold line style.
 SyntaxStyle[] TextAreaPainter.getStyles()
          Returns the syntax styles used to paint colorized text.
 

Methods in org.gjt.sp.jedit.textarea with parameters of type SyntaxStyle
 void TextAreaPainter.setFoldLineStyle(SyntaxStyle[] foldLineStyle)
          Sets the fold line style.
 void TextAreaPainter.setStyles(SyntaxStyle[] styles)
          Sets the syntax styles used to paint colorized text.
 

Uses of SyntaxStyle in org.gjt.sp.util
 

Methods in org.gjt.sp.util that return SyntaxStyle
static SyntaxStyle[] SyntaxUtilities.loadStyles(java.lang.String family, int size)
          Loads the syntax styles from the properties, giving them the specified base font family and size.
static SyntaxStyle[] SyntaxUtilities.loadStyles(java.lang.String family, int size, boolean color)
          Loads the syntax styles from the properties, giving them the specified base font family and size.
static SyntaxStyle SyntaxUtilities.parseStyle(java.lang.String str, java.lang.String family, int size, boolean color)
          Converts a style string to a style object.
static SyntaxStyle SyntaxUtilities.parseStyle(java.lang.String str, java.lang.String family, int size, boolean color, java.awt.Color defaultFgColor)
          Converts a style string to a style object.