The uimanager tag has no wiki summary.
0
votes
2answers
44 views
Setting FileChooserUI property in UIManager to the system's
I want to have my JFileChooser use the system's LookAndFeel, but have the rest of my components use Nimbus. Since each platform provides a different FileChooserUI, how would I set the FileChooserUI ...
0
votes
1answer
55 views
Set filechooser Colors with Nimbus L&F
I'm using custom Colors with Nimbus. After hours of searching I can't find out how to set the Background and Foreground colors for JFilechooser properly.
My (non working) code:
...
0
votes
1answer
72 views
Change JButton's Disabled Foreground (Font) Color for Windows
I realize this sounds a LOT like many of the questions already posted out there, but please read on; this has a seemingly similar problem but has not worked with many solutions already provided.
I am ...
0
votes
0answers
38 views
How to create a java.awt.Font object available for the whole application instance in java? [duplicate]
I need to create a java.awt.Font object for my project and it needs to be available for the whole application. I cannot install the font to the system and any help regarding creating the font object ...
0
votes
0answers
53 views
UImanager look and feel partially working/ Java programming
I wanted to change the graphics of the default JFrame by using the UImanager.
UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
This works on the main frame but if I call ...
0
votes
0answers
7 views
make FlaggedDates with a unselectableDates icon background ? is that possible?
How do we make the unselectableDates ( with the Red cross ) selectable
Let me say it that way : ie: have a FlaggedDates with the (unselectableDates icon )
Is this possible ?
-4
votes
2answers
65 views
How to get back the original look and feel color of a button after changing its color? [closed]
I changed the color of my button. Now I want its original look and feel back. I want to change the color once to a color that i like. After that, I want the button to get its original look back.
How ...
0
votes
1answer
84 views
JTree implementation
For some strange reason when I implement a JTree in java I don't see the expansion lines (angled) on Mac OSX; but when the tree is expanded to show all the nodes, I see them on Windows. I have tried ...
0
votes
2answers
57 views
UIManager.getColor returns null sometimes
I have an applet that is generating a nullpointer exception at this line (but only sometimes) at load time:
(txtpnNoSeHa is a JEditorPane inside a class that extends JPanel. This panel is ...
0
votes
0answers
49 views
Overriding a tooltip
Well as the title says, I want to create my own tooltip with it's own look and feel, the thing is, where should I begging? I've created a class extending JToolTip, and another extending from ToolTipUI ...
0
votes
1answer
89 views
Error when changing the look and feel(UIManager) of the swing application
Hello I have an interface which user can change the look and feel . Here is the interface:
http://www.hostingpics.net/viewer.php?id=579250themesApp.jpg
and the code of each button:
//The JDesktop ...
2
votes
1answer
57 views
How to globally change the ActionMap of Swing JTextFields?
I want to change the ActionMap of Swing JTextFields in my entire Application by replacing a few actions by my custom implmentations. For an explanation why you can refer to the following post:
How ...
0
votes
1answer
42 views
custom ui delegates for TreeUI
For some reason, my TreeUI doesn't get applied. I am using MetalTheme and want to customize the TreeUI. So, I started by copying the TreeUI code and renaming the class EzTreeUI. Am I doing this right ...
1
vote
1answer
80 views
what do these swing color names mean
Some of the names are clear, like background, foreground, focus etc. But some are just confusing, like light, hightlight, shadow, darkshardow etc. I noticed that these are consistently used in swing ...
1
vote
1answer
411 views
Java UIManager - Change ComponentsStyle
I want to change my componentstyle by using UIManager.
For example:
I click on a Button and the Button foreground changes from black to green. The same for a JCheckbox.....
In my example the ...
1
vote
0answers
147 views
Customizing the theme for Metal LookAndFeel
Currently my application is running on Windows environment and as per new requirement we need port on Linux.
But my application is using the Windows look and feel which is only supported on windows ...
5
votes
2answers
601 views
JProgressBar Changing Bar Color dynamically
I am using JProgressBar component along with the Nimbus UI Defaults. The problem is that When I want to manually change each progressbar's Bar color, I use BasicProgressBarUI by setting ...
0
votes
3answers
132 views
Customizing Tree.collapsedIcon for a single JTree
I know that you can change the Tree.collapsedIcon for a all JTrees in an application using Swing using the UImanager. For example:
UIManager.put("Tree.collapsedIcon",closedcabinet);
I would like ...
0
votes
1answer
268 views
Use SyntheticaBlackEye with java 7
I want to use the look and feel named SyntheticaBlackEye with my java application, so I downloaded the jar files of the look and feel from here then I put the jar file inside the library folder of my ...
0
votes
1answer
143 views
UIManager Changes color only once (Nimbus)
Refer to this bug:
4848910 : UIManager only updates colors once
I have two buttons on a JFrame. From first button I am changing LAF Color by
UIManager.put( "Button.background", new ...
0
votes
0answers
42 views
How updateUI of jfilechooser Affect on return file?
what is Problem here??
the problem is file opject on collection doesnt write on file
this class of jfilechooser calling it from panel
if convert file chooser to java defult ui (without ...
1
vote
1answer
245 views
How can I change the “minimize, maximize and close” icons of a internal frame with Nimbus Laf?
I'm using Nimbus Look and Feel,
I know how to change for example, the tooltip color, by using this code:
UIManager.put("info", Color.white);
But how can I change the icons (minimize, maximize and ...
1
vote
1answer
159 views
How to reset panel look and feel in java? [duplicate]
Possible Duplicate:
Panel losing color
When I click on the button that activates the file chooser, and add the resulting file the panel color disappears couse using uimanager to display ...
2
votes
1answer
260 views
Swing: remove focus border from dialogues' buttons
I wonder how can I remove this grey border from buttons in dialogues?
For simple JButtons I found a solution - just use button.setFocusPainted(false);
But is there a simple way to perform the same ...
0
votes
1answer
91 views
Setting look and feel to windows does not change for scroll bars and other
So i used the following code to set the look and feel of my program to windows since i don't really like any of the themes like nimbus or the default swing theme but some component are still appearing ...
0
votes
2answers
323 views
How to change background color of JTabbedPane in runtime?
I have founds loads of examples that change the background color of JTabbedPane using either setBackgroundAt() and UIManager.put("JTabbedPane...")
However, I want to create an onclick event on a ...
1
vote
2answers
216 views
Swing: Resizing RadioButton
I need to implement font size switching in my app. But when I increase font's size RadioButtons remain same size and on small screen with high resolution my customer just can't hit it easily. Is there ...
3
votes
1answer
203 views
Java Metal Look & Feel hides Windows toolbar when maximized
In my application we use CrossPlatform L&F (metal) and we want to launch the main JFrame maximized. When executing I find the windows toolbar hidden. This does not happen if I use System L&F.
...
1
vote
2answers
263 views
how to increase the size of jspinner arrows as per touch screen requirements on desktop
Hi Can anybody help me to
how to increase the size of jspinner arrows as per touch screen requirements on desktop
1
vote
1answer
380 views
How to change default font in netbeans platform?
I'd like to know how to change the default font used in netbeans platform. I'm not asking for changing the font in the Netbeans IDE but in the platform, then all my derived applications would use this ...
0
votes
1answer
103 views
UIManager strings [duplicate]
Possible Duplicate:
Location of String keys in L&F
This here is a line in my code:
UIManager.getString("FileChooser.saveButtonText", l);
This will return a string that represents ...
0
votes
2answers
204 views
Location of String keys in L&F
There are several components in Java that have predefined look and strings of text that are automatically printed on them. Examples is JFileChooser.
Also, there is a JDialog (or JOptionPane) that ...
1
vote
1answer
117 views
Overriding LookAndFeel
Hello I am trying to change the colors of my swing progress bar in java.
Initially I tried using the following code:
UIManager.put("ProgressBar.selectionBackground", Color.black);
...
2
votes
2answers
786 views
TitledBorder border color and width using UIManager
To change all TitledBorder fonts, I am using UIManager:
UIManager.put("TitledBorder.font", new Font("Tahoma", Font.BOLD, 11));
But what to put to TitledBorder.border property to change only the ...
1
vote
1answer
49 views
Localization and L&Fs
I thought it would be nice if I gave the user the ability to choose and switch between "themes" (L&Fs). I'd give him a choice between Java metal (default), System default, and maybe a couple more ...
3
votes
1answer
434 views
Java UIManager key list
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 ...
2
votes
2answers
1k views
Set look and feel color
I'm using the Nimbus Look & Feel within my Java Swing application.
The L&F looks great, but i need to change some settings (Fonts, Colors, ... ) to fit the corporate identity of my firm.
The ...
4
votes
1answer
78 views
Override UIManager value for single object
Is it possible to override the UIManager properties for specific objects?
For example, my UI Manager has
[Label.background] => (ColorUIResource) ...
0
votes
0answers
228 views
What does “UIDefaults.getUI() failed: no ComponentUI class for” mean?
I get that error, it is followed by saying for: javax.help.JHelp[,0,0,0x0,invalid,.....
I am doing this while trying to open a JavaHelp window using CSH.DisplayHelpFromSource(HelpBroker helpBroker). ...
0
votes
1answer
224 views
JToolBar always float
When you add a JToolBar to a component, you can drag it out and it create a new floating window while the parent component is also there. How can I make JToolBar show this floating window ...
0
votes
1answer
691 views
Change background color of ScrollBar end buttons
In Java, I've been researching how to change background color of the buttons on the ends of a scroll bar. I haven't found a site that explained how and I've also looked through the UIManager Defaults ...
2
votes
1answer
177 views
Transparent UI (+UIManager) artifacts
I've got an application which draws a background image on a panel, but to achieve the optimal UI, I need to set Component backgrounds Transparent:
I made every component transparent by using the UI ...
0
votes
1answer
529 views
JTabbedPane Transparency
How do you set the actual content pane's background to be Opaque, the panels that I add to it I have already set Opaque but the tabbedpane main area keeps showing up as blue even when I do
...
3
votes
2answers
750 views
JTextField with JLabel style using GTKLookAndFeel
I need a JTextField with a JLabel style (in other words, I need a JLabel but I want to able to select the text).
JTextField value = new JTextField(valueText);
value.setEditable(false);
...
3
votes
1answer
2k views
Change Color SetEnabled
My question is this:
Default change the color to give a JTextField setEnabled (false) for example is black and proven with UIManager results but have not had any suggestions.
Greetings.
2
votes
2answers
2k views
Change Font globally for whole frame JAVA
im trying to change font globally for whole application, the problem is, i am able to do this only once. here is the code which helps you recreate the problem.
/*
* To change this template, choose ...
2
votes
4answers
3k views
How to set jframe look and feel
I am kind of confused on where to put this :
try {
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
...
1
vote
1answer
669 views
Java - How to get the default font size of a JTextPane
I have a JTextPane, and I'm trying to get the default font size of the JTextPane.
I've tried looking for methods such as getFontSize() and getTextSize(), but none seem to exist. I'm clearly missing ...
3
votes
1answer
320 views
Java Nimbus Button.foreground not working
I am using the Nimbus LAF on my application and I want to change all buttons foreground colors. I do this setting:
UIManager.put("Button.foreground", Color.WHITE);
But this is not working. Maybe it ...
3
votes
4answers
3k views
How to set all Java Swing GUI component backgrounds and foreground(fonts) colors at once?
I have tons of jbuttons, jtextfields, jlabels, jmenus, gui items and it is extremely time consuming to set the background color and foreground color one at a time.
I want to be able to color the ...


