public class GUIHelper
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static javax.swing.Icon |
ICON_EMPTY
Empty icon 16x16.
|
static java.lang.String |
MESSAGE_TITLE
The title for message boxes.
|
static java.lang.String[] |
YES_NO_OPTIONS
"Yes" and "No" Options for showOptionDialog.
|
| Constructor and Description |
|---|
GUIHelper() |
| Modifier and Type | Method and Description |
|---|---|
static void |
centerOnParentWindow(java.awt.Window window,
java.awt.Window parentWindow)
Center a window on another window.
|
static void |
setDefaultScrollbarUnits(javax.swing.JScrollPane scrollPane)
Set reasonable unit increments for a scroll pane that does not contain a
Scrollable.
|
static void |
showMessage(java.awt.Component parent,
java.lang.String message,
int messageType)
Show a JOptionPane message dialog.
|
static int |
showOptionDialog(java.awt.Component parent,
java.lang.String message,
java.lang.String[] options,
int messageType)
Show a JOptionPane option dialog.
|
static void |
showURL(java.lang.String urlSpec)
Show a URL in the browser
|
public static final java.lang.String MESSAGE_TITLE
public static final java.lang.String[] YES_NO_OPTIONS
public static final javax.swing.Icon ICON_EMPTY
public static int showOptionDialog(java.awt.Component parent,
java.lang.String message,
java.lang.String[] options,
int messageType)
parent - parent componentmessage - the message stringoptions - the array of option stringsmessageType - the message type as defined in JOptionPanepublic static void showMessage(java.awt.Component parent,
java.lang.String message,
int messageType)
parent - parent componentmessage - the message stringmessageType - the message type as defined in JOptionPanepublic static void centerOnParentWindow(java.awt.Window window,
java.awt.Window parentWindow)
window - the window to be centered.parentWindow - the parent window on which the window is to be centered.public static void setDefaultScrollbarUnits(javax.swing.JScrollPane scrollPane)
scrollPane - public static void showURL(java.lang.String urlSpec)
urlSpec - the URL as a string