1. Java Swing GUI theming stackoverflow.comIs 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.comHow 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.comDoes 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 |
6. Doubt in Theme and LAF coderanch.com |
7. Can you toggle between look and feel, want to make different "themes" java-forums.orgimport 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.comHi, 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.comLori, 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 ... |