Java Swing UIManager getDefaultInactiveBackgroundColour()

Here you can find the source of getDefaultInactiveBackgroundColour()

Description

get Default Inactive Background Colour

License

Open Source License

Declaration

public static Color getDefaultInactiveBackgroundColour() 

Method Source Code


//package com.java2s;
/*/*  ww w. j  a v  a 2s  . co  m*/
 * UIUtils.java  2/6/13 1:04 PM
 *
 * Copyright (C) 2012-2013 Nick Ma
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import java.awt.Color;

import javax.swing.UIManager;

public class Main {
    /**
     * the inactive colour for backgrounds
     */
    private static Color defaultInactiveBackgroundColour;

    public static Color getDefaultInactiveBackgroundColour() {
        if (defaultInactiveBackgroundColour == null) {
            defaultInactiveBackgroundColour = UIManager.getColor("control");
        }
        return defaultInactiveBackgroundColour;
    }
}

Related

  1. getDark()
  2. getDefaultActiveBackgroundColour()
  3. getDefaultAttributeSet()
  4. getDefaultFieldHeigth()
  5. getDefaultForeground()
  6. getErrorIcon()
  7. getGrayFilter()
  8. getGtkThemeName()
  9. getHyperlinkForeground()