Theme « Development « Java Swing Q&A





1. Java Swing GUI theming    stackoverflow.com

Is it possible to develop custom PLAF themes for Swing? I would appreciate constructive suggestions in this topic Thanks

2. How to list all available LookAndFeel themes?    stackoverflow.com

How to list all available LookAndFeel themes? I want to show then in a JComboBox for the user to select.

3. Does anyone know the name of this "LookAndFeel"?    stackoverflow.com

Does anyone know the name of this "LookAndFeel"? or at least know similar one? It's really amazing and I wish I could use it for my program. http://www.axbo.com/webstart/aXbo.jnlp enter ...</p></div></td></tr><tr><td><div class='articleProductElement'><h3 class='articleProductElementTitle'>4. <a href='http://stackoverflow.com/questions/7798781/themes-or-look-and-feel-on-pl-sql-developer'>Themes or Look and feel on PL/SQL Developer</a><span class='articleProductElementHost'>    stackoverflow.com</span></h3><p class='articleProductElementParagraph'>How to change the look and feel or the colors of all in PL/SQL Developer? Because for current time, it's hard to work wheb all in black!
 </p></div></td></tr><tr><td><div class='articleProductElement'><h3 class='articleProductElementTitle'>5. <a href='http://forums.netbeans.org/topic34419.html'>netbeans laf themes via jnlp?</a><span class='articleProductElementHost'>    forums.netbeans.org</span></h3><p class='articleProductElementParagraph'>Hello! I'm currently customizing the nimbus look and feel of my RCP application as described at http://netbeans.dzone.com/netbeans-platform-themes and it's working well when run as a

6. Doubt in Theme and LAF    coderanch.com

7. Can you toggle between look and feel, want to make different "themes"    java-forums.org

import javax.swing.*; import java.awt.event.*; import java.awt.Color; public class themeChange extends JFrame { JButton button; Color[] themes = {Color.black, Color.blue, Color.cyan, Color.darkGray, Color.gray, Color.green, Color.lightGray, Color.magenta, Color.orange, Color.pink, Color.red, Color.white, Color.yellow}; public themeChange() { button = new JButton("Change Theme"); button.addActionListener( new ActionListener(){ int i = 0; public void actionPerformed(ActionEvent e){ button.setBackground(themes[i]); i++; i=i%13; } }); add(button); } public static void main(String args[]) ...

8. Can a theme's look and feel be modified at a Configuration level.    liferay.com

Hi, We have a requirement wherein we need to create different themes ( just color & logo change) for our different customers. Is it possible to do it at a configuration level so that we dont need to manually create multiple themes. Just wanted to reduce the development activity and making it configurable as there would be minor changes. Thanks & ...

9. Newly deployed theme doesn't show up in look and feel    liferay.com

Lori, Take a look to the log. Be sure to look for a few lines similar to the following: 18:15:56,727 INFO [PluginPackageHotDeployListener:74] Reading plugin package for my-theme 18:15:57,009 INFO [PluginPackageHotDeployListener:187] Plugin package liferay/my-theme/4.4.2.1/war registered successfully 18:15:57,009 INFO [ThemeHotDeployListener:77] Registering themes for fms-theme 18:15:57,024 INFO [ThemeHotDeployListener:89] Themes for fms-theme registered successfully The crucial message is "registered successfully". If you see something else ...