I've seen people use UIManager to change strings of some pre-created swing components (e.g. JFileChooser).
Where can I find some kind of reference that will tell me which strings in which components are changeable, and how can I access them?
To clarify:
I know that UIManager.put(key, newString);
will change text of string that key references to, to "newString"
.
Where can I find the list of keys?
Keys for UIManage
r are Look and Feel
s sensitive, means (for example) value Keys for Metal Look and Feel
could be diferrent when you comparing value from System Look and Feel
, notice or Key missed
too
use UIManager Defaults by @camickr
You're probably best of by dumping the list yourself using code like the following since keys might differ:
public static void printUIManagerKeys()
{
UIDefaults defaults = UIManager.getDefaults();
Enumeration<Object> keysEnumeration = defaults.keys();
ArrayList<Object> keysList = Collections.list(keysEnumeration);
for (Object key : keysList)
{
System.out.println(key);
}
}
For me the list contains 1365
elements on Windows 10
.
These keys are provided by Swing PLAF resource bundles, and you can find them in the JDK sources. See e.g.:
String values for languages other than English are provided by adjacent bundle files.
And you can add one more bundle to any of these families just by creating one more file for desired human language and placing it anywhere on your classpath. Bundles in .java and .properties format work equally well, though .java format may be slightly more Unicode-friendly...
It may be good to keep in mind though that direct adding of content to com.sun
package may violate the Java license. So to be on the safe side, it may be wise to move your extra resources to a package of your own and register it with UIManager
like this:
UIManager.getDefaults().addResourceBundle("mypackage.swing.plaf.basic.resources.basic");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With