All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formdev.flatlaf.FlatDarculaLaf Maven / Gradle / Ivy

There is a newer version: 3.5.2
Show newest version
/*
 * Copyright 2019 FormDev Software GmbH
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.formdev.flatlaf;

import javax.swing.UIManager;

/**
 * A Flat LaF that has a dark color scheme and looks like Darcula LaF.
 * 

* The UI defaults are loaded from {@code FlatDarculaLaf.properties}, * {@code FlatDarkLaf.properties} and {@code FlatLaf.properties}. * * @author Karl Tauber */ public class FlatDarculaLaf extends FlatDarkLaf { public static final String NAME = "FlatLaf Darcula"; /** * Sets the application look and feel to this LaF * using {@link UIManager#setLookAndFeel(javax.swing.LookAndFeel)}. */ public static boolean setup() { return setup( new FlatDarculaLaf() ); } /** * @deprecated use {@link #setup()} instead; this method will be removed in a future version */ @Deprecated public static boolean install() { return setup(); } /** * Adds this look and feel to the set of available look and feels. *

* Useful if your application uses {@link UIManager#getInstalledLookAndFeels()} * to query available LaFs and display them to the user in a combobox. */ public static void installLafInfo() { installLafInfo( NAME, FlatDarculaLaf.class ); } @Override public String getName() { return NAME; } @Override public String getDescription() { return "FlatLaf Darcula Look and Feel"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy