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

Nimbus JOSE JWT Encryption with RSA, Private and Public Key

Having doubts about a concept applied in the sample code named "JSON Web Token (JWT) with RSA encryption" for reference see: http://connect2id.com/products/nimbus-jose-jwt/examples/jwt-with-rsa-encryption The sample code delivers an RSAEncrypter…
Claude Falbriard
  • 925
  • 8
  • 27
4
votes
2 answers

setOpaque() in java

Can anyone explain why Nimbius treats the setOpaque() differently than other java LaF's. Its breaking my code because components that are normally transparent no longer are. EDIT: The problem seems to only deal with JTextAreas (which is what I need)…
user489041
  • 27,916
  • 55
  • 135
  • 204
4
votes
1 answer

Change JTable non Content background color

I am writing a custom theme which is an extension of NimbusLookAndFeel. I want to redesign the table theme like My Table theme code import java.awt.BasicStroke; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import…
Kathi
  • 1,061
  • 1
  • 16
  • 31
4
votes
1 answer

How to achieve shadow effect using GradientPaint in Java swing?

I want to achieve this type of text fields in my project I wrote a painter class to set background for my text fields. This is my Main class in which i set Nimbus as Look and feel : import java.awt.FlowLayout; import javax.swing.JFrame; import…
Kathi
  • 1,061
  • 1
  • 16
  • 31
4
votes
1 answer

Nimbus - override color for TableHeader

I would like to override the background color of headers in JTables when using the Nimbus L&F. I'm effectively "theming" the Nimbus L&F, i.e. making small adjustments to it. Whatever I try it doesn't seem to have effect. Here's an SSCCS : public…
peterh
  • 18,404
  • 12
  • 87
  • 115
4
votes
3 answers

How to develop (locally) and deploy Storm Topology (remotely)?

I currently work with Netbeans on Windows machine to develop topologies. When I deploy in local mode: LocalCluster cluster = new LocalCluster(); cluster.submitTopology("word-count", conf, builder.createTopology()); everything works just fine, but…
Zack S
  • 1,412
  • 1
  • 23
  • 37
4
votes
2 answers

On using Nimbus look and feel, JButton vanishes totally in a JFrame if there is a background image

I have a JFrame. In that i have used: JTabbed panes. JButton. background images in a Jlabel which is added in JPanel. Nimbus look and feel. My problem is that whenever i use Nimbus look and feel the JButton vanishes only if there is a background…
user3320152
  • 113
  • 2
  • 7
4
votes
1 answer

Nimbus framework, using CocoaPods, with the Xcode 5 and iOS 7 SDK

Endless issues here: Nimbus itself is bloated and less maintained every day I feel, I am forced to upgrade Nimbus from 0.9.3 to 1.0.0 for various reasons Upgrading Nimbus from 0.9.3 to 1.0.0 has lots of changes (e.g., AFNetworking) Latest podspec…
Ali
  • 1,396
  • 14
  • 37
4
votes
2 answers

Nimbus not compatible with iOS 4.3 using cocoapods

when I try to use cocoapods to install Nimbus i get the following error: [!] Nimbus (1.0.0) is not compatible with iOS 4.3. I'm not sure where this iOS 4.3 came from.. but here are some more details: my Podfile content: platform :ios pod…
abbood
  • 23,101
  • 16
  • 132
  • 246
4
votes
2 answers

how to change background color for nimbus look and feel using java

In Java Swing application, I am trying nimbus look and feel. It looks excellent in JdesktopPane control but i want the different color for my all desktoppane but theme is fine. Is there any way to change the background color of nimbus look and…
adesh singh
  • 1,727
  • 9
  • 38
  • 70
4
votes
1 answer

Designing simple cell renderer for Nimbus look and feel

I have a simple-ish cell renderer which is composed of a few JLabels (the renderer itself extends JPanel) and I'm trying to get it to render sensibly in the Nimbus look and feel. Basically what is happening is that in the lighter rows (as Nimbus…
oxbow_lakes
  • 133,303
  • 56
  • 317
  • 449
4
votes
1 answer

nimbus look and feel is not available

I created an gui application in netbeans 7.2 in java. I created a JFrame there. it was set to nimbus look and feel in auto generated code. but my frame is not look like nimbus. so I debug the code and found nimbus is not available in the array…
lakshman
  • 2,641
  • 6
  • 37
  • 63
4
votes
2 answers

Nimbus Look And Feel adjust colors of menubar

I am trying to adjust the colors of the Nimbus Look and Feel but it is only working partially. Especially I have problems adjusting the colors of the menubar. Here is a running example: import java.awt.Color; import java.awt.Dimension; import…
hami
  • 443
  • 5
  • 13
4
votes
2 answers

Nimbus L&F - Change Background color of Progress Bar

i'm developing a little GUI application with Java using Netbeans Editor. I've put in a JFrame a simple Progress Bar. I'm developing the project with JDK7 I want to change the background Color from default Orange to a personal one. I've already tried…
Deviling Master
  • 3,033
  • 5
  • 34
  • 59
4
votes
2 answers

Java Swing - Nimbus L&F overrides custom icon in JTable header after sort is applied

I'm trying to create a custom cell renderer that will display an image in JTable's header cell. I've gotten the source code to work with the Metal L&F but I am encountering problems with Nimbus. Under normal circumstances, Nimbus displays the image…
Gregory Peck
  • 636
  • 7
  • 22