Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 942 Bytes

README.asciidoc

File metadata and controls

47 lines (36 loc) · 942 Bytes

Toaster

Provides a small set of simple FX Panes allowing customizable toast notifications in JavaFX GUI applications.

Toaster can be easily added to any project by simply wrapping whatever panes you like with a NotificationPane using FXML or raw Java.

Examples

Sample FXML
<NotificationPane [...] fx:id="noteStack">
  <VBox>
    <Button text="Add Note" onAction="#addNote" />
  </VBox>
</NotificationPane>
Sample Controller
public class Controller
{
  @FXML
  private NotificationPane noteStack;

  @FXML
  private void addNote( final Event ignored )
  {
    noteStack.notify(new Notification("Hello World"));
  }
}

Change Log

v1.1.0
  • Added getter for NotificationAnchorStack to NotificationPane

  • Added getter for header Label to Notification

v1.0.0

Initial Release