|
||||||||||
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 |
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.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.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. |
void |
doClose()
The callback method executed when closing the dialog. |
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)
Sets the locale of this component. |
protected void |
setTitleFromContent()
Infers and sets this dialog's title from the the content. |
void |
setVisible(boolean visible)
Shows or hides this component depending on the value of parameter b . |
protected void |
updateLocaleState(Locale locale)
Updates this dialog's locale-dependent state. |
Methods inherited from class java.awt.Dialog |
---|
addNotify, getTitle, hide, isModal, isResizable, isUndecorated, setModal, setResizable, setTitle, setUndecorated, show |
Methods inherited from class java.lang.Object |
---|
clone, equals, 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 void setTitleFromContent()
public void setVisible(boolean visible)
b
.
Overridden to check if content is available. PENDING: doesn't make sense - the content is immutable and guaranteed to be not null.
setVisible
in class Component
visible
- if true
, shows this component;
otherwise, hides this componentComponent.isVisible()
public void setLocale(Locale l)
Overridden to set the content's Locale and then updated this dialog's internal state.
setLocale
in class Component
l
- the locale to become this component's localeComponent.getLocale()
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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |