nimbus Questions

6

Solved

I'm referring to this Nimbus reference. I tried to set global Font to be slightly larger: UIManager.put("defaultFont", new Font(Font.SANS_SERIF, 0, 16)); ...works only for the menu but nothing...
Anastasiaanastasie asked 4/6, 2009 at 8:54

1

Solved

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); ...
Piddock asked 22/3, 2013 at 10:26

2

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, whi...
Nonetheless asked 19/3, 2013 at 2:24

2

Solved

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 JProgressBa...
Belindabelisarius asked 17/1, 2013 at 7:19

2

Solved

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) { System...
Alfonso asked 26/12, 2012 at 10:28

1

I have been working to transition a Java application from WindowsLookAndFeel to Nimbus, largely successfully, despite Nimbus foibles. My users overall like the Nimbus LaF but didn't like some detai...
Jarrod asked 26/4, 2012 at 19:28

5

Solved

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 s...
Cecilia asked 6/12, 2012 at 17:7

2

Solved

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 Re...
Fredi asked 22/10, 2012 at 9:18

3

Solved

Nimbus often looks great, but for certain color combinations the result is non-optimal. In my case, the background of a JPopupMenu does not fit, which is why I want to set it manually. I'm on Java...
Foehn asked 23/7, 2012 at 23:43

2

Solved

When editing data in a JTable (Nimbus L & F), as the user tabs from cell to cell, it is not obvious which cell has focus. How can I make it clearer which cell has focus? I know there are a numb...
Ferrari asked 1/7, 2012 at 4:32

1

Is there a way to have the Nimbus Look&Feel render its own windows decorations for a top level JFrame? I've been digging through the Internet, and I'm starting to suspect it might not be possib...
Ph asked 25/1, 2012 at 11:55

2

Solved

I have a custom ListCellRenderer and would like to use the default Nimbus selection backround color. I can lookup the color with: Color selectionBackground = UIManager.getColor("nimbusSelectionBac...
Reflective asked 8/9, 2011 at 19:48

2

Solved

From what I've found out, the Nimbus Look and Feel was introduced in Java 6 Update 10. I have project where I use that Look and Feel. Is there any situation where, the user has a Java VM newer th...
Contortionist asked 9/1, 2012 at 18:39

2

Solved

The property margin of a JButton isn't respected when the nimbus look and feel is installed. . I need some "little" buttons, but nimbus forces the space around button text to be large, so I only ge...
Farseeing asked 27/11, 2011 at 18:56

3

Solved

I want to use a different background color for all my JPanels in an application. How can I do that when using Nimbus Look and Feel? I follow Changing the Color Theme to change the color of compone...
Sobriety asked 23/11, 2011 at 17:34

2

Solved

The windows look and feel layout on JFileChooser is much better than other look and feels like nimbus. So I'm looking for a way to have the layout of a system look and feel but have nimbus or othe...
Vintager asked 19/8, 2011 at 2:6

1

Solved

i’m trying to override the “nimbusBase” color for specific instance of JButton/JTabbedPane with no luck. only the specific attributes of the component e.g. “Button.background”, are working. any i...
Vulgate asked 3/8, 2011 at 6:11

1

Solved

I use Nimbus LAF and I want to change the background of a simple JButton. JButton jbutton = new JButton("test"); jbutton.setBackground(Color.BLACK); But it doesn't work, when I change the look a...
Uncompromising asked 30/4, 2011 at 8:32

5

Solved

How do I call a method of a class dynamically + conditionally? (Class is eventually not in classpath) Let's say, I need the class NimbusLookAndFeel, but on some systems it's not available (i.e. Ope...
Immortalize asked 7/8, 2010 at 19:32

1

Solved

hello i am using the nimbus look-and-feel and have a tabbedpane with an icon and text. now the icon appears on the right side of the text, while i would like to have it on the left side. also i wo...
Sizzle asked 23/11, 2009 at 10:15

6

Solved

I am working on my MacBook at home, running Leopard, with the latest JDK 1.6 from Apple installed. In IDE, I'd like to browse source code for com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel, but I...
Vying asked 21/7, 2009 at 12:49

4

Solved

I have an application that uses disabled JTextFields in several places which are intended to be transparent - allowing the background to show through instead of the text field's normal background. ...
Vitrics asked 5/3, 2009 at 4:48

© 2022 - 2024 — McMap. All rights reserved.