A Look and Feel Question

W

WDW

How can I reset the UIDefaults before installing a new theme:?
I will explain ...
I set the cuurent theme to my own theme
MetalLookAndFeel.setCurrentTheme(myTheme);
with following changes to the UIDfeaults:
public void addCustomEntriesToTable(UIDefaults table) {
super.addCustomEntriesToTable(table);
Color c1 = new Color(255, 0, 255);
table.put("Button.foreground", c1);
}
After changing the theme to another theme - ie DefaultMetalThem - the
foreground color of the button is still pink ...

Some help please
TIA
Willy
 
T

Thomas Fritsch

WDW said:
How can I reset the UIDefaults before installing a new theme:?
I will explain ...
I set the cuurent theme to my own theme
MetalLookAndFeel.setCurrentTheme(myTheme);
with following changes to the UIDfeaults:
public void addCustomEntriesToTable(UIDefaults table) {
super.addCustomEntriesToTable(table);
Color c1 = new Color(255, 0, 255);
table.put("Button.foreground", c1);
}
After changing the theme to another theme - ie DefaultMetalThem - the
foreground color of the button is still pink ...

Some help please
TIA
Willy
May be
SwingUtilities.updateComponentTreeUI(yourFrame);
fixes this.
See http://java.sun.com/docs/books/tutorial/uiswing/misc/plaf.html#dynamic
 
Z

zoopy

How can I reset the UIDefaults before installing a new theme:?
I will explain ...
I set the cuurent theme to my own theme
MetalLookAndFeel.setCurrentTheme(myTheme);
with following changes to the UIDfeaults:
public void addCustomEntriesToTable(UIDefaults table) {
super.addCustomEntriesToTable(table);
Color c1 = new Color(255, 0, 255);
table.put("Button.foreground", c1);
}
After changing the theme to another theme - ie DefaultMetalThem - the
foreground color of the button is still pink ...

Some help please
TIA
Willy


<untested>
UIManager.getDefaults().putAll(new MetalLookAndFeel().getDefaults());
</untested>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top