|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Dlg in com.quadrique.jbuildingblocks.gui |
|---|
| Subclasses of Dlg in com.quadrique.jbuildingblocks.gui | |
|---|---|
class |
DlgAbout
This dialog displays a generic about dialog as shown in the following picture: ![]() |
class |
DlgDateChooser
This dialog is used to specify a date |
class |
DlgException
This dialog displays a Exception |
class |
DlgInformation
This dialog displays an information message |
class |
DlgLabelTextField
This dialog displays a label and a text field so that the user can enter a value Example: // display the add dialog DlgLabelTextField lDlg = new DlgLabelTextField(mList,"Add","New Entry",null); lDlg.show(); // update the model if (lDlg.getReturnValue() == DlgLabelTextField.RETURN_VALUE_IS_OK) { String lValue = lDlg.getText(); mModel.addElement(lValue); } |
class |
DlgLogin
This dialog displays a login dialog |
class |
DlgQuestion
This dialog displays a question but does not provide the buttons in the button area (the frist button should be the name of the action). |
class |
PanelListBaseDlg
This dialog displays the following: +------------+ | listItemA | | Add Modify Remove | +------------+ Cancel Ok Example: PanelListBaseDlg lDlg = new PanelListBaseDlg(MainWindow.getInstance(), zList); lDlg.show(); if (lDlg.getReturnValue() != PanelListBaseDlg.OK) // not "Ok" { ArrayList lList = lDlg.getList(); } |
class |
Wizard
This class implements a dialog wizard |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||