Darklaf - A themeable swing Look and Feel based on Darcula-Laf
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Jannis Weis 967f1a573f
Update README.md
5 years ago
.github/workflows Update libs.yml 5 years ago
buildSrc Updated library download link. 5 years ago
core Accept wider range of values for HIDE_POPUP_KEY. 5 years ago
decorations-base Decorations support for macOS. (#54) 5 years ago
dependencies-bom Add MigLayout for test code 5 years ago
gradle/wrapper Split projects, migrate to Kotlin DSL 5 years ago
img Create file_chooser_combined.png 5 years ago
licenses Split projects, migrate to Kotlin DSL 5 years ago
macos Decorations support for macOS. (#54) 5 years ago
native-utils Decorations support for macOS. (#54) 5 years ago
property-loader Decorations support for macOS. (#54) 5 years ago
utils Decorations support for macOS. (#54) 5 years ago
windows Decorations support for macOS. (#54) 5 years ago
.editorconfig Split projects, migrate to Kotlin DSL 5 years ago
.gitattributes Add .gitattributes to ensure files have expected line endings 5 years ago
.gitignore Ignore library files. 5 years ago
LICENSE moved and updates license 5 years ago
README.md Update README.md 5 years ago
build.gradle.kts Move core to darklaf-core 5 years ago
gradle.properties Decorations support for macOS. (#54) 5 years ago
gradlew Split projects, migrate to Kotlin DSL 5 years ago
gradlew.bat General functioning support for window decorations on windows. 5 years ago
settings.gradle.kts Decorations support for macOS. (#54) 5 years ago

README.md

Darklaf - A Darcula Look and Feel

CI Status Build Native Libraries Maven Central

This project is based on the darcula look and feel for Swing.

Screenshots

Darcula Theme IntelliJ Theme
Darcula Theme IntelliJ Theme
Solarized Dark Theme Solarized Light Theme
Solarized Dark Theme Solarized Light Theme

Usage & Features

A list of all features can be found here. The LaF is compatible with Java >=1.8 (you need >=1.9 to get proper scaling). This project is available on Maven Central:

Maven

<dependency>
  <groupId>com.github.weisj</groupId>
  <artifactId>darklaf-core</artifactId>
  <version>[1.3.3.6,)</version>
</dependency>

Gradle

implementation 'com.github.weisj:darklaf-core:[1.3.3.6,)'

Installation

The LookAndFeel can be easily installed using the 'LafManager'

LafManager.install(); //For default theme (IntelliJ)
LafManager.install(new DarculaTheme()); //Specify the used theme.

or by using the UIManager

LafManager.setTheme(new DarculaTheme());
UIManager.setLookAndFeel(DarkLaf.class.getCanonicalName());

Example

import com.github.weisj.darklaf.LafManager;
import javax.swing.*;
import java.awt.*;

public class DarklafDemo {

    public static void main(final String[] args) {
         SwingUtilities.invokeLater(() -> {
            LafManager.install();

            JFrame frame = new JFrame("Darklaf - A themeable LaF for Swing");
            frame.setSize(600, 400);

            JButton button = new JButton("Click here!");

            JPanel content = new JPanel();
            content.add(button);

            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setContentPane(content);
            frame.setVisible(true);
        });
    }
}

All custom component-variants and settings can be enabled by setting the appropriate client property of the component. They can be found here.

This LookAndFeel supports custom window decorations (only on Windows at this point). In contrast to most other LaFs the native window behaviour is not compromised giving a seamless experience that still looks native.

Build

./gradlew build

When building on Windows, you need a C++ toolchain installed to build native extension.

If you wan't to build for platforms different than your machine you can download the repsective native libraries from the latest run of the Build Native Libraries Action and place it in the corresponding <variant>/libraries folder. Further details can be found in the repsective library.md file. They are automatically included when building the project. When building the project there will be a messsage for every library that needs to be manually included.

Note: You can still build the project without the libraries, but then custom decorations won't be supported.

Contribute

Here is a list of things that currently are not finished or need refinement. This list is a work in progress and being updated regulary. If you find any problems with the LaF feel free to submit an issue:

Artifacts

  • Group ID: com.github.weisj
  • Version: 1.3.3.6
  • Artifact IDs:
    • darklaf-core The LaF itself. Include this in your project to use the LaF. Includes all other artifacts.
    • darklaf-native-utils Loading of native libraries.
    • darklaf-windows Code specific to window decorations on windows.
    • darklaf-property-loader Library to load and parse property files and icon.
    • darklaf-utils Shared utility classes for other modules.

License

This project is licensed under the MIT license.