|
||||||||||
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()
Called by the constructor methods to create the default rootPane . |
void |
doClose()
The callback method executed when closing the dialog. |
JXRootPane |
getRootPane()
Returns the rootPane object for this dialog. |
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)
Sets the locale of this component. |
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)
Shows or hides this Dialog 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, 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()
rootPane
.
createRootPane
in class JDialog
public JXRootPane getRootPane()
rootPane
object for this dialog.
getRootPane
in interface RootPaneContainer
getRootPane
in class JDialog
JDialog.setRootPane(javax.swing.JRootPane)
,
RootPaneContainer.getRootPane()
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)
Dialog
depending on the value of parameter
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 Dialog
visible
- if true
, makes the Dialog
visible,
otherwise hides the Dialog
.
If the dialog and/or its owner
are not yet displayable, both are made displayable. The
dialog will be validated prior to being made visible.
If false
, hides the Dialog
and then causes setVisible(true)
to return if it is currently blocked.
Notes for modal dialogs.
setVisible(true)
: If the dialog is not already
visible, this call will not return until the dialog is
hidden by calling setVisible(false)
or
dispose
.
setVisible(false)
: Hides the dialog and then
returns on setVisible(true)
if it is currently blocked.
Window.setVisible(boolean)
,
Window.dispose()
,
Component.isDisplayable()
,
Component.validate()
,
Dialog.isModal()
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 |