|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.gui.SwingTools
public class SwingTools
This helper class provides some static methods and properties which might be useful for several GUI classes. These methods include
Field Summary | |
---|---|
static java.awt.Color |
DARK_BLUE
Some color constants for Java Look and Feel. |
static java.awt.Color |
DARK_YELLOW
Some color constants for Java Look and Feel. |
static java.awt.Color |
LIGHT_BLUE
Some color constants for Java Look and Feel. |
static java.awt.Color |
LIGHT_YELLOW
Some color constants for Java Look and Feel. |
static java.awt.Color |
LIGHTEST_BLUE
Some color constants for Java Look and Feel. |
static java.awt.Color |
LIGHTEST_YELLOW
Some color constants for Java Look and Feel. |
static int |
TABLE_ROW_EXTRA_HEIGHT
Defines the extra height for each row in a table. |
Constructor Summary | |
---|---|
SwingTools()
|
Method Summary | |
---|---|
private static java.io.File |
chooseFile(java.awt.Component parent,
java.io.File file,
boolean open,
boolean onlyDirs,
javax.swing.filechooser.FileFilter[] fileFilters)
Opens a file chooser with a reasonable start directory. onlyDirs indidcates if only files or only can be selected. |
private static java.io.File |
chooseFile(java.awt.Component parent,
java.io.File file,
boolean open,
boolean onlyDirs,
java.lang.String[] extensions,
java.lang.String[] extensionDescriptions)
Returns the user selected file. |
static java.io.File |
chooseFile(java.awt.Component parent,
java.io.File file,
boolean open,
boolean onlyDirs,
java.lang.String extension,
java.lang.String extensionDescription)
Opens a file chooser with a reasonable start directory. |
static java.io.File |
chooseFile(java.awt.Component parent,
java.io.File file,
boolean open,
java.lang.String extension,
java.lang.String extensionDescription)
Opens a file chooser with a reasonable start directory. |
static javax.swing.JFileChooser |
createFileChooser(java.io.File file,
boolean onlyDirs,
javax.swing.filechooser.FileFilter[] fileFilters)
Creates file chooser with a reasonable start directory. |
static javax.swing.JPanel |
createTextPanel(java.lang.String title,
java.lang.String text)
Creates a panel with title and text. |
static java.awt.Color |
getPointColor(double value)
Returns a color equivalent to the value of value . |
static java.awt.Color |
getPointColor(double value,
double max,
double min)
Returns a color equivalent to the value of value . |
static java.lang.String |
html2YaleText(java.lang.String html)
Replaces simple html tags and quotes by Yale specific text elements. |
static java.awt.GradientPaint |
makeBluePaint(double width,
double height)
|
static java.awt.GradientPaint |
makeYellowPaint(double width,
double height)
|
static void |
showErrorMessage(java.lang.String message,
java.lang.Throwable e)
|
static void |
showSimpleErrorMessage(java.lang.String message,
java.lang.Throwable e)
|
static void |
showVerySimpleErrorMessage(java.lang.String message)
|
static java.lang.String |
text2DisplayHtml(java.lang.String text)
Replaces the Yale specific tag elements by normal html tags. |
static java.lang.String |
text2SimpleHtml(java.lang.String text)
Replaces the Yale specific tag elements by normal html tags. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int TABLE_ROW_EXTRA_HEIGHT
public static final java.awt.Color DARK_YELLOW
public static final java.awt.Color LIGHT_YELLOW
public static final java.awt.Color LIGHTEST_YELLOW
public static final java.awt.Color DARK_BLUE
public static final java.awt.Color LIGHT_BLUE
public static final java.awt.Color LIGHTEST_BLUE
Constructor Detail |
---|
public SwingTools()
Method Detail |
---|
public static java.awt.GradientPaint makeBluePaint(double width, double height)
public static java.awt.GradientPaint makeYellowPaint(double width, double height)
public static void showVerySimpleErrorMessage(java.lang.String message)
public static void showSimpleErrorMessage(java.lang.String message, java.lang.Throwable e)
public static void showErrorMessage(java.lang.String message, java.lang.Throwable e)
public static java.io.File chooseFile(java.awt.Component parent, java.io.File file, boolean open, java.lang.String extension, java.lang.String extensionDescription)
public static java.io.File chooseFile(java.awt.Component parent, java.io.File file, boolean open, boolean onlyDirs, java.lang.String extension, java.lang.String extensionDescription)
private static java.io.File chooseFile(java.awt.Component parent, java.io.File file, boolean open, boolean onlyDirs, java.lang.String[] extensions, java.lang.String[] extensionDescriptions)
private static java.io.File chooseFile(java.awt.Component parent, java.io.File file, boolean open, boolean onlyDirs, javax.swing.filechooser.FileFilter[] fileFilters)
file
- The initially selected value of the file chooser dialogopen
- Open or save dialog?onlyDirs
- Only allow directories to be selectedfileFilters
- List of FileFilters to usepublic static javax.swing.JFileChooser createFileChooser(java.io.File file, boolean onlyDirs, javax.swing.filechooser.FileFilter[] fileFilters)
if (fileChooser.showOpenDialog(parent) == JFileChooser.APPROVE_OPTION) File selectedFile = fileChooser.getSelectedFile();Usually, the method
chooseFile(Component, File, boolean, boolean, FileFilter[])
or
one of the convenience wrapper methods can be used to do this. This
method is only useful if one is interested, e.g., in the selected file
filter.
file
- The initially selected value of the file chooser dialogonlyDirs
- Only allow directories to be selectedfileFilters
- List of FileFilters to usepublic static javax.swing.JPanel createTextPanel(java.lang.String title, java.lang.String text)
public static java.lang.String html2YaleText(java.lang.String html)
public static java.lang.String text2DisplayHtml(java.lang.String text)
public static java.lang.String text2SimpleHtml(java.lang.String text)
public static java.awt.Color getPointColor(double value)
value
. The value
has to be normalized between 0 and 1.
public static java.awt.Color getPointColor(double value, double max, double min)
value
. The value
will be normalized between 0 and 1 using the parameters max and min. Which
are the minimum and maximum of the complete dataset.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |