SystemTray/test/dorkbox/CustomSwingUI.java

141 lines
5.2 KiB
Java
Raw Normal View History

/*
* Copyright 2017 dorkbox, llc
*
* 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 dorkbox;
import java.awt.Color;
import java.awt.Insets;
import javax.swing.JComponent;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import javax.swing.JSeparator;
import javax.swing.border.EmptyBorder;
import javax.swing.plaf.MenuItemUI;
import javax.swing.plaf.PopupMenuUI;
import javax.swing.plaf.SeparatorUI;
import dorkbox.systemTray.Entry;
import dorkbox.systemTray.Menu;
2017-07-01 16:07:31 +02:00
import dorkbox.systemTray.swingUI.SwingUIFactory;
import dorkbox.systemTray.util.HeavyCheckMark;
import dorkbox.util.swing.DefaultMenuItemUI;
import dorkbox.util.swing.DefaultPopupMenuUI;
import dorkbox.util.swing.DefaultSeparatorUI;
/**
* Factory to allow for Look & Feel of the Swing UI components in the SystemTray.
*
* This implementation is provided as an example of what looks reasonable on our systems for Nimbus. Naturally, everyone will have
* different systems and thus will want to change this based on their own, specified Swing L&F.
*
* NOTICE: components can ALSO have different sizes attached to them, resulting in different sized components
* mini
* myButton.putClientProperty("JComponent.sizeVariant", "mini");
* small
* mySlider.putClientProperty("JComponent.sizeVariant", "small");
* large
* myTextField.putClientProperty("JComponent.sizeVariant", "large");
*/
public
class CustomSwingUI implements SwingUIFactory {
/**
* Allows one to specify the Look & Feel of the menus (The main SystemTray and sub-menus)
*
* @param jPopupMenu the swing JPopupMenu that is displayed when one clicks on the System Tray icon
* @param entry the entry which is bound to the menu, or null if it is the main SystemTray menu.
*
* @return the UI used to customize the Look & Feel of the SystemTray menu + sub-menus
*/
@Override
public
PopupMenuUI getMenuUI(final JPopupMenu jPopupMenu, final Menu entry) {
return new DefaultPopupMenuUI(jPopupMenu) {
@Override
public
void installUI(final JComponent c) {
super.installUI(c);
2017-07-01 16:07:31 +02:00
JPopupMenu popupMenu = (JPopupMenu) c;
// borderUI resource border type will get changed internally!
// setBorder(new BorderUIResource.EmptyBorderUIResource(0, 0, 0, 0));
2017-07-01 16:07:31 +02:00
popupMenu.setBorder(new EmptyBorder(1, 1, 1, 1));
}
};
}
/**
* Allows one to specify the Look & Feel of a menu entry
*
* @param jMenuItem the swing JMenuItem that is displayed in the menu
2017-03-02 23:28:31 +01:00
* @param entry the entry which is bound to the JMenuItem. Can be null during initialization.
*
* @return the UI used to customize the Look & Feel of the menu entry
*/
@Override
public
MenuItemUI getItemUI(final JMenuItem jMenuItem, final Entry entry) {
return new DefaultMenuItemUI(jMenuItem) {
@Override
public
void installUI(final JComponent c) {
super.installUI(c);
2017-07-01 16:07:31 +02:00
JMenuItem menuItem = (JMenuItem) c;
menuItem.setIconTextGap(8);
menuItem.setMargin(new Insets(2, -2, 2, 4));
c.setBorder(new EmptyBorder(1, 1, 1, 1));
}
};
}
/**
* Allows one to specify the Look & Feel of a menu separator entry
*
* @param jSeparator the swing JSeparator that is displayed in the menu
*
* @return the UI used to customize the Look & Feel of a menu separator entry
*/
@Override
public
SeparatorUI getSeparatorUI(final JSeparator jSeparator) {
return new DefaultSeparatorUI(jSeparator);
}
/**
* Get the path to a CheckMark image for a specified color, size, and padding.
* <p>
* This is necessary because Swing does not have correct spacing when rendering CheckMark menu items next to
* normal menu menu items (with, or without, images attached).
*
* @param color the color of the CheckMark
* @param checkMarkSize the size of the CheckMark inside the image. (does not include padding)
*
* @param paddingTop amount of padding to apply to the top edge of the icon.
* @param paddingLeft amount of padding to apply to the left edge of the icon.
* @param paddingBottom amount of padding to apply to the bottom edge of the icon.
* @param paddingRight amount of padding to apply to the right edge of the icon.
*/
@Override
public
String getCheckMarkIcon(Color color, int checkMarkSize, int paddingTop, int paddingLeft , int paddingBottom, int paddingRight) {
return HeavyCheckMark.get(color, checkMarkSize, paddingTop, paddingLeft, paddingBottom, paddingRight);
}
}