gpt4 book ai didi

java - 为 JRadioButton 设置默认禁用字体颜色

转载 作者:搜寻专家 更新时间:2023-10-31 08:24:16 25 4
gpt4 key购买 nike

我有一个带有一些文本的 JRadioButton,其中包含 html 代码。当我将其设置为禁用时,文本颜色不会变为灰色或其他颜色。如何将其设置为默认禁用的组件文本颜色?我可以直接在文本中设置文本颜色,例如:

<html><font color=someColor>...

但是我怎样才能为禁用的组件文本获取默认颜色?我也尝试重写 paint 方法并使用类似这样的方法:

Graphics2D g2 = (Graphics2D) g.create();
g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.35f));
super.paintComponent(g2);
g2.dispose();

但我没有得到预期的结果 - 它变成了灰色,但与默认禁用的组件文本颜色不同。

因此,解决方案可能是从 UIManager.getColor("ComboBox.disabledForeground"); 获取禁用颜色导致此属性在所有操作系统中都可用。这是代码:

import javax.swing.*;
import java.awt.*;

public class HTMLJRadio extends JRadioButton {

static String prefixEnabled = "<html><body style='color: black;'>";
String text;
String prefixDisabled;

HTMLJRadio(String text) {
super(prefixEnabled + text);
this.text = text;
Color c = UIManager.getColor("ComboBox.disabledForeground");
String color = Integer.toHexString(c.getRed()) +
Integer.toHexString(c.getGreen()) +
Integer.toHexString(c.getBlue());
prefixDisabled = "<html><body style='color: #" + color + ";'>";
}

public void setEnabled(boolean enabled) {
super.setEnabled(enabled);
if (enabled) {
setText(prefixEnabled + text);
} else {
setText(prefixDisabled + text);
}
}

public static void showButtons() {
String htmlText = "<h1>Laf</h1><p>Ha Ha!";
JPanel p = new JPanel(new GridLayout(0, 1, 3, 3));
HTMLJRadio button1 = new HTMLJRadio(htmlText);
p.add(button1);
HTMLJRadio button2 = new HTMLJRadio(htmlText);
button2.setEnabled(false);
p.add(button2);

JRadioButton button3 = new JRadioButton("Non html disabled");
button3.setEnabled(false);
p.add(button3);
JOptionPane.showMessageDialog(null, p);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}
showButtons();
}
});
}
}

在 ubuntu 上它看起来像:

enter image description here

因此,带有 html 的禁用单选按钮看起来与没有内置 html 的禁用单选按钮非常相似。您也可以使用答案中的解决方案,并使用一些带有图像的魔法。


编辑:(由 A.T.)以前这个问题被标记为“正确”。经双方同意,OP 撤回了正确的标记,因为提供的答案没有涵盖屏幕截图中显示的细微差别。特别是下方按钮中文本周围的“浮雕”效果,将其与禁用的 HTML 格式按钮区分开来。

(我们双方)将不胜感激关于如何实现该效果的进一步建议。

最佳答案

来自 How to Use HTML in Swing Components :

...Note also that when a button is disabled, its HTML text unfortunately remains black, instead of becoming gray. (Refer to bug #4783068 to see if this situation changes.)


也许你可以从这样的事情开始。

import java.awt.*;
import java.awt.image.*;
import javax.swing.*;

class HTMLButton extends JButton {

static String prefixEnabled = "<html><body style='color: black;'>";
String text;
String prefixDisabled;

HTMLButton(String text) {
super(prefixEnabled + text);
this.text = text;
Color c = determineDisabledColorByWitchCraft();
//UIManager.getColor("Button.disabledText");
String color =
Integer.toHexString(c.getRed()) +
Integer.toHexString(c.getGreen()) +
Integer.toHexString(c.getBlue());
prefixDisabled = "<html><body style='color: #" + color + ";'>";
}

private static String getHex(int n) {
return Integer.toHexString(n);
}

public void setEnabled(boolean enabled) {
super.setEnabled(enabled);
if (enabled) {
setText(prefixEnabled + text);
} else {
setText(prefixDisabled + text);
}
}

public static Color determineDisabledColorByWitchCraft() {
// this is little 'block' character..
JButton b = new JButton(String.valueOf('\u2586'));
b.setSize(b.getPreferredSize());
b.setEnabled(false);
BufferedImage biDisabled = new BufferedImage(
b.getWidth(),
b.getHeight(),
BufferedImage.TYPE_INT_RGB);
Graphics g2 = biDisabled.getGraphics();
b.paint(g2);

// get the middle pixel..
int x = b.getWidth()/2;
int y = b.getHeight()/2;

return new Color(biDisabled.getRGB(x,y));
}

public static void showButtons() {
String htmlText = "<h1>Laf</h1><p>Ha Ha!";
JPanel p = new JPanel(new GridLayout(0,1,3,3));
HTMLButton button1 = new HTMLButton(htmlText);
p.add(button1);
HTMLButton button2 = new HTMLButton(htmlText);
button2.setEnabled(false);
p.add(button2);

JButton button3 = new JButton("Hi there!");
button3.setEnabled(false);
p.add(button3);
JOptionPane.showMessageDialog(null, p);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
showButtons();

try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(Exception e) {
}
showButtons();
}
});
}
}

使用默认禁用颜色的禁用按钮的屏幕截图

Disabled button


更新

(失败)尝试使用 CSS 定位获得效果。只是想我会报告最近的失败,以免其他人想知道它是否足够的麻烦。

这个 HTML:

<html>
<head>
<style type='text/css'>
body {
font-size: 16px;
}
.main {
position: fixed;
top: -16px;
left: 0px;
color: black;
}
.emboss {
position: fixed;
top: 0px;
left: 1px;
color: red;
}
</style>
</head>
<body>

<p class='emboss'><b>The quick brown fox jumped over the lazy dog.</b>
<p class='main'><b>The quick brown fox jumped over the lazy dog.</b>

</body>
</html>

它在浏览器(例如 FF)中呈现的很像这样:

CSS in broswer

..在 JEditorPane 中呈现如下:

CSS in Swing

:-(

关于java - 为 <html> JRadioButton 设置默认禁用字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6648578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com