Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

novaworx.gui: Javadoc index of package novaworx.gui.


Package Samples:

novaworx.gui

Classes:

DeepBlueTheme: Color scheme for the Swing Look & Feel. The colors are as follows: Primary 1      Primary 2      Primary 3      Primary 4      Secondary 1      Secondary 2      Secondary 3     
SoftBlueTheme: Color scheme for the Swing Look & Feel. The colors are as follows: Primary 1      Primary 2      Primary 3      Primary 4      Secondary 1      Secondary 2      Secondary 3     
TablePanel: The TablePanel container that will layout components in a rectangular grid similar to HTML tables. For example, the following is an panel that lays out six buttons: import java.awt.*; public class ButtonGrid extends TablePanel { public TablePanel() { add( new Button("1") ); add( new Button("2") ); row(); colspan( 2 ); add( new Button("3") ); row(); rowspan( 2 ); add( new Button("4") ); add( new Button("5") ); row(); add( new Button("6") ); done(); } }
ProgramAction: This class is used to handle the visual aspects of actions. Since components may treat an action specifically this class allows a component specific action to be set as the acting action. The idea being that when a component gains focus it will register the actions that it handles with the appropriate instance of this class. When the component looses focus then the component will unregister the actions that it handles. This works fine in theory but is a little problematic in reality. The most noticable issue is when a menu item gains the focus it will cause the component that was focused to loose ...
MemoryLabel: A label that continually shows the memory usage at a specified interval. This class is thread safe. All updates to the label are done via SwingUtilities.invokeLater().
ProgramTreeCellRenderer: A TreeCellRenderer specially made for the program.
ProgramListCellRenderer: A ListCellRenderer specially made for the program.
SplashScreen: Uses only AWT APIs so that it is displayed faster on startup.
InformationPage: Subclass of TablePanel to aid in the handling of preferences.
IconLibrary: Class that holds references to all the icons in the program.
ShortcutGrabber: Grabs key events before being dispatched to the components.
KeystrokeGrabber: Grabs a key stroke and sends it to the requesting listener.
UtilityBar: The status bar at the bottom of the program frame.
ActionLibrary: A class that holds all the program actions.
PressedImageFilter: An image filter that "presses" an image.
PurpleTheme: Color scheme for the Swing Look&Feel.
InputListener: Methods for receiving input events.
RecessedBorder: A single line bevel border.
ShortcutListener: Listener for shortcuts.

Home | Contact Us | Privacy Policy | Terms of Service