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

Does Nimbus support Amazon-RDS?

I am considering using Nimbus for a cloud application. I know that Nimbus uses Cumulus but I don't know if it supports Amazon-RDS service (and it must because it is a requirement). Does anyone know?
Flame_Phoenix
  • 16,489
  • 37
  • 131
  • 266
0
votes
1 answer

nimbus as defalut

I'm using java 7 update 17 and netBeans IDE 7.3 I would to set the nimbus as default for every GUI project but oracle website instruction not working . how to set nimbus at default for every project ? I write my code manually without use…
Aladdin
  • 221
  • 1
  • 3
  • 11
0
votes
1 answer

a java multi thumb slider workable on nimbus look and feel

I needed a Multi Thumb Slider for java swing and i ended up using this Multi knob (thumb) JSlider in Swing, after applying several tweaks to it as required by my application i made it working perfectly for the default or Metal LAF.... However I now…
tariq khan
  • 62
  • 5
0
votes
2 answers

Making the first and last JList item highlight squared

I'm using the Nimbus look and feel. When I have a JList and I select the first or the last item the highlight is rounded. Normally it's a square shape. How do I change it to square as the other elements?
MikkoP
  • 4,864
  • 16
  • 58
  • 106
0
votes
1 answer

Swing: Nimbus L&F disabled combobox background-color

I have searched for an answer for days and read a lot about LookAndFeels and the opaque-issue, but couldn't find a solution. I am developing a Java Application with Swing, using NimbusLookAndFeel. I am satisfied with the look overall, but still want…
Mario B
  • 2,102
  • 2
  • 29
  • 41
0
votes
1 answer

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 ColorUIResource(Color.red) ); SwingUtilities.updateComponentTreeUI(…
awatan
  • 1,182
  • 15
  • 33
0
votes
1 answer

netbeans java se swing components' look switch to the old

I am using NetBeans 7.2.1, I want to create a Java SE Frame with Panels, swing components. At the begining, my program's swing components are "beautiful", by the NimbusLookAndFeal. I didn't have to setup anything about it, it was working at the…
victorio
  • 6,224
  • 24
  • 77
  • 113
0
votes
1 answer

JInternalFrame not using JFrame L&F in Netbeans 7.1.2

I'm creating a MDI application with Netbeans, everything's working well as expected with the Look and Feel set to Nimbus. Anytime I run the application, the JFrame and its toolbars use the specified L&F (Nimbus) but the Internal Frames use the…
0
votes
1 answer

Merging JTextArea with JTextPane

My program originaly had JTextAreas, but when I needed to change spacing between rows of characters, I was forced to use JTextPanes. But JTextPane dont have any borders by default (unlike JTextAreas) and differ from JTextAreas in several visual…
Karlovsky120
  • 6,212
  • 8
  • 41
  • 94
0
votes
2 answers

Nimbus JTextArea default border

So, I have a JTextArea in my program which uses Nimbus LAF. I need to swap it for JTextPane because of some functionality issues. However, JTextArea has a painted border by default. JTextPane does not. I do not know which is the JTextArea's default…
Karlovsky120
  • 6,212
  • 8
  • 41
  • 94
0
votes
1 answer

UIManager strings

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 text printed on save button of JFileChooser Where does it fetch…
Ivan Karlovic
  • 221
  • 5
  • 14
0
votes
2 answers

JTextArea background issue

private JDialog dialog; private JTextArea text; private JPanel buttons, filler; private JRadioButton questions, list; private ButtonGroup group; private JButton confirm; dialog = new JDialog(Main.masterWindow, lang.getString("newTitle"),…
Ivan Karlovic
  • 221
  • 5
  • 14
0
votes
0 answers

Editing Nimbus look and feel core files

I have Nimbus source files (extracted from source.zip). How do I change them and than create a new L&F out of them? I don't want to change anything on runtime but prior to compiling my program and add my L&F as a resource.
Ivan Karlovic
  • 221
  • 5
  • 14
0
votes
1 answer

Extensive L&F modification

I want to use multiple L&Fs in my application, but that makes translating my application very complicated, due to differences between various L&Fs... So I thought to myself, why don't I download L&F I want to use and then edit them in a way they all…
Ivan Karlovic
  • 221
  • 5
  • 14
0
votes
1 answer

NIToolBarPhotoViewController to display images from a selected image

I am using Nimbus to display photos. I have a tableviewcontroller displaying list of filenames. When the user select particular file (if an image) , it displays all the image files in viewcontroller extended from NIToolBarPhotoViewController…
tech savvy
  • 1,417
  • 4
  • 21
  • 42
1 2 3
22
23