https://github.com/bobbylight/swing-toaster
A toaster component for Swing applications.
https://github.com/bobbylight/swing-toaster
Last synced: 8 months ago
JSON representation
A toaster component for Swing applications.
- Host: GitHub
- URL: https://github.com/bobbylight/swing-toaster
- Owner: bobbylight
- Created: 2020-02-16T05:13:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T06:39:28.000Z (over 6 years ago)
- Last Synced: 2025-08-07T16:34:08.858Z (11 months ago)
- Language: Java
- Size: 65.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swing Toaster
A toaster widget for Swing applications, done right.
Requires Java 11.
## Features
* Per-window toaster messages. If you're looking for desktop-scoped notifications,
you should use the standard AWT `TrayIcon.displayMessage()` method.
* Toaster messages can fade away after a configurable delay.
* If multiple toasters are displayed, they are stacked appropriately.
* Looks good in all standard Look and Feels as well as common popular ones (see
the demo submodule).
## Project Structure
The `toaster` submodule contains the actual library.
The `toaster-demo` submodule contains a simple example of usage.
## Building
```bash
./gradlew clean build --warning-mode all
```