Используя Synth LaF, я не могу установить ЗАГЛУШЕННЫЙ цвет JLabel для состояния ОТКЛЮЧЕНО. кому-нибудь удалось это сделать? Вот определение стиля моей метки в моем файле LaF.xml.
<style id="whiteLabelStyle">
<opaque value="false"/>
<font name="Bitstream Vera Sans" size="16" />
<state>
<color type="FOREGROUND" value="WHITE"/>
</state>
<state value="DISABLED">
<color type="FOREGROUND" value="BLACK"/>
</state>
</style>
<bind style="whiteLabelStyle" type="name" key="WhiteOrbitLabel"/>
Обратите внимание, что все другие стили, определенные в моем файле LaF.xml, правильно отображаются в моем приложении, включая цвет белого состояния моего ярлыка (он никогда не становится черным, когда я выполняю lbl.setEnabled (false)
Также, просматривая код Synth, я нашел следующий комментарий в SynthStyle.getColor
if ((context.getComponentState() & SynthConstants.DISABLED) != 0) {
//This component is disabled, so return the disabled color.
//In some cases this means ignoring the color specified by the
//developer on the component. In other cases it means using a
//specified disabledTextColor, such as on JTextComponents.
//For example, JLabel doesn't specify a disabled color that the
//developer can set, yet it should have a disabled color to the
//text when the label is disabled. This code allows for that.
if (c instanceof JTextComponent) {
JTextComponent txt = (JTextComponent)c;
Color disabledColor = txt.getDisabledTextColor();
if (disabledColor == null || disabledColor instanceof UIResource) {
return getColorForState(context, type);
}
} else if (c instanceof JLabel
&& (type == ColorType.FOREGROUND || type == ColorType.TEXT_FOREGROUND)){
return getColorForState(context, type);
}
Но я не мог понять, как установить отключенный цвет для JLabel
Спасибо за вашу помощь!