atlantafx/README.md

85 lines
4.8 KiB
Markdown
Raw Normal View History

2022-09-11 09:32:18 -04:00
![logo](./.screenshots/logo.jpg)
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
**[📙 Docs](https://mkpaz.github.io/atlantafx/) | [📸 Screenshots](https://github.com/mkpaz/atlantafx/tree/master/.screenshots)**
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
JavaFX CSS theme collection with additional controls.
2022-09-07 00:32:33 -04:00
* Modern flat interface inspired by the variety of Web component frameworks.
* CSS first. It works with existing JavaFX controls.
* Light and dark themes included.
* Simple and intuitive color system based on the [GitHub Primer guidelines](https://primer.style/design/foundations/color).
* Fully customizable. Easily change global accent (brand) color or individual control via looked-up color variables.
* Written in modular SASS. No more digging in 3,500 lines of CSS code.
* Custom themes support. Compile your own theme from existing SASS sources.
* Additional controls that essential for modern GUI development.
* Sampler app:
2022-09-11 09:32:18 -04:00
* Play with themes and fonts.
* Test every feature of each existing control and check source code directly in the app to learn how to implement it.
* Check color palette and modify theme color contrast.
* Hot reload. Play with control styles without restarting the whole app.
* Showcases that demonstrate real-world project usage included.
![alt](./.screenshots/demo.gif)
2022-09-07 00:32:33 -04:00
2022-08-19 07:01:42 -04:00
## Try it out
Grab a **[self-updating download of the Sampler app](https://downloads.hydraulic.dev/atlantafx/sampler/download.html)** for Windows, macOS and Linux, packaged with [Conveyor](https://www.hydraulic.software).
2022-09-11 09:32:18 -04:00
Or download the latest build on the [releases page](https://github.com/mkpaz/atlantafx/releases).
## Getting started
2022-07-21 04:58:01 -04:00
**Requirements:** JavaFX 17+ (because of `data-url` support).
2022-07-24 11:38:56 -04:00
```xml
<dependency>
<groupId>io.github.mkpaz</groupId>
<artifactId>atlantafx-base</artifactId>
2022-09-07 00:32:33 -04:00
<version>1.0.0</version>
2022-07-24 11:38:56 -04:00
</dependency>
```
Set CSS theme:
```java
Application.setUserAgentStylesheet(new PrimerLight().getUserAgentStylesheet());
Application.setUserAgentStylesheet(new PrimerDark().getUserAgentStylesheet());
2022-09-07 00:32:33 -04:00
// ... find more themes in 'atlantafx.base.theme' package
2022-07-24 11:38:56 -04:00
```
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
Check the [docs](https://mkpaz.github.io/atlantafx/) for more information.
2022-07-21 04:58:01 -04:00
## Motivation
**Goals**:
2022-09-11 09:32:18 -04:00
* SASS
2022-07-21 04:58:01 -04:00
JavaFX standard themes, namely Modena and Caspian, maintained as a huge single CSS file, which is an overwhelmingly hard task. This alone makes creating a new JavaFX theme from scratch hardly possible. Also, JavaFX styling is based on CSS v2.1 specification which does not provide, nor variables, nor mixins, nor modules nor any other goodies that are default for modern front-end development. AtlantaFX themes are written in SASS with each component in a separate module and use recent [Dart SASS](https://sass-lang.com/dart-sass) implementation for CSS compilation. It also follows [GitHub Primer](https://primer.style/design/foundations/color) color system to make creating new themes more simple.
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
* Additional controls
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
JavaFX 2.0 was started in 2011, and it introduced no additional controls since then. Some JavaFX controls are obsolete, some can be found in popular third-party libraries like [ControlsFX](https://github.com/controlsfx/controlsfx). The problem with the latter is that it provides much more than some missing controls. It provides many things that can be called a widget. That's why AtlantaFX borrows some existing controls from ControlsFX instead of supporting it directly. The rule of the thumb is to not re-invent any existing control from `javafx-controls` and to avoid widgets as well as everything that requires i18n support.
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
* Sampler application
2022-07-21 04:58:01 -04:00
Theme development is not possible without some kind of demo application where you can test each control under every angle. That's what the Sampler application is. It supports hot reload, thanks to [cssfx](https://github.com/McFoggy/cssfx), and you can observe the scene graph via [Scenic View](https://github.com/JonathanGiles/scenic-view).
2022-09-11 09:32:18 -04:00
* Distribution and flexibility
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
AtlantaFX is also distributed as a collection of CSS files. So, if you don't need additional controls, you can just download only CSS and use it via `Application.setUserAgentStylesheet()` method. If your application is only needs a subset of controls, you can compile your own theme by just removing unnecessary components from SASS.
2022-07-21 04:58:01 -04:00
**Non-goals**:
2022-09-11 09:32:18 -04:00
* Replacing `javafx-controls` or standard JavaFX themes
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
It's not a goal to re-invent any existing `javafx-controls` component or replace standard JavaFX themes. Libraries come and gone, but committing to the core project benefits all the community.
2022-07-21 04:58:01 -04:00
2022-09-11 09:32:18 -04:00
* Mobile support
2022-07-21 04:58:01 -04:00
This is a tremendous amount of work. Just use [Gluon Mobile](https://gluonhq.com/products/mobile/).
2022-09-11 09:32:18 -04:00
* Providing theme API
2022-07-21 04:58:01 -04:00
AtlantaFX provides the Theme interface, which is nothing but a simple wrapper around the stylesheet path. [PR](https://github.com/openjdk/jfx/pull/511) is on its way, let's hope it will ever be merged.