-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8075917: The regression-swing case failed as the text on label is not painted red with the GTK L&F #17763
8075917: The regression-swing case failed as the text on label is not painted red with the GTK L&F #17763
Changes from 1 commit
ee15cbd
7775db1
4403e6c
2ccca3f
360e21e
2882785
56268d4
ee16ea2
27400b2
57d4c66
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -184,31 +184,31 @@ else if (type == GTKColorType.WHITE) { | |
|
||
if (id == Region.LABEL && type == ColorType.FOREGROUND | ||
&& (state & SynthConstants.ENABLED) != 0) { | ||
Color c = (Color) get(context, "Label.foreground"); | ||
if (c != null) { | ||
return c; | ||
} | ||
return getLAFDefinedColor(context, state, type, "Label.foreground"); | ||
} | ||
|
||
if (id == Region.CHECK_BOX && type == ColorType.FOREGROUND | ||
&& (state & SynthConstants.DISABLED) != 0) { | ||
Color c = (Color) get(context, "CheckBox.disabledText"); | ||
if (c != null) { | ||
return c; | ||
} | ||
return getLAFDefinedColor(context, state, type, "CheckBox.disabledText"); | ||
} | ||
|
||
if (id == Region.RADIO_BUTTON && type == ColorType.FOREGROUND | ||
&& (state & SynthConstants.DISABLED) != 0) { | ||
Color c = (Color) get(context, "RadioButton.disabledText"); | ||
if (c != null) { | ||
return c; | ||
} | ||
return getLAFDefinedColor(context, state, type, "RadioButton.disabledText"); | ||
} | ||
|
||
return getStyleSpecificColor(context, state, type); | ||
} | ||
|
||
private Color getLAFDefinedColor(SynthContext context, int state, | ||
ColorType type, String propertyName) { | ||
Color c = (Color) get(context, propertyName); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess these condition checks should also be done inside the method since you are passing the values anyway... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The enabled state is not handled in Metal LAF also, tried adding the enabledText property by setting ui property -- but the checkbox/radiobutton is painted with default black color. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Backtracking a bit, regarding Other L&F, it is added in corresponding LookAndFeel class and additionally there is setting of Please check if it will work There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will check and update. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
IN GTKLookAndFeel, the color is returned specific to the style and state from native side . So, even if it is not added the default color for enabled, disabled or any other state is returned by native. Whereas In Metal the color is set by using UIManager define color.
This properties are set via SynthStyle installDefaults method where the foreground, background are set by getting the value from I checked for JLabel properties set in enabled and disabled state.
It works as expected for Metal and GTK. For Nimbus LAF, disabled color is not painted correctly. In stead the default color specified in skin.laf is rendered. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For HTML text, disabled state doesn't render in LAF defined color for Metal and GTK as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks weird… So you're saying Shouldn't we fix the problem by correcting the keys instead? It looks like it's what you're doing for specific components. Is it specified anywhere that Synth-based L&Fs use different constants? It results in incorrect colors. If a developer sets the common properties, should they override Look-and-Feel defaults? |
||
if (c != null) { | ||
return c; | ||
} | ||
return getStyleSpecificColor(context, state, type); | ||
} | ||
|
||
/** | ||
* Returns color specific to the current style. This method is | ||
* invoked when other variants don't fit. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
|
||
/* | ||
* @test | ||
* @bug 4248210 8075917 | ||
* @bug 4248210 8075917 4314194 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 4314194 remove from here.. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess both 8075917 4314194 needs to be removed as this PR is not having any product fix and this test is just being opensourced.. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated. |
||
* @key headful | ||
* @summary Tests that HTML in JLabel is painted using LAF-defined | ||
foreground color | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't
SynthConstants.DISABLED
need the same treatment?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I am working on it to fix the disabled case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@prsadhuk @aivanov-jdk
I extended the fix for disabled state in GlyphView's paint method to honor the user defined LAF color if at all it is set.
But
open/test/jdk/javax/swing/text/html/Test4783068.java
test failed in CI, associated bug JDK-4783068 says thatComponents with HTML text should gray out the text when disabled
.Now the question is "Should we handle the disabled HTML text" ?