- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 Java 开发新的外观和感觉;这种外观导入了 Material 风格。
我曾使用 UIDefault 导入外观中的更改,因此现在我必须卸载外观,并且此操作有问题。
外观和感觉 con 未正确删除,现在我已使用 UIDefault 映射进行所有操作,我认为这是一个错误,因为我的常量覆盖了旧常量,并且当我去删除我的外观和感觉时。新的外观和感觉不会覆盖我的不变
这就是我使用 UIDefault 的方式
@Override
protected void initComponentDefaults(UIDefaults table) {
super.initComponentDefaults(table);
table.put("Button.highlight", MaterialColors.GRAY_400);
table.put("Button.opaque", false);
table.put("Button.border", BorderFactory.createEmptyBorder(7, 17, 7, 17));
table.put("Button.background", MaterialColors.GRAY_200);
table.put("Button.foreground", MaterialColors.COSMO_BLACK);
table.put("Button.disabledBackground", MaterialColors.COSMO_DARK_GRAY);
table.put("Button.disabledForeground", MaterialColors.BLACK);
table.put("Button[Default].background", MaterialColors.LIGHT_BLUE_500);
table.put("Button[Default].foreground", Color.WHITE);
table.put("Button.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.BOLD));
//table.put("Button[Default].mouseHoverColor", MaterialColors.LIGHT_BLUE_200);
table.put("Button.mouseHoverColor", MaterialColors.GRAY_500);
table.put("Button.mouseHoverEnable", true);
table.put("Button.focusable", true);
table.put("Button[focus].color", MaterialColors.GRAY_900);
table.put("Button.disabledText", MaterialColors.GRAY_600);
table.put("CheckBox.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.BOLD));
table.put("CheckBox.background", MaterialColors.WHITE);
table.put("CheckBox.foreground", MaterialColors.BLACK);
table.put("CheckBox.disabledText", MaterialColors.COSMO_STRONG_GRAY);
table.put("CheckBox.icon", new ImageIcon(MaterialImageFactory.getInstance().getImage(MaterialImageFactory.UNCHECKED_BLACK_BOX)));
table.put("CheckBox.selectedIcon", new ImageIcon(MaterialImageFactory.getInstance().getImage(MaterialImageFactory.CHECKED_BLACK_BOX)));
table.put("ComboBox.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.REGULAR));
table.put("ComboBox.background", MaterialColors.WHITE);
table.put("ComboBox.foreground", MaterialColors.BLACK);
table.put("ComboBox.border", MaterialBorders.roundedLineColorBorder(MaterialColors.COSMO_BLACK));
table.put("ComboBox.borderItems", BorderFactory.createEmptyBorder(1, 2, 0, 1));
table.put("ComboBox.buttonBackground", MaterialColors.WHITE);
table.put("ComboBox[button].border", BorderFactory.createLineBorder(MaterialColors.WHITE));
table.put("ComboBox.disabledBackground", MaterialColors.WHITE);
table.put("ComboBox.disabledForeground", MaterialColors.GRAY_900);
table.put("ComboBox.selectionBackground", MaterialColors.WHITE);
table.put("ComboBox.selectionForeground", Color.BLACK);
table.put("ComboBox.selectedInDropDownBackground", MaterialColors.COSMO_LIGTH_BLUE);
table.put("ComboBox.mouseHoverColor", MaterialColors.WHITE);
table.put("ComboBox.unfocusColor", MaterialColors.COSMO_BLACK);
table.put("ComboBox.focusColor", MaterialColors.LIGHT_BLUE_400);
table.put("ComboBox.mouseHoverEnabled", false);
table.put("Menu.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.REGULAR));
table.put("Menu.border", BorderFactory.createEmptyBorder(5, 5, 5, 5));
table.put("Menu.background", Color.WHITE);
table.put("Menu.foreground", Color.BLACK);
table.put("Menu.opaque", true);
table.put("Menu.selectionBackground", MaterialColors.GRAY_200);
table.put("Menu.selectionForeground", MaterialColors.BLACK);
table.put("Menu.disabledForeground", new Color(0, 0, 0, 100));
table.put("Menu.menuPopupOffsetY", 3);
table.put("Menu[MouseOver].enable", true); //TODO adding into master
table.put("MenuBar.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.BOLD));
table.put("MenuBar.background", Color.WHITE);
table.put("MenuBar.border", MaterialBorders.LIGHT_SHADOW_BORDER);
table.put("MenuBar.foreground", MaterialColors.BLACK);
table.put("MenuItem.disabledForeground", new Color(0, 0, 0, 100));
table.put("MenuItem.selectionBackground", MaterialColors.GRAY_200);
table.put("MenuItem.selectionForeground", Color.BLACK);
table.put("MenuItem.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.MEDIUM));
table.put("MenuItem.background", Color.WHITE);
table.put("MenuItem.foreground", Color.BLACK);
table.put("MenuItem.border", BorderFactory.createEmptyBorder(5, 0, 5, 0));
}
这是我的应用程序,具有我的外观和感觉
这是我更改外观时的应用程序
这是更改外观的代码
public class DemoGUITest extends JFrame {
static {
try {
UIManager.setLookAndFeel(new MaterialLookAndFeel());
JDialog.setDefaultLookAndFeelDecorated(true);
} catch (UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
}
private static final DemoGUITest SINGLETON = new DemoGUITest();
public void reloadUI(){
SwingUtilities.updateComponentTreeUI(this);
}
public void changeThemeWith(BasicLookAndFeel lookAndFeel){
try {
UIManager.setLookAndFeel(lookAndFeel);
this.reloadUI();
} catch (UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
SINGLETON.initComponent();
}
});
}
}
这是一个最小的例子
主类
import com.sun.java.swing.plaf.gtk.GTKLookAndFeel;
import mdlaf.utils.MaterialColors;
import mdlaf.utils.MaterialFontFactory;
import javax.swing.*;
import javax.swing.plaf.BorderUIResource;
import javax.swing.plaf.ColorUIResource;
import javax.swing.plaf.metal.MetalLookAndFeel;
import java.awt.*;
import java.awt.event.ActionEvent;
/**
* @author https://github.com/vincenzopalazzo
*/
public class MaterialMain extends JFrame {
public static MaterialMain SINGLETON = new MaterialMain();
static {
try {
UIManager.setLookAndFeel(new LookAndFeelTest());
} catch (UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
}
public void init() {
JMenuBar menuBar = new JMenuBar();
JMenu file = new JMenu("File");
menuBar.add(file);
this.setJMenuBar(menuBar);
JPanel panel = new JPanel();
JButton changeTheme = new JButton();
changeTheme.setAction(new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
try {
UIManager.setLookAndFeel(new GTKLookAndFeel());
} catch (UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
SwingUtilities.updateComponentTreeUI(SINGLETON);
}
});
changeTheme.setText("Set GTK");
panel.add(changeTheme);
setTitle("Look and feel");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(630, 360);
add(panel);
setLocationRelativeTo(null);
setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
SINGLETON.init();
}
});
}
public static class LookAndFeelTest extends MetalLookAndFeel{
@Override
protected void initClassDefaults(UIDefaults table) {
super.initClassDefaults(table);
table.put("MenuUI", MenuTestUI.class.getCanonicalName());
table.put("ButtonUI", JButtonUI.class.getCanonicalName());
}
@Override
protected void initComponentDefaults(UIDefaults table) {
super.initComponentDefaults(table);
//table.put("Menu.font", new FontUIResource(MaterialFontFactory.getInstance().getFont(MaterialFontFactory.REGULAR)));
table.put("Menu.border", new BorderUIResource(BorderFactory.createEmptyBorder(5, 5, 5, 5)));
table.put("Menu.background", (Color.ORANGE));
table.put("Menu.foreground", (Color.BLACK));
table.put("Menu.opaque", true);
table.put("Menu.selectionBackground", new ColorUIResource(Color.YELLOW));
table.put("Menu.selectionForeground", new ColorUIResource(Color.BLACK));
table.put("Menu.disabledForeground", new ColorUIResource(new Color(0, 0, 0, 100)));
table.put("Menu.menuPopupOffsetY", 3);
//table.put("MenuBar.font", MaterialFontFactory.getInstance().getFont(MaterialFontFactory.BOLD));
table.put("MenuBar.background", (Color.ORANGE));
//table.put("MenuBar.border", MaterialBorders.LIGHT_SHADOW_BORDER);
table.put("MenuBar.foreground", (Color.BLACK));
table.put("Button.highlight", Color.ORANGE);
table.put("Button.opaque", false);
table.put("Button.border", BorderFactory.createEmptyBorder(7, 17, 7, 17));
table.put("Button.background", Color.ORANGE);
table.put("Button.foreground", Color.BLACK);
table.put("Button.focusable", true);
table.put("Button[focus].color", Color.GREEN);
}
}
}
菜单UI
import mdlaf.animation.MaterialUIMovement;
import mdlaf.components.menu.MaterialMenuUI;
import mdlaf.utils.MaterialManagerListener;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicMenuUI;
import java.awt.*;
/**
* @author https://github.com/vincenzopalazzo
*/
public class MenuTestUI extends BasicMenuUI {
public static ComponentUI createUI (JComponent c) {
return new MaterialMenuUI();
}
@Override
public void installUI (JComponent c) {
super.installUI (c);
JMenu menu = (JMenu) c;
menu.setFont (UIManager.getFont ("Menu.font"));
menu.setBorder (UIManager.getBorder ("Menu.border"));
menu.setBackground (UIManager.getColor ("Menu.background"));
menu.setForeground (UIManager.getColor ("Menu.foreground"));
menu.setOpaque (UIManager.getBoolean ("Menu.opaque"));
c.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
}
@Override
public void uninstallUI(JComponent c) {
menuItem.setFont (null);
menuItem.setBackground (null);
menuItem.setForeground (null);
menuItem.setBorder (null);
menuItem.setCursor(null);
MaterialManagerListener.removeAllMaterialMouseListener(menuItem);
super.uninstallUI(menuItem);
}
}
按钮UI
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicButtonUI;
import java.awt.*;
/**
* @author https://github.com/vincenzopalazzo
*/
public class JButtonUI extends BasicButtonUI {
public static final String UI_KEY = "ButtonUI";
public static ComponentUI createUI(final JComponent c) {
return new JButtonUI();
}
private AbstractButton button;
private Color foreground;
private Color background;
private Color disabledBackground;
private Color disabledForeground;
private Color defaultBackground;
private Color defaultForeground;
private Boolean isDefaultButton = null;
@Override
public void installUI(JComponent c) {
super.installUI(c);
AbstractButton button = (AbstractButton) c;
button.setOpaque(UIManager.getBoolean("Button.opaque"));
button.setBorder(UIManager.getBorder("Button.border"));
foreground = UIManager.getColor("Button.foreground");
background = UIManager.getColor("Button.background");
disabledBackground = UIManager.getColor("Button.disabledBackground");
disabledForeground = UIManager.getColor("Button.disabledForeground");
defaultBackground = UIManager.getColor("Button[Default].background");
defaultForeground = UIManager.getColor("Button[Default].foreground");
button.setBackground(background);
button.setForeground(foreground);
button.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
button.setFocusable(UIManager.getBoolean("Button.focusable"));
this.button = button;
}
@Override
public void uninstallUI(JComponent c) {
super.uninstallUI(c);
AbstractButton button = (AbstractButton) c;
button.setBorder(null);
foreground = null;
background = null;
disabledBackground = null;
disabledForeground = null;
defaultBackground = null;
defaultForeground = null;
button.setBackground(null);
button.setForeground(null);
button.setCursor(null);
}
@Override
public void paint(Graphics g, JComponent c) {
JButton b = (JButton) c;
if (b.isContentAreaFilled()) {
paintBackground(g, b);
}
if (isDefaultButton == null && b.isEnabled()) {
isDefaultButton = ((JButton) button).isDefaultButton();
if (isDefaultButton) {
paintStateButton(c, g);
}
}
super.paint(g, c);
}
private void paintBackground(Graphics g, JComponent c) {
Graphics2D graphics = (Graphics2D) g.create();
g.setColor(c.getBackground());
JButton b = (JButton) c;
if (!UIManager.getBoolean("Button[border].toAll") && (button.getIcon() != null)) {
g.fillRoundRect(0, 0, c.getWidth(), c.getHeight(), 7, 7);
} else {
g.fillRoundRect(0, 0, c.getWidth(), c.getHeight(), 7, 7);
if (isDefaultButton != null && isDefaultButton) {
g.setColor(UIManager.getColor("Button[Default].background"));
if(UIManager.getBoolean("Button[Default].shadowEnable")){
paintShadow(g, button);
}
return;
}
if(UIManager.getBoolean("Button[border].enable")){
paintBorderButton(graphics, b);
}
}
paintStateButton(c, g);
}
@Override
protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) {
// driveLine(g, (JButton) b);
paintFocusRing(g, (JButton) b);
//paintShadow(MaterialDrawingUtils.getAliasedGraphics(g), button);
}
@Override
public void update(Graphics g, JComponent c) {
super.update(g, c);
//c.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
}
@Override
protected void paintButtonPressed(Graphics g, AbstractButton b) {
g.fillRoundRect(0, 0, b.getWidth(), b.getHeight(), 7, 7);
}
protected void paintFocusRing(Graphics g, JButton b) {
Stroke dashed = new BasicStroke(1, BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER, 10.0f, new float[]{0f, 3f}, 10.0f);
//Stroke dashed = new BasicStroke(3, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL, 0, new float[]{9}, 0);
Graphics2D g2 = (Graphics2D) g.create();
g2.setStroke(dashed);
if (isDefaultButton) {
g2.setColor(UIManager.getColor("Button[Default][focus].color"));
} else {
g2.setColor(UIManager.getColor("Button[focus].color"));
}
g2.drawRoundRect(5, 5, b.getWidth() - 10, b.getHeight() - 10, 7, 7);
g2.dispose();
}
protected void paintShadow(Graphics g, JComponent c) {
int topOpacity = 80;
int pixels = UIManager.getInt("Button[Default].shadowPixel");
JButton b = (JButton) c;
int valueRed = 255;
int valueGreen = 255;
int valueBlue = 255;
for (int i = pixels; i >= 0; i--) {
if(valueBlue > 70){
valueRed -= 70;
valueGreen -= 70;
valueBlue -= 70;
}else{
valueBlue -= valueBlue;
valueGreen -= valueGreen;
valueRed -= valueRed;
}
Color result = new Color(valueRed, valueGreen, valueBlue, topOpacity);
g.setColor(result);
g.drawRoundRect(i, i, b.getWidth() - ((i * 2) + 1), b.getHeight() - ((i * 2) + 1), 7, 7);
}
}
protected void paintBorderButton(Graphics2D graphics, JButton b) {
graphics.setStroke(new BasicStroke(2f));
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
int w = b.getWidth() - 1;
int h = b.getHeight() - 1;
int arc = 7;
graphics.setColor(UIManager.getColor("Button[border].color"));
graphics.drawRoundRect(0, 0, w, h, arc, arc);
}
protected void paintStateButton(JComponent component, Graphics graphics) {
if (component == null || graphics == null) {
throw new IllegalArgumentException("Input null");
}
JButton b = (JButton) component;
if (b.isEnabled() && (isDefaultButton != null && isDefaultButton) && !b.isSelected()) {
//MaterialManagerListener.removeAllMaterialMouseListener(b);
//b.addMouseListener(MaterialUIMovement.getMovement(b, MaterialColors.LIGHT_BLUE_100));
b.setBackground(defaultBackground);
b.setForeground(defaultForeground);
return;
}
if (!b.isEnabled()) {
b.setBackground(disabledBackground);
b.setForeground(disabledForeground);
return;
}
}
}
但是即使我复制了我的代码,这段代码也没有重现问题;错误的演示是 here
我想问你问题是否是上面描述的问题,特别是如果我使用 UIDefault 不当
最佳答案
这可能是您使用 L&F 的问题。放入 UIManager
中的所有资源(基元除外)都必须是 javax.swing.plaf.UIResource
intreface 的实例。 Swing 提供了一些预定义的类,例如 ColorUIResource
、BorderUIResource
、IconUIResource
等,您可以在代码中使用它们。
为什么需要它?此界面告诉下一个 Look-n-Feel,在应用其设置时可以更改此设置。
代码示例:
table.put("OptionPane.warningDialog.titlePane.shadow", new ColorUIResource(MaterialColors.COSMO_STRONG_GRAY));
table.put("FormattedTextField.border", new BorderUIResource(BorderFactory.createEmptyBorder(3, 5, 2, 5)));
table.put("List.font", new FontUIResource(MaterialFontFactory.getInstance().getFont(MaterialFontFactory.MEDIUM)));
当您的工厂以 UIResource 实例的形式提供资源时,可能会更好。
重要
当我的建议不能帮助您解决问题时,请提供Minimal, Reproducible Example ,这样我们就可以更好地了解问题所在,还可以调试您的代码以提供适合您的情况的解决方案。
关于java - 如何使用 UIDefault 为 swing 创建新的外观和感觉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57367025/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!