Releases: Daytron/SimpleDialogFX
Releases · Daytron/SimpleDialogFX
SimpleDialogFX 2.2.0
Features
- Header is now optional
- Added Opaque background style
- Added another constructor with type, header style, title, header and details as parameters
- Reordered buttons from left to right
- Added a YES-NO-CANCEL dialog template
- Added two alternatives to Confirmation dialog (An OK-CANCEL and YES-NO-CANCEL dialogs)
- UI focus for the Input Text dialog now rest with the input text field instead of the SEND button upon loading
- Dialog automatically closes if any exception is encountered
For full usage and documentation, please read the Javadoc and readme.
SimpleDialogFX 2.1.1
Minor Patch:
- Renamed
GLOSS_GENERICtoGENERIC - Default css background color for the header now follows the
GENERICstyle background
SimpleDialogFX 2.1.0
Features
- Dialog class is now inheritable
- Dialog's header background color styles are now interchangeable, via method or constructor
setHeaderColorStyle(HeaderColorStyle headerColorStyle)getHeaderColorStyle()
- Can also apply custom background css style
setCustomHeaderColorStyle(String colorStyle)
- Added 47 new color styles to choose from
- Added 2 more constructors with the header background color style
Dialog(DialogType dialogType, HeaderColorStyle headerColorStyle, String header, String details)Dialog(DialogType dialogType, DialogStyle dialogStyle, String title, String header, HeaderColorStyle headerColorStyle, String details, Exception exception)
- Additional 6 new font related methods for individual customization of header and details labels.
setHeaderFontSize(int font_size)setDetailsFontSize(int font_size)setHeaderFontFamily(String font_family)setDetailsFontFamily(String font_family)setHeaderFont(String font_family, int font_size)setDetailsFont(String font_family, int font_size)
Minor Changes:
getException_area()is nowgetExceptionArea(), just need to be consistent with the namingDialogTypeclass is now under the dialog package
For more information please see the newly updated Javadoc.
SimpleDialogFX 2.0.0
Features
- New Dialogs
- Exception dialog
- Input text dialog
- Generic OK CANCEL dialog
- Generic YES NO dialog
- Simplified dialog creation
- Custom fonts
- Flexible constructor options
- Allows to create custom css style on all dialog labels, textfield and textarea
- Automatic resize dialog to fit texts
SimpleDialogFX 1.0.0
Note:
Please be aware that v2.0.0 and above has greatly veered away from this version. Please upgrade to the newest version, otherwise use this version with care.
Features:
- Confirmation dialog
- Information dialog
- Warning dialog
- Error dialog
- Generic ok dialog
- Create custom title, header and details
- Lightweight and easy to use