org.pushingpixels.radiance.theming.internal.utils.RadianceWidgetManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingset3-demos Show documentation
Show all versions of swingset3-demos Show documentation
Demonstrating the abilities of the Swing UI Toolkit swingset2 and swingx aka swingset3
The newest version!
/*
* Copyright (c) 2005-2021 Radiance Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of the copyright holder nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.radiance.theming.internal.utils;
import org.pushingpixels.radiance.theming.api.RadianceThemingSlices;
import javax.swing.*;
import java.util.EnumSet;
import java.util.Set;
import java.util.WeakHashMap;
public class RadianceWidgetManager {
private static RadianceWidgetManager instance;
private Set globalAllowed;
private Set globalDisallowed;
private WeakHashMap> specificAllowed;
private WeakHashMap> specificDisallowed;
public static synchronized RadianceWidgetManager getInstance() {
if (instance == null) {
instance = new RadianceWidgetManager();
}
return instance;
}
private RadianceWidgetManager() {
this.globalAllowed = EnumSet.noneOf(RadianceThemingSlices.WidgetType.class);
this.globalDisallowed = EnumSet.noneOf(RadianceThemingSlices.WidgetType.class);
this.specificAllowed = new WeakHashMap<>();
this.specificDisallowed = new WeakHashMap<>();
}
public void register(JRootPane rootPane, boolean isAllowed,
RadianceThemingSlices.WidgetType... radianceWidgets) {
if (rootPane == null) {
for (RadianceThemingSlices.WidgetType widget : radianceWidgets) {
if (isAllowed) {
this.globalAllowed.add(widget);
this.globalDisallowed.remove(widget);
} else {
this.globalDisallowed.add(widget);
this.globalAllowed.remove(widget);
}
}
} else {
Set toAddTo = null;
Set toRemoveFrom = null;
if (isAllowed) {
toAddTo = this.specificAllowed.get(rootPane);
if (toAddTo == null) {
toAddTo = EnumSet.noneOf(RadianceThemingSlices.WidgetType.class);
this.specificAllowed.put(rootPane, toAddTo);
}
toRemoveFrom = this.specificDisallowed.get(rootPane);
} else {
toAddTo = this.specificDisallowed.get(rootPane);
if (toAddTo == null) {
toAddTo = EnumSet.noneOf(RadianceThemingSlices.WidgetType.class);
this.specificDisallowed.put(rootPane, toAddTo);
}
toRemoveFrom = this.specificAllowed.get(rootPane);
}
for (RadianceThemingSlices.WidgetType widget : radianceWidgets) {
toAddTo.add(widget);
if (toRemoveFrom != null) {
toRemoveFrom.remove(widget);
}
}
}
}
public boolean isAllowed(JRootPane rootPane, RadianceThemingSlices.WidgetType widget) {
if (this.specificDisallowed.containsKey(rootPane)) {
if (this.specificDisallowed.get(rootPane).contains(widget)) {
return false;
}
}
if (this.specificAllowed.containsKey(rootPane)) {
if (this.specificAllowed.get(rootPane).contains(widget)) {
return true;
}
}
if (this.globalDisallowed.contains(widget)) {
return false;
}
if (this.globalAllowed.contains(widget)) {
return true;
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy