All Projects → weisJ → Darklaf

weisJ / Darklaf

Licence: mit
Darklaf - A themeable swing Look and Feel based on Darcula-Laf

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Darklaf

Gi
Native Go (golang) Graphical Interface system (2D and 3D), built on GoKi tree framework
Stars: ✭ 864 (+246.99%)
Mutual labels:  svg, gui
Scala Swing
Scala wrappers for Java's Swing API for desktop GUIs
Stars: ✭ 105 (-57.83%)
Mutual labels:  gui, swing
Native Windows Gui
A light windows GUI toolkit for rust
Stars: ✭ 872 (+250.2%)
Mutual labels:  gui, native
React Nodegui
Build performant, native and cross-platform desktop applications with native React + powerful CSS like styling.🚀
Stars: ✭ 5,914 (+2275.1%)
Mutual labels:  gui, native
Wepush
专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信
Stars: ✭ 2,597 (+942.97%)
Mutual labels:  gui, swing
Xtd forms
Modern c++17 library to create native gui for Microsoft Windows, Apple macOS and Linux.
Stars: ✭ 25 (-89.96%)
Mutual labels:  gui, native
Swingtutorials
Tutorials for Java's Swing UI toolkit explaining how to use particular components
Stars: ✭ 67 (-73.09%)
Mutual labels:  gui, swing
Red
Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!
Stars: ✭ 4,725 (+1797.59%)
Mutual labels:  gui, native
Awesome Swing
A list of frameworks, libraries and software for the Java Swing GUI toolkit.
Stars: ✭ 154 (-38.15%)
Mutual labels:  gui, swing
Mootool
A handy tool set for developers. 开发者常备小工具
Stars: ✭ 141 (-43.37%)
Mutual labels:  gui, swing
Sauron Native
Truly cross platform, truly native. multiple backend GUI for rust
Stars: ✭ 587 (+135.74%)
Mutual labels:  gui, native
Density Converter
A multi platform image density converting tool converting single or batches of images to Android, iOS, Windows or CSS specific formats and density versions given the source scale factor or width/height in dp. It has a graphical and command line interface and supports many image types (svg, psd, 9-patch, etc.) aswell as some lossless compressors like pngcrush.
Stars: ✭ 222 (-10.84%)
Mutual labels:  svg, gui
Vue Nodegui
Build performant, native and cross-platform desktop applications with native Vue + powerful CSS like styling.🚀
Stars: ✭ 575 (+130.92%)
Mutual labels:  gui, native
Element
Programmatic UI for macOS
Stars: ✭ 855 (+243.37%)
Mutual labels:  svg, gui
Dearpygui
Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies
Stars: ✭ 6,631 (+2563.05%)
Mutual labels:  gui, native
Imgui
Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
Stars: ✭ 33,574 (+13383.53%)
Mutual labels:  gui, native
Compose Jb
Jetpack Compose for Desktop and Web, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.
Stars: ✭ 7,562 (+2936.95%)
Mutual labels:  gui, swing
Radiance
Building modern, elegant and fast Swing applications
Stars: ✭ 458 (+83.94%)
Mutual labels:  svg, swing
React Nodegui Starter
Starter repository for react based native desktop apps using react-nodegui
Stars: ✭ 132 (-46.99%)
Mutual labels:  gui, native
Tesseract4java
Java GUI and Tools for Tesseract OCR
Stars: ✭ 214 (-14.06%)
Mutual labels:  gui, swing

Darklaf - A themeable swing Look and Feel

CI Status Native Libraries Autostyle Maven Central

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

Screenshots

IntelliJ Darcula
Solarized Light Solarized Dark
High Contrast Light High Contrast Dark

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).

You can find all property values on weisj.github.io/darklaf-docs

This project is available on Maven Central:

Maven

<dependency>
  <groupId>com.github.weisj</groupId>
  <artifactId>darklaf-core</artifactId>
  <version>2.5.5</version>
</dependency>

Gradle

implementation("com.github.weisj:darklaf-core:2.5.5")

You can also use the latest nightly build.

repositories {
    maven {
        url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
    }
}

configurations.all {
    resolutionStrategy.cacheChangingModulesFor(0, "seconds")
}

dependencies {
    implementation("com.github.weisj:darklaf-core:latest.integration")
}

Installation

The LookAndFeel can be easily installed using the LafManager

// For default theme (IntelliJ)
LafManager.install();
// Specify explicit theme.
LafManager.setTheme(new IntelliJTheme());
LafManager.install();
// Directly install theme
LafManager.install(new DarculaTheme());

For more information see the wiki.

Note: The recommended method is using the LafManager as it automatically handles reloading the ui.

Choosing a theme

It is highly encouraged to provide users more than one theme. Forcing users to use a light/dark theme because of personal preferences might be degrading their experience in certain situations. For the visually impaired darklaf provides a set of high contrast themes, HighContrastThemeLight and HighContrastThemeDark.

Darklaf supports detecting the system theme on macOS and Windows with the ability to automatically change the theme if the settings change.

// This returns the preferred theme of the system settings.
LafManager.themeForPreferredStyle(getPreferredThemeStyle());

The following settings are picked up by darklaf:

Windows macOS Setting
☑️ ☑️ Light/Dark mode
☑️ ☑️ High contrast mode
☑️ ☑️ Accent color
☑️ Selection color
☑️ Font size

You can use the ThemeSettings class with ThemeSettings#showSettingsDialog or ThemeSettings#getSettingsPanel to provide the user the most possible customization.

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.

Extensions

Check out the darklaf-extension project for additional artifacts which add support for some third-party projects.

Build

./gradlew build

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

When building on macOS you need to have XCode (or the command line tools) installed to build the native extension.

If you want to build for platforms different from your machine the necessary binaries are automatically downloaded. For this you have to specify a valid GithubAccessToken using githubAccessToken property in your local gradle.properties file. The access token only needs to have the permission to read repositories.

You can also manually download the respective native libraries from the latest successful run of the Build Native Libraries Action and place it in the corresponding <variant>/libraries folder. This is necessary if you don't have the appropriate toolchain installed, but you machine is a binary target.

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: 2.5.5
  • Artifact IDs:
    • darklaf-core The LaF itself. Include this in your project to use the LaF. Includes all other artifacts.
    • darklaf-theme The themes to use with the LaF.
    • darklaf-property-loader Library to load and parse property files and icon.
    • darklaf-utils Shared utility classes for other modules.
    • darklaf-native-utils Loading of native libraries.
    • darklaf-platform-base Common classes for the platform modules.
    • darklaf-windows Code specific to Windows.
    • darklaf-macos Code specific to macOS.

Projects using Darklaf

Please send me your project, and I'll add it here.

License

This project is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].