Questions tagged [nimbus]

Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release of the Java platform. Nimbus uses Java 2D vector graphics to draw the user interface, rather than static bitmaps, so the UI can be crisply rendered at any resolution.

Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release of the Java platform. Nimbus uses Java 2D vector graphics to draw the user interface, rather than static bitmaps, so the UI can be crisply rendered at any resolution. Nimbus is highly customizable. You can use the Nimbus look and feel as is, or you can skin (customize) the look with your own brand.

340 questions
0
votes
1 answer

Missing check square (JCheckBoxMenuItem) while using Nimbus java look and feel

I changed to Nimbus look and feel, as it is described here. It works fine except for JCheckBoxMenuItems, where the check squares disappeared. The selection color is incorrect too. This is the code of the popupmenu with the JCheckBoxMenuItems: public…
Bence Kaulics
  • 7,066
  • 7
  • 33
  • 63
0
votes
1 answer

Nimbus Look And Feel JTabbedPane Tab Background Color

I want to change the white background behind the tabs. I tried to set different UIDefaults in UIManager to no avail. I thought changing the panel inside the tabbedpane would do it but it also didn't. Does anyone know how? EventQueue.invokeLater(new…
mfrancisp
  • 119
  • 1
  • 2
  • 12
0
votes
0 answers

UIManager Won't Set Button Background

All, I am using java swing's UIManager to set this theme UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); This theme is terrible at differentiating disabled/enabled backgrounds for buttons, so I've been battling trying…
Constantin
  • 16,812
  • 9
  • 34
  • 52
0
votes
1 answer

Java nimbus - color differs sometimes even if It is same code

I am using Nimbus L&F , JDK 1.7 and Netbeans 8.0. I should customize Nimbus. However, when I run my project even without changing any code, some colors which I set by UIManager are changing. This is where I set Nimbus; try { for…
Emre
  • 79
  • 1
  • 11
0
votes
1 answer

Java Nimbus L&F issue Toolbar JButton

I have a problem with Nimbus Look and Feel when I use JToolbar and JButton in the Toolbar. I have the Problem just with Nimbus if I use Metal, the Button are shown correctly. The Buttons in the ToolBar are just Visible if they are clicked or…
Mangooxx
  • 1,313
  • 2
  • 12
  • 13
0
votes
1 answer

Changing the Foreground Color of ArrowButton of JComboBox in nimbus LaF

I want to change the foreground color of ArrowButton of JComboBox for particular states. I have tried to override the default key values using the painter. but it is not working. Here is my…
0
votes
1 answer

Apply color for Selected Text using JTextPane

I want to display selected text with user selected text color.I had select some text and click on settextcolor it was applied to all the text present in JTextPane not selected text.I want apply the color to selected text only.Please help me.. Here…
0
votes
1 answer

how to create Nimbus L&F live template in Intellij IDEA

i want to create a live template in Intellij IDEA to add Nimbus Look and Feel in my Code when use "nmbs+Tab" abbreviation. here is the code : try { for (javax.swing.UIManager.LookAndFeelInfo info :…
Mahdi Rashidi
  • 1,359
  • 3
  • 18
  • 33
0
votes
1 answer

Running Exclamation Topology failed

~/src/storm-0.8.1/bin/storm jar /root/src/storm-starter/target/storm-starter-0.0.1-SNAPSHOT-jar-with-dependencies.jar storm.starter.ExclamationTopology demo I tried to run this and it said that the problem is with the nimbus connection , but my…
Bilal
  • 122
  • 10
0
votes
1 answer

Why Java Swing JProgressBar is not working properly in Nimbu Look and Feel?

I am working on one simple java project which traverses through the specified directory and finds the redundant files. Everything except one thing is working fine, I am using JProgressBar to show the status of directory spanning. It is working just…
Rohit Dodle
  • 376
  • 4
  • 13
0
votes
0 answers

Nimbus look and feel. Change many colors

I am customizing the nimbus LAF colors to my taste. There are some colors that are used in many controls. For example Color (214,217,223) is used in many controls as background color. (see:…
geo
  • 517
  • 1
  • 9
  • 28
0
votes
0 answers

Missing 'top border' on JTabbedPane?

I am adding tabs to the pane like so: JTextPane field = new JTextPane(); field.setText("New test string"); field.setEditable(false); chatTabPane.addTab("Tab 1", null, new JScrollPane(field), …
Broak
  • 4,161
  • 4
  • 31
  • 54
0
votes
1 answer

Java error after changing Look and Feel to Nimbus

My application was working properly until I have changed look and feel to Nimbus. I have recieved below errors. It says something is wrong with my JTable. I have checked it, but there is nothing wrong with JTable. Edit I used threads to create…
Vijay Vennapusa
  • 169
  • 3
  • 15
0
votes
0 answers

How to change default color scheme of Nimbus L&F

I want to change Nimbus L&F color scheme in my desktop application. What is the best way for doing this? I tried the following approach, but it requires manual definition of a color for each component of the GUI. Is there any quick-way? For…
Klausos Klausos
  • 15,308
  • 51
  • 135
  • 217
0
votes
1 answer

3D Effect to buttons in java swing using nimbus

I have used Nimbus to create rounded corners for buttons in swing referring here: Use Nimbus to give rounded corners for JButton I now want to give a 3d look to the buttons. How should I go about this using nimbus? i had gone through nimbus but…
user2822187
  • 307
  • 2
  • 11
  • 26