Nimbus is a polished cross-platform look and feel introduced in the Java SE 6 Update 10 (6u10) release of the Java plataform. 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.

learn more… | top users | synonyms

-1
votes
0answers
31 views

How to remove/set JTextArea border in JTable cell in Nimbus look and feel

I have extended JTextArea in TableCellRenderer because I wanted to achieve the Multiline text wrapping Mentioned in this SO question and that is working fine. Now I have ran into weird problem with ...
0
votes
1answer
30 views

how to make Indeterminate progressbar look nicely?

I'm using nimbus lookAndFill UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); and my indeterminate JProgressBar looks like that: ...
1
vote
1answer
42 views

Use Nimbus look and feel on Netbeans IDE 7.1.2

In Netbeans IDE 7.1.2 by default i have three look and feel: Metal; CDE/Motif; GTK+. Is it possible to add the Nimbus or other look and feel? Thanks. (i downloaded the Netbeans 7.3 but there are ...
1
vote
1answer
24 views

Can not override Nimbus properties

I have e.g. UIDefaults defaults = UIManager.getLookAndFeelDefaults(); defaults.put("text",Color.GREEN);` The text is still black, but why?. import java.awt.*; import java.awt.event.*; import ...
0
votes
0answers
25 views

How to deactivate the Minimize, Maximize and Close buttons in a JFrame having Nimbus LAF

I have been trying to remove the minimize, maximize and close buttons in a JFrame in Java. I am aware of the fact that there are other threads in the StackOverflow and elsewhere about how to do this, ...
4
votes
3answers
283 views

Can't transparent and undecorated JFrame in JDK7 when enabling nimbus

Look at this picture : here is the code that transparent's the frame: GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gd = ...
1
vote
0answers
27 views

Can i inherit the twisted.web.http.Request.requestReceived?

Can i inherit the twisted.web.http.Request.requestReceived ?? In the comment, said that "This method is not intended for users". I has inherited the rawDataReceived and it like this: def ...
3
votes
3answers
115 views

JTable - Problems with Boolean.class Cell Renderer and Nimbus Look and Feel

I am using a JTable to visualize some data. One column ist destined to show boolean data through a checkbox. I achieved this by returning Boolean.class from my overriden getColumnClass() function in ...
0
votes
1answer
43 views

Change default row colors in jtable

I'm developing a simple java application using swing. I use JTable element. The problem is that by default rows of tables are white and grey like in this post Setting color in a row of a Jtable . I ...
0
votes
1answer
48 views

TableHeaderRenderer with Nimbus

I'm have a custom table header renderer that will have the standard label and a button inside a JComponent. The issue I'm having is with the label returned by the default renderer. The call to the ...
0
votes
1answer
39 views

My JFrame appears in basic design not in advanced design in java netbeans

Recently I made a desktop application for login system, I always run the program if i changed any code to be sure if this code is working well or not, Anyways when I run the program it always appears ...
0
votes
2answers
121 views

Difference between Synth and Nimbus look and feel

I have been checking on the look and feel for java desktop applications then found the Synth and Nimbus Look and Feel But I am a little confuse here can some one tell me: the difference between ...
1
vote
1answer
33 views

Setting JMenuItems border with Nimbus LaF

i am modifying the appearance of some JMenuItems in a popup menu based on some parameters and the currently selected menu item. This is a bit of pseudo code (pseudo, because it doesn't show all the ...
0
votes
1answer
10 views

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?
1
vote
0answers
63 views

Nimbus Look and Feel with JTable

Heading Hello friends iam making a download manager and iam using a jtable in jtable to show jprogress bar iam using a table cell renderer when i apply a nimbus look and feel due to table cell ...
2
votes
1answer
89 views

How to change JTable row height globally?

I'm using Nimbus L&F. I'm trying to change font size globally for all JTable by using the following code: NimbusLookAndFeel nimbus = new NimbusLookAndFeel(); UIManager.setLookAndFeel(nimbus); ...
1
vote
0answers
139 views

Nimbus: java.lang.ClassCastException: javax.swing.plaf.nimbus.DerivedColor$UIResource cannot be cast to javax.swing.Painter

I'm using the Nimbus look & feel in my swing application. Sometimes, when a dialog is showed (with dialog.setVisible(true)) the Nimbus look & feel throws the following exception: Caugth ...
0
votes
1answer
55 views

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 ...
4
votes
2answers
232 views

Java Swing JOptionPane Yes and No Button differ in font size after setting Nimbus LookandFeel

Since the font size is too small in default LookAndFeel, I used a few lines of code to set it to Nimbus, and my JOptionPane shows Yes and No button with different size. Yes is still very small, while ...
2
votes
1answer
101 views

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 ...
2
votes
1answer
395 views

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 ...
0
votes
1answer
140 views

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 ...
0
votes
0answers
12 views

jvm unsupported in Nimbus Cloud Client Installation

During Nimbus Cloud Client installation i have got some error like jvm unsupported and "java.net.ConnectException: Connection refused". I have installed java sun 1.7.0_15 version.Please help me to ...
0
votes
0answers
13 views

Nimbus Service Crashed

when I am trying to start nimbus and cumulus service it luanch the service successfully. But checking its status it displayed that nimbus service crashed and cumulus ok. What is the Problem wih this?
1
vote
3answers
342 views

Nimbus look-and-feel changes color of JButtons

I have a JButton with an icon on it. I want the background color of the JButton to be the same as the icon. The following code works fine in the standard look-and-feel : button.setBackground(new ...
1
vote
1answer
89 views

how to have multiple look and feel in a single swing application

I am using Nimbus look and feel in my Swing project. Its displaying the excellent look in the project but JEditorPane is not displaying the proper font format when applying Nimbus look and feel So ...
1
vote
1answer
107 views

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 ...
0
votes
2answers
351 views

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 ...
0
votes
2answers
77 views

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 ...
1
vote
1answer
52 views

For NimbusKit NIToolbarPhotoViewController is there a way to set zoom scale

I'm using NIToolbarPhotoViewController by subclassing it. So far everything is working, but i can not change max zoom scale like you can with scroll views. I'm set ...
1
vote
1answer
181 views

Custom Components and Painter with Nimbus Look And feel

I am creating a look and feel that inherits from NimbusLookAndFeel and let me know how I can register my own components to use their custom Painter. For example, a JButton like this ButtonPainter ...
2
votes
1answer
94 views

Java SE 6: Why does Nimbus L&F cut for 4 pixels in JTextField?

My JFrame consists of some JTextFields. For Windows OS I simply use the system look&feel. For Linux distributions I use Nimbus L&F shipped with Java SE 6. In Nimbus L&F, the lower border ...
0
votes
1answer
184 views

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 ...
2
votes
0answers
77 views

AbstractRegionPainter Java 7 dynamic import

As you know nimbus package is change in java 7. I am using AbstractRegionPainter with java6 in my app's server side, and my app's client side must work both in java 6 and 7. So how can i import this ...
5
votes
2answers
587 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 ...
3
votes
2answers
181 views

How to deal with derived color in Nimbus Look and Feel?

What I want is to make the background of a uneditable text area the same as its disabled background. I know that the color is available from the UIManager with the key TextArea.disabled: ...
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 ...
5
votes
2answers
212 views

java swing minimal (or range for) font size for other application

For swing applications, default font settings for components are in current theme and can be retrieved using UIManager: public class JavaTesting { public static void main(String[] args) { ...
2
votes
2answers
205 views

Custom JButton with nimbus

Hello I am trying to custom the JButton from nimbus and here is what I did : public static void main(String[] args) { // TODO Auto-generated method stub Font police1 = new Font("Tahoma", ...
1
vote
0answers
247 views

JInternalFrame change background color (Nimbus L&F)

I'm using the Nimbus L&F and trying to change the background color. I'm setting the color with this: iFrame.getContentPane().setBackground(Color.BLACK);. However it ends up with a small area at ...
-1
votes
1answer
84 views

Change the color of a tab in Nimbus [duplicate]

Possible Duplicate: Override Swing Nimbus L&F primary color per component instance How can I change the default color of tab in Nimbus PLAF? When the tab is selected the color will be ...
11
votes
5answers
579 views

Gradient problems in Java

In my program I wanted to have a translucent white to transparent gradient on my JFrame to overlay a yellow background. This works fine and it needs to be a white to transparent because of how my ...
0
votes
1answer
108 views

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 ...
2
votes
1answer
284 views

Changing look and feel on a Java applet

Ok, So I made an test java applet to make sure I know how to make them but I the default look and feel looks really ugly. So I want to switch it Nimbus but my tacit isn't working. I've done about an ...
0
votes
1answer
363 views

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

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 ...
2
votes
1answer
114 views

How can I set the JProgressBar to Nimbus Lookandfeel while keeping the rest of UI not to change?

I would like to set ALL of JProgressBar in my Swing application in Nimbus style, while the rest is Windows, Metal, Quauqa, whatever. How can I do this in Java?
-2
votes
1answer
142 views

Custom swing JTextComponent [closed]

I want to create a JTextArea which looks like JTextArea, acts like JTextArea, responds like JTextArea, speaks like JTextArea, moves like JTextArea, etc, but is not JTextArea. To make it short, I'd ...
3
votes
2answers
827 views

Nimbus and alternate row colors

I don't understand how alternate row coloring works in Nimbus. It seems just crazy!!! I would like to clear things up here. For the demonstration, let's say that we want a JTable that alternate Red ...

1 2 3 4