|
swingx Version 2009-07-31 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.Component
java.awt.Container
java.awt.Window
java.awt.Dialog
javax.swing.JDialog
org.jdesktop.swingx.JXDialog
public class JXDialog
First cut for enhanced Dialog. The idea is to have a pluggable content from which the dialog auto-configures all its "dialogueness".
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.swing.JDialog |
---|
JDialog.AccessibleJDialog |
Nested classes/interfaces inherited from class java.awt.Dialog |
---|
Dialog.AccessibleAWTDialog, Dialog.ModalExclusionType, Dialog.ModalityType |
Nested classes/interfaces inherited from class java.awt.Window |
---|
Window.AccessibleAWTWindow |
Nested classes/interfaces inherited from class java.awt.Container |
---|
Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary | |
---|---|
static String |
CLOSE_ACTION_COMMAND
|
protected JComponent |
content
|
static String |
EXECUTE_ACTION_COMMAND
|
static String |
UIPREFIX
|
Fields inherited from class javax.swing.JDialog |
---|
accessibleContext, rootPane, rootPaneCheckingEnabled |
Fields inherited from class java.awt.Dialog |
---|
DEFAULT_MODALITY_TYPE |
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface javax.swing.WindowConstants |
---|
DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, EXIT_ON_CLOSE, HIDE_ON_CLOSE |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
JXDialog(Dialog dialog,
JComponent content)
Creates a non-modal dialog with the given component as content and the specified Dialog as owner. |
|
JXDialog(Frame frame,
JComponent content)
Creates a non-modal dialog with the given component as content and the specified Frame as owner. |
|
JXDialog(JComponent content)
Creates a non-modal dialog with the given component as content and without specified owner. |
Method Summary | |
---|---|
protected JComponent |
createButtonPanel()
create the dialog button controls. |
protected JXRootPane |
createRootPane()
|
void |
doClose()
The callback method executed when closing the dialog. |
JXRootPane |
getRootPane()
|
JXStatusBar |
getStatusBar()
Returns the value of the status bar property from the underlying JXRootPane . |
JToolBar |
getToolBar()
Returns the value of the tool bar property from the underlying JXRootPane . |
protected String |
getUIString(String key)
Returns a potentially localized value from the UIManager. |
protected String |
getUIString(String key,
Locale locale)
Returns a potentially localized value from the UIManager for the given locale. |
void |
setLocale(Locale l)
Overridden to set the content's Locale and then updated this dialog's internal state. |
void |
setStatusBar(JXStatusBar statusBar)
Sets the status bar property on the underlying JXRootPane . |
protected void |
setTitleFromContent()
Infers and sets this dialog's title from the the content. |
void |
setToolBar(JToolBar toolBar)
Sets the tool bar property on the underlying JXRootPane . |
void |
setVisible(boolean visible)
Overridden to check if content is available. |
protected void |
updateLocaleState(Locale locale)
Updates this dialog's locale-dependent state. |
Methods inherited from class java.awt.Dialog |
---|
addNotify, getModalityType, getTitle, hide, isModal, isResizable, isUndecorated, setModal, setModalityType, setResizable, setTitle, setUndecorated, show, toBack |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String EXECUTE_ACTION_COMMAND
public static final String CLOSE_ACTION_COMMAND
public static final String UIPREFIX
protected JComponent content
Constructor Detail |
---|
public JXDialog(JComponent content)
content
- the component to show and to auto-configure from.public JXDialog(Frame frame, JComponent content)
Frame
as owner.
frame
- the ownercontent
- the component to show and to auto-configure from.public JXDialog(Dialog dialog, JComponent content)
Dialog
as owner.
dialog
- the ownercontent
- the component to show and to auto-configure from.Method Detail |
---|
protected JXRootPane createRootPane()
createRootPane
in class JDialog
public JXRootPane getRootPane()
getRootPane
in interface RootPaneContainer
getRootPane
in class JDialog
public void setStatusBar(JXStatusBar statusBar)
JXRootPane
.
statusBar
- the JXStatusBar
which is to be the status bargetStatusBar()
,
JXRootPane.setStatusBar(JXStatusBar)
public JXStatusBar getStatusBar()
JXRootPane
.
JXStatusBar
which is the current status barsetStatusBar(JXStatusBar)
,
JXRootPane.getStatusBar()
public void setToolBar(JToolBar toolBar)
JXRootPane
.
toolBar
- the JToolBar
which is to be the tool bargetToolBar()
,
JXRootPane.setToolBar(JToolBar)
public JToolBar getToolBar()
JXRootPane
.
JToolBar
which is the current tool barsetToolBar(JToolBar)
,
JXRootPane.getToolBar()
protected void setTitleFromContent()
public void setVisible(boolean visible)
PENDING: doesn't make sense - the content is immutable and guaranteed to be not null.
setVisible
in class Dialog
public void setLocale(Locale l)
Overridden to set the content's Locale and then updated this dialog's internal state.
setLocale
in class Component
protected void updateLocaleState(Locale locale)
setLocale(Locale)
public void doClose()
Here: calls dispose.
protected JComponent createButtonPanel()
protected String getUIString(String key)
UIPREFIX
before doing the
lookup. The lookup respects this table's current locale
property. Returns the key, if no value is found.
key
- the bare key to look up in the UIManager.
protected String getUIString(String key, Locale locale)
UIPREFIX
before doing the
lookup. Returns the key, if no value is found.
key
- the bare key to look up in the UIManager.locale
- the locale use for lookup
|
swingx Version 2009-07-31 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |