Tagged Questions
The uimanager tag has no wiki summary.
6
votes
4answers
256 views
Changing colour of panel title in Java Swing
I am running a Swing application on Win7 using a 144 dpi flatscreen monitor. The titles of my frames, option panes, etc., all appear in white on a transparent background (Aero?). I like Aero in ...
6
votes
5answers
6k views
Swing UIManager.getColor() keys
is there a list somewhere of the UIManager.getColor() keys for Swing? I can't seem to find it online, just occasional references to strings like "Panel.background" and "Table.selectionBackground".
4
votes
3answers
196 views
Setting the Default Font of Swing Program in Java
I was wondering how to set the default font for my entire Java swing program. From my research it appears it can be done with UIManager, something to do with LookAndFeel, but I can't find specifically ...
4
votes
2answers
212 views
How do I use a default Nimbus color with UIManager?
I have a custom ListCellRenderer and would like to use the default Nimbus selection backround color. I can lookup the color with:
Color selectionBackground = ...
4
votes
3answers
838 views
Java Swing: A list of all UIDefaults properties
Question: Where can I get a list of all UIDefaults properties that exist in Swing?
I know of the possibility to write a small snippet of code that just extracts and displays them but I would like to ...
3
votes
3answers
52 views
What's a convenient way to set default settings for all JComponents
I want a way to set default settings like, background colour, size etc. for all components I use in my GUI, what's a convenient way to do this? so when I do new JButton or JLabel etc. it will already ...
3
votes
3answers
243 views
How to change the background color for JPanels with Nimbus Look and Feel?
I want to use a different background color for all my JPanels in an application. How can I do that when using Nimbus Look and Feel?
I follow Changing the Color Theme to change the color of components ...
3
votes
2answers
201 views
UI properties does not contain some keys
I have the following problem. I need to get an UI properties:
UIManager.getString("OptionPane.okButtonText")
that returns the string "OK", and it works. However, if I iterate through the UIDefaults ...
3
votes
1answer
652 views
Change JCheckBox/JRadioButton selection color
Is there a way to change the selection color of a checkbox/radiobutton?
3
votes
1answer
242 views
Swing UI does not have native OS look
I am building an application in java swing and I am using the following code to give the UI a native OS look
try {
UIManager.setLookAndFeel(
UIManager.getSystemLookAndFeelClassName());
} ...
3
votes
1answer
161 views
Where are the java swing String for me to translate?
The JFileChooser don't provide support for my language, I'd translate strings defined in the file http://www.rgagnon.com/javadetails/JavaUIDefaults.txt with the UIManager.put(),
but I'm not finding ...
2
votes
1answer
50 views
How can I change the UI of all components of a certain type?
How can I set the UI for all components in my application without having to reference each one of them using component.setUI(...); ?
For example, I have several custom JScrollbars throughout my ...
2
votes
1answer
322 views
Change JComboBox colours WITHOUT renderer
I can change the ComboBox background color using:
UIManager.put("ComboBox.background", Color.RED);
and it works.
But to change the [selected].background, having a look at Nimbus Defaults the ...
2
votes
1answer
99 views
Java application executing other Java application using Ant on Mac OS X
I´m working on a client-server Java-application that is meant to work on Mac OS X as well as Windows and Linux. The application has several different client modules which should be executed from a ...
2
votes
1answer
206 views
How to get the background color of a JList's unselected cell?
I am trying to find the color used by cells that are unselected. This is usually white, however when I call UIManager.getColor("List.background"), it appears to be the same grey color used for ...
2
votes
4answers
194 views
Java Swing - Globally Change Panels to Have Pink Background
I know that you can change the overall look and feel of an application by setting the "look and Feel". Is there a way to globally change components without writing a look and feel class? For example ...
1
vote
1answer
41 views
Extend swing colors to custom components
Implementing swing applications, often you realize class of components that should have a coherent look.
Example: Mypanel that extends JPanel and represents an applicative object and thus having a ...
1
vote
2answers
300 views
JOptionPane: Installing Custom icon has no effect when look and feel set
I would like to install a custom icon in place of the standard JOptionPane information icon..
I tried
ImageIcon myCustomIcon = ...;
UIManager.put("OptionPane.informationIcon", myCustomIcon);
...
1
vote
2answers
112 views
Java UIManager behavior
I am experimenting with the Java UIManager and the use of different Look and Feels. I am rapidly discovering that it is not simply a matter of setting the look and feel at the beginning of the ...
1
vote
1answer
223 views
Java update UIManager defaults and repaint components
I'm using UIManager to customize some swing components like the example below,
UIManager.put("TextField.background", COLOR_BG);
UIManager.put("TextField.foreground", COLOR_FG);
...
1
vote
1answer
326 views
What are the UIManager keys for JFileChooser and FileDialog?
I want to use the UIManager.get method in order to get and save the system look and feel for JFileChooser and FileDialog and then I want to change the look and feel.
The problem is that I don't know ...
1
vote
3answers
422 views
List of Java Swing UI properties?
There seem to be a ton of UI properties that can be set with
UIManager.put("key", value);
Is there a list somewhere of all keys that can be set?
0
votes
1answer
42 views
WindowsLookAndFeel - What font is used - Is there a way to change it
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
What font gets used? If I have an app, which is using the windowslookandfeel, is there a way to change the font used on ...
0
votes
1answer
2k views
java.lang.NoClassDefFoundError: Could not initialize class javax.swing.UIManager
I have meet this error,does anyone know why is it? Java Version: 1.6.0_16
java.lang.NoClassDefFoundError: Could not initialize class javax.swing.UIManager
at ...
0
votes
1answer
534 views
JTextField background color on enable/disable
i changed the background color of my JTextField to black when it is disabled. I do this using the UIManager and this property TextField.disabledBackground, that i set at application start up. I ...
0
votes
1answer
70 views
How to link identical GTK::UIManager XML menus?
My GTK application has the following UIManager XML. Is there a way to link those menus in the XML, so that I do not have to repeat myself?
<ui>
<menubar name="MenuBar">
...
0
votes
0answers
170 views
Changing defaults (color,font,..) in SWING in a cross platfrom way
I'm writing a Swing application in which I want to change the look and feel defaults before setting the look and feel. It seems that I can do it by calling put method of UIManager, and this will add ...
0
votes
0answers
173 views
JFileChooser missing labels under icons in left side panel
Does anyone know how to get the "Desktop", "My Documents" etc labels to appearing in a JFileChooser using windows look and feel & jnlp.
EDIT - Further Info:
It seems if I create a simple ...
0
votes
2answers
213 views
Java UIManager - What's the name of the area around a button
I'm using the Windows XP look and feel. On a panel containing a button there is a rectangular area around a button that looks like the area that a classic button would take up. That area is not ...
0
votes
1answer
210 views
PyGTk pictures not showing in menu
Recently I've started to learn pygtk . As an exercise, I am planing to build a small feed reader. Currently I have the following (working) code:
#!/usr/bin/env python
import pygtk
...
-1
votes
3answers
95 views
Java gui colors dont load
I've made a gui for my program and used
UIManager.put("Button.background", new Color(0,0,0));
UIManager.put("JButton.background", new Color(0,0,0));
to make the buttons appear black. ...