Class Summary |
AboutDialog |
Generic 'About' dialog
|
AboutPanel |
Generic 'About' panel to show
image
environment informations (key, value)
owner
|
RegexpDialog |
RegexpDialog is a dialog assisting in regexp creation |
RegexpDialog.RegTextArea |
RegTextArea is a wrapped up JTextArea |
RegexpDialog.RegTextField |
RegTextField is a wrapped up JTextField |
TextFieldButton |
TextFieldButton is a JTextField widget with a browse button
Example for typical usage:
// listener for action event from mTextFieldButton an instance of TextFieldButton
public void actionPerformed(ActionEvent e)
{
if (e.getActionCommand().equals(TextFieldButton.AC_BUTTON))
{
final SomeDialog sd = new SomeDialog(); // some selection happens here
sd.setActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
// update what is displayed in the textfield of the TextFieldButton
mTextFieldButton.setObject(((SomeDialog) e.getSource()).getSelection());
sd.dispose();
}
});
}
sd.pack();
sd.setVisible(true);
} |
WidgetSizer |
Collection of utility methods related to manipulate
the size of widgets |