Skip to content

Releases: Daytron/SimpleDialogFX

SimpleDialogFX 2.2.0

28 Jan 21:22

Choose a tag to compare

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

24 Jan 18:39

Choose a tag to compare

Minor Patch:

  • Renamed GLOSS_GENERIC to GENERIC
  • Default css background color for the header now follows the GENERIC style background

SimpleDialogFX 2.1.0

22 Jan 20:19

Choose a tag to compare

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 now getExceptionArea(), just need to be consistent with the naming
  • DialogType class is now under the dialog package

For more information please see the newly updated Javadoc.

SimpleDialogFX 2.0.0

19 Dec 17:48

Choose a tag to compare

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

16 Dec 13:32

Choose a tag to compare

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