0
votes
1answer
34 views

How to apply JTatto themes on JFrame using Swing

I am trying to apply a JTatto look and feel in my swing project. The theme is being applied on some forms but on others the controls aren't working properly. They are overlapping on top of each ...
1
vote
1answer
43 views

Successfully updating Look and Feel but still having errors

I am trying to update my look and feel without any errors, but I can't figure out what I am doing wrong. This is my Window class: public class Window extends JFrame { private static final long ...
0
votes
2answers
53 views

Packing jar file into exists jar file

I'm writing a MP3 player in Java. If i will finish I want to pack all .class files in one .jar file. I don't want have player, which starts by console. If i open this one .jar file i want see player ...
4
votes
2answers
77 views

Should GUI tests run with the default look and feel?

I'm working on an application that has a custom look and feel. For GUI testing, I am using FEST-Swing. Currently, the GUI tests are running with the default java look and feel. Because of this, some ...
2
votes
2answers
69 views

Java-LAF: How to create Decoration using Synth-XML?

I'm trying to create a custom Look-And-Feel using the Synth-Framework. I successfully used a tutorial ( Look-And-Feel Tutorial by Oracle/Sun ) to experiment,and managed to skin Buttons, Panels etc. ...
0
votes
1answer
28 views

Setting default LAF's JTextField dimensions

Is it possible to override the LAF's default dimensions of a JTextField with UIDefaults?
0
votes
0answers
18 views

Create border for MenuItem with Synth XML

I am trying to create custom Look and Feel with Synth by specifying properties in XML file. <synth> <!-- Default --> <style id="Default"> <font name="Verdana" ...
-1
votes
2answers
82 views

How to force java/swing to use Windows XP theme instead of currently applied theme?

I have a requirement in my Swing project wherein I need to forcefully use the Windows XP theme. I know there are classes like below. com.sun.java.swing.plaf.windows.WindowsLookAndFeel ...
-4
votes
0answers
41 views

Windows 8 Metro look & feel in Swing application [duplicate]

How can I add a Windows 8 Metro look and feel to my Java Swing application? I want to mimic applications like Microsoft Office 2013.
0
votes
2answers
45 views

Setting FileChooserUI property in UIManager to the system's

I want to have my JFileChooser use the system's LookAndFeel, but have the rest of my components use Nimbus. Since each platform provides a different FileChooserUI, how would I set the FileChooserUI ...
0
votes
1answer
29 views

Swing and GTK font

I have write a little GUI with java Swing. But i have some little problems with the default look and feel using com.sun.java.swing.plaf.gtk.GTKLookAndFeel As you can see the menus and the buttons ...
0
votes
1answer
59 views

Set filechooser Colors with Nimbus L&F

I'm using custom Colors with Nimbus. After hours of searching I can't find out how to set the Background and Foreground colors for JFilechooser properly. My (non working) code: ...
1
vote
1answer
26 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
30 views

Java Swing Look&Feel manager bug?

I'm using the Substance Look&Feel manager (more specifically: SubstanceTwilightLookAndFeel). Unfortunately, when instantiating a particular JDialog (actually a Jide StandardDialog), the program ...
0
votes
1answer
44 views

NullPointerException on PLAF change to Motif

Can anybody see what I have done to cause the NullPointerException (stack trace below)? The panel appears OK: Textual output os.name: Windows Vista os.version: 6.1 java.version: 1.6.0 ...
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, ...
1
vote
2answers
71 views

How to change swing applicaiton's look and feel at runtime?

I know that there's a SwingUtilities.updateComponentTreeUI(Component c) method but it doesn't work perfectly. For example, I have a JFileChooser and the current look and feel is Windows, then I change ...
1
vote
2answers
97 views

Remove JButton rectangle white border

Does somebody know how to remove white rectangle border on JButton ? This issue is there only for windows look & feel when the button is a little bit rounded. Please find attached the example on ...
1
vote
0answers
31 views

JXTitledPanel gradient effect

I'm using the SwingX JXTitledPanel and I'd like to have a gradient effect as shown in the SwingX demo. My current understanding is that it is up to the Look & Feel manager (I'm using Insubstance) ...
0
votes
2answers
46 views

Skip disabled JMenu when traversing JMenuBar with arrow keys

I have a java application with a JFrame that contains a JMenuBar. I am using the Windows L&F. When the JMenuBar is active, the selected JMenu is highlighted. The user can move to the ...
2
votes
1answer
60 views

Color in JProgressBar

I just wanted to use the Windows L&F in a JFrame. Now while using a progress bar, the default color is green, similar to the one used in other windows functions like copying of files, etc. ...
0
votes
1answer
44 views

Swing: Custom LaF for JTabbedPane component subclass

How can I subclass a JTabbedPane and give each instance of my subclass a Look-and-Feel that is different from the default LaF? I still want access to the default JTabbedPanel, so simply overriding the ...
1
vote
2answers
50 views

Remove content padding on JTabbedPane in Substance LAF

I'm doing some experiments with Substance LAF and I'm trying to remove padding between tabs. With default ui I used: UIManager.getDefaults().put("TabbedPane.contentBorderInsets", new ...
0
votes
1answer
66 views

Swing UIManager default system look and feel [closed]

I'm writing a Java application and I'm giving it a custom look and feel using the UIManager of Swing. There's a method named UIManager.getSystemLookAndFeelClassName() that returns the default look and ...
0
votes
1answer
40 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 ...
-3
votes
1answer
41 views

Creating a tab bar with Swing

I want to make this kind of look and feel The buttons on the menu (dashboard, my items, catalog). Is it possible to make that on swing? or what kind of component is that?
-4
votes
2answers
65 views

How to get back the original look and feel color of a button after changing its color? [closed]

I changed the color of my button. Now I want its original look and feel back. I want to change the color once to a color that i like. After that, I want the button to get its original look back. How ...
0
votes
2answers
58 views

UIManager.getColor returns null sometimes

I have an applet that is generating a nullpointer exception at this line (but only sometimes) at load time: (txtpnNoSeHa is a JEditorPane inside a class that extends JPanel. This panel is ...
0
votes
0answers
49 views

Overriding a tooltip

Well as the title says, I want to create my own tooltip with it's own look and feel, the thing is, where should I begging? I've created a class extending JToolTip, and another extending from ToolTipUI ...
2
votes
1answer
141 views

JFrame gets decorated with Windows borders, even the Look&Feel is set otherwise

Good day everyone. First of all: check this image. Please note that in the first of the 3 frames, the button is styled with Metal Look and Feel, but the frame is Windows styled. The other 2 frames ...
0
votes
2answers
123 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 ...
0
votes
1answer
46 views

Java Components Inherit LnF

I've made a JComponent child from scratch and made basic- and metal-based look and feels for it. Even if I'm using the metal theme for the entire application, I still have to call setUI on the object ...
1
vote
2answers
319 views

JFrame Swing how to change frame from popup window to look like windows theme

Hey guys so I am able to set the default frame for my popup window that is called from a separate class. As you can probably tell I am an extreme noob to java. Any help would be appreciated. This is ...
0
votes
1answer
91 views

Error when changing the look and feel(UIManager) of the swing application

Hello I have an interface which user can change the look and feel . Here is the interface: http://www.hostingpics.net/viewer.php?id=579250themesApp.jpg and the code of each button: //The JDesktop ...
0
votes
4answers
231 views

Change background and text color of JMenuBar and JMenu objects inside it

How can I set custom background color for JMenuBar and JMenu objects inside it? I tried .setBackgroundColor and it does not work!
1
vote
0answers
68 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 ...
0
votes
0answers
78 views

How do I use Flamingo and Insubstantial?

I have only used Swing so far for designing some sub-standard GUI. I was planning on using Flamingo to get the Ribbon look and feel of MS Word. I was directed to the website of Insubstantial. ...
0
votes
1answer
143 views

java look and feel: windows server 2012 shows progress bar too thin

I get very thin progress bar on *windows server 2012 * , when I use UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); The bar look okay in windows 7, very thin on windows server ...
4
votes
2answers
245 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 ...
1
vote
0answers
82 views

Fancy Looking Look and Feel [closed]

I have been searching for a fancy looking Look and Feel where it creates fancy buttons etc for a long time. The only look and feel I found is NapKin Look and Feel. Is there any look and feel you can ...
1
vote
2answers
78 views

Napkin Look and Feel Error

Please have a look at the following code Form.java import java.awt.event.*; import java.awt.*; import javax.swing.*; public class Form extends JFrame { private JButton[]buttonHolder; ...
2
votes
0answers
121 views

JFileChooser does not react on pressing enter since java 7

I have a problem with the JFileChooser embedded in a JFrame. If I type a filename or regex into the textfield and press "enter" key nothing happens. If I use the "open" button instead of enter it ...
2
votes
1answer
105 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 ...
1
vote
0answers
160 views

Java - MenuBar moves on top of JFrame when setting look and feel

When I set the look and feel my AWT MenuBar is displayed on top of the JFrame, this doesn't happen when I use Nimbus or Synth. The reason I cannot use a JMenuBar is that the application that I am ...
1
vote
1answer
96 views

Changing the look of JTabbedPane

I know fairly well how to use a JTabbedPane but it does not look like the tabs that you get in MS Word's ribbon . I want to know if there is a way to make the JTabbedPane look like the ribbon in MS ...
0
votes
0answers
112 views

Make a custom component look like a Substance Look and Feel Component

I'm using the Substance Look and Feels in my application but I have some custom components that are styled differently. Can anyone provide some information/examples on how to fix my custom ...
0
votes
0answers
117 views

Setting custom look and feel on specific Swing components

Is it possible to set the file used for the Synth look and feel of just a specific component or set of components on a Swing GUI without changing it for any of the other components?
2
votes
2answers
499 views

JButton background images

I'm writign a POS system(point of sale) for fun. A typical feature of a POS system is buttons that have different background colors for different products. But I don't mean the background behind the ...
0
votes
1answer
145 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 ...
-3
votes
1answer
102 views

How I can make special, non-classic GUI for my Java application [closed]

I want to develop a desktop application and I don't want use a classic GUI like Java swing or in VB.Net. I want to create a custom graphical interface, like in iTunes or avast or tuneup. I want to ...

1 2 3 4 5 8