weisj
268e96c454
|
5 years ago | |
---|---|---|
.github/workflows | 5 years ago | |
bin | 5 years ago | |
gradle/wrapper | 5 years ago | |
img | 5 years ago | |
licence | 5 years ago | |
src | 5 years ago | |
.gitignore | 5 years ago | |
README.md | 5 years ago | |
build.gradle | 5 years ago | |
darklaf.iml | 5 years ago | |
gradlew | 5 years ago | |
gradlew.bat | 5 years ago | |
settings.gradle | 5 years ago |
README.md
Darklaf - A Darcula Look and Feel
This project is based on the darcula look and feel for Swing. Gradually all the custom UI and more from the darcula project wil be ported over and given a new look that follows the newer darcula look in IntelliJ.
Screenshots
Darcula Theme | IntelliJ Theme |
Solarized Dark Theme | Solarized Light Theme |
Usage & Features
You can either use the current build from releases or the the bin folder. These binaries already include a stripped down version of all dependecies.
This project is available on Maven Central:
Maven
<dependency>
<groupId>com.github.weisj</groupId>
<artifactId>darklaf</artifactId>
<version>1.3.1.1</version>
</dependency>
Gradle
implementation 'com.github.weisj:darklaf:1.3.1.1'
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(String[] args) {
SwingUtilities.invokeLater(() -> {
LafManager.install();
JFrame frame = new JFrame("Darklaf - A Darcula 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 are customizable by setting the appropriate client property of the component.
//Todo: list of properties
This LookAndFeel supports custom window decorations (only 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.