|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ButtonAreaListener in com.quadrique.jbuildingblocks.gui |
|---|
| Classes in com.quadrique.jbuildingblocks.gui that implement ButtonAreaListener | |
|---|---|
class |
Dlg
This class is the base class for all the dialogs of the application. |
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 |
| Methods in com.quadrique.jbuildingblocks.gui with parameters of type ButtonAreaListener | |
|---|---|
void |
ButtonAreaBase.addButtonSelectedEventListener(ButtonAreaListener zListener)
Call this method to receive a ButtonAreaEvent whenever a button is selected |
void |
ButtonAreaBase.removeButtonSelectedEventListener(ButtonAreaListener zListener)
Call this method to remove a previously registered listener |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||