| Home >> All >> org >> dinopolis >> util >> [ gui Javadoc ] |
| | org.dinopolis.util.gui.property_editor.* (8) |
org.dinopolis.util.gui: Javadoc index of package org.dinopolis.util.gui.
Package Samples:
org.dinopolis.util.gui.property_editor
Classes:
LoginDialog: A dialog box that asks for a username and a password. Example: LoginDialog dialog = new LoginDialog(null,"Login","Enter your name/password"); System.out.println("after dialog"); int result = dialog.getValue(); System.out.println("result: "+result); if(result == LoginDialog.CLOSED_OPTION) System.out.println("closed"); else if(result == LoginDialog.CANCEL_OPTION) System.out.println("canceled"); else { System.out.println("username: "+dialog.getUsername()); System.out.println("password: "+dialog.getPassword()); } dialog = null; *
SwingWorker: This is the 3rd version of SwingWorker (also known as SwingWorker 3), an abstract class that you subclass to perform GUI-related work in a dedicated thread. For instructions on using this class, see: http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html Note that the API changed slightly in the 3rd version: You must now invoke start() on the SwingWorker after creating it.
SelectedButtonActionSynchronizer: This class helps to synchronize actions and toggle buttons (like CheckButtonMenuItems, RadioButtonMenuItems, ...). Whenever the button's state changes, the selected state is set into the action (key SELECTED , value Boolean object), or vice versa (if the value SELECTED is set into the action, the button changes its state accordingly).
SplashScreen: This class is used to visualize a simple splash screen icon for a definable amount of time. Additionally, a progress bar and a status line can be displayed.
ActionStore: This class represents a container for arbitrary actions. ActionStores are bound under a unique name and may be requested with this name again.
HTMLViewerFrame: This frame can be used to display html pages from an url or from a String. It supports http proxies and follows links.
MenuFactory: This class represents a menu factory. It reads values from a resource file and generates menues accordingly.
ActionGenerator: The action generator interface is used a callback interface to request an action for a given name.
MenuButtonActionChangedListener: The selection change listener for menue buttons to change the menues properties accordingly.
MenuItemActionChangedListener: The item change listener for menues to change the menues properties accordingly.
ResourceEditorPanel: A Class the provides a Property Editor for the properties of a 'Map'.
ResourceEditorFrame: A Class the provides a Property Editor for the properties of a 'Map'.
DoubleEditor: This Class implements a editor for Doubles.
StringEditor: This Class implements a String editor.
BooleanEditor: This Class implements a String editor.
IntEditor: This Class implements a Int editor.
ColorEditor
DoubleField
IntField
StringChooser
ArrayEditor
StringSelector
| Home | Contact Us | Privacy Policy | Terms of Service |