JWizardPanel and JWizardDialog provide a panel and dialog that accomodates a sequence of pages. Three buttons, previous, next and finish are available but one can also add others as required. The wizard navigates through a number of pages represented by a WizardPage interface. Notifications for wizard events are obtained by adding a ChangeListener.
JWizardPanel and JWizardDialog are JavaBean components so you can add them to the NetBeans Swing components pallette and use them through the GUI builder. Get the WizardView NetBeans project including the source files, compiled jar and API javadocs from here.
Saturday, March 15, 2008
The wizard components JWizardPanel, JWizardDialog
Sunday, February 17, 2008
The titled separator component JTitleSeparator
JTitleSeparator is a horizontal line separator with a title. The title can be aligned left, right or center (using SwingConstants LEFT, RIGHT, or CENTER). Use the setImageAlignment method to place an image on the left or right side of the text. A title or image can be specified through one of the constructors or using the setTitle and setImage methods.
JTitleSeparator is a JavaBean component so you can add it to the NetBeans Swing components pallette and use it through the GUI builder. Get the JTitleSeparator NetBeans project including the source files, compiled jar and API javadocs from here.
Friday, February 8, 2008
The popup button component JPopupButton
JPopupButton is a button that gives access to a popup menu. The button has a small arrow indicator on the bottom right. Use the addMenuItem or addComponent methods in order to add options to the popup menu.
JPopupButton is a JavaBean component so you can add it to the NetBeans Swing components pallette and use it through the GUI builder. Get the JPopupButton NetBeans project including the source files, compiled jar and API javadocs from here.
Friday, January 25, 2008
The month selection component JMonthBox
JMonthBox is a month selection component combining a combo box and a rolling spinner. One can obtain the currently selected month through the getSelectedMonth or getSelectedMonthNumber methods. Alternatively, use the addMonthChangeListener to get notifications of selection changes. The month names can be either those associated with the current locale or custom names.
JMonthBox is a JavaBean component so you can add it to the NetBeans Swing components pallette and use it through the GUI builder. Get the JMonthBox NetBeans project including the source files, compiled jar and API javadocs from here.