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
3
votes
1 answer

Tool to graphically customize the Nimbus look and feel

I am looking for a tool that I used a few months ago, but I am not able to remember the name. This is a graphical tool for customizing the Nimbus Swing look and feel. On the right side of the window, there was a set of sample Swing components, and…
barjak
  • 10,842
  • 3
  • 33
  • 47
3
votes
2 answers

Apache Storm could not find leader nimbus from seed hosts

I have installed Apache-Storm using docker compose docker-compose.yml: kafka: image: spotify/kafka ports: - "9092:9092" - "2181:2181" environment: ADVERTISED_HOST: 172.16.8.37 ADVERTISED_PORT: 9092 nimbus: …
Asier Gomez
  • 6,034
  • 18
  • 52
  • 105
3
votes
1 answer

Set JTree selection background using Numbus L&F

How do I set the background color for selected items in a JTree when using Nimbus L&F ? The suggestions in old answers to similar questions did not work for Nimbus, so I tried: final UIDefaults def = new UIDefaults(); def.put( "Tree.background",…
FredK
  • 4,094
  • 1
  • 9
  • 11
3
votes
2 answers

JScrollBar don't show thumb in Nimbus L&F

I got a problem which only happens on Nimbus L&F. If there are too many items in a JList, the thumb of JScrollBar will disappear. But in metal L&F, the thumb will be always visible, because it has a min size. I have also checked the logic in Nimbus…
Alan
  • 33
  • 3
3
votes
1 answer

Wrong background colors in Swing ListCellRenderer

I'm currently trying to write a custom ListCellRenderer for a JList. Unfortunately, nearly all examples simply use DefaultListCellRenderer as a JLabel and be done with it; I needed a JPanel, however (since I need to display a little more info than…
Joey
  • 344,408
  • 85
  • 689
  • 683
3
votes
2 answers

Wrong colors in JList when using Nimbus and Java 8U20

My application uses wrong colors for JList since I updated to the latest Java 8 version (U20). E.g. instead of dark blue for selected items a light gray is actually used. Simple test application: import javax.swing.DefaultListModel; import…
problemzebra
  • 511
  • 6
  • 17
3
votes
6 answers

Set the Background Color for JTabbedPane

I am using Nimbus Look and feel. I needs to change the Background color and foreground color of the tab in JTabbedPane but the color doesn't set in JTabbedPane. I tried setForeground(), setForegroundAt(), setBackground() and setBackgroundAt()…
Ram
  • 254
  • 1
  • 7
  • 20
3
votes
2 answers

How to use Netbeans' indeterminate progress-bar style?

I'm programming a Java app using Nimbus look & feel. Unfortunately, the appearance of indeterminate JProgressBars of Nimbus look & feel is AWFUL (see below) : On the other hand, I've noticed Netbeans with Nimbus look & feel has a different…
Seyed Mohammad
  • 798
  • 10
  • 29
3
votes
4 answers

NimbusLookAndFeel cannot be resolved to a variable

I am trying to learn the basic GUI using swing. When I tried to activate/set nimbus, the following error is shown "com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel cannot be resolved to a variable". The error is shown in the…
sifat
  • 35
  • 1
  • 6
3
votes
1 answer

TTF and OTF versions of Source Sans Pro are differently displayed in Swing (Nimbus L&F)

ttf: otf: both are the same font but different fontfile types I am running Java 7 in Windows 7 According to Miguel Sousa by Adobe the bug is not in the fonts https://github.com/adobe/source-sans-pro/issues/32#issuecomment-23319673 I am just…
user753676
3
votes
1 answer

Get focus for JTextField in JFileChooser (NimbusLookAndFeel)

By default, a JFileChooser in NimbusLookAndFeel doesn't show focus on the JTextField where the user types the file path. The focus owner in JFileChooser is the JComboBox as show in the figure. Now how could i get the focus for the JTextField when…
JavaTechnical
  • 8,846
  • 8
  • 61
  • 97
3
votes
2 answers

Java / Swing -> Creating a notification JFrame, and the error "The frame is displayable"

Ok, I am not that versed in Java / Swing, and I am running into a problem. My application is throwing this error: "Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The frame is displayable." Google isn't turning up…
user978122
  • 5,531
  • 7
  • 33
  • 41
3
votes
2 answers

Remove space/border/margin of JTabbedPane

Image JtabbedPane http://img850.imageshack.us/img850/7339/immaginedya.png How can i remove the selected margin of a JTabbedPane? :(
SplitXor
  • 165
  • 1
  • 10
3
votes
2 answers

Changing the Look and Feel changes the color of JTextPane?

I had a JTextPane had a differen background and foreground color.Now when the L&F is changed to Nimbus L&F, my JTextPane 's color is changed.How come?Only this class is having such problem.While others works well.What is the problem? This is how i…
Jyoti Shaw
  • 43
  • 1
  • 6
3
votes
1 answer

Update LookAndFeel Values On The Fly

I want to be able to update the LookAndFeel attributes of my Swing GUI on the fly. In this case, I have a simple Swing/Awt game running what starts out as the Nimbus LookAndFeel. At various points after start up I want to change (let us say) just…
john_science
  • 6,325
  • 6
  • 43
  • 60