Menu created from property file : Menu « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » MenuScreenshots 
Menu created from property file
  
//Menus.properties

/*
# The file Menus.properties is the default "Menus" resource bundle.
# As an American programmer, I made my own locale the default.
colors.label=Colors
colors.red.label=Red
colors.red.accelerator=alt R
colors.green.label=Green
colors.green.accelerator=alt G
colors.blue.label=Blue
colors.blue.accelerator=alt B

*/

//Menus_fr.properties
/*
# This is the file Menus_fr.properties.  It is the resource bundle for all
# French-speaking locales.  It overrides most, but not all, of the resources
# in the default bundle.
colors.label=Couleurs
colors.red.label=Rouge
colors.green.label=Vert
colors.green.accelerator=control shift V
colors.blue.label=Bleu

*/

//Menus_en_GB.properties
/*
# This is the file Menus_en_GB.properties.  It is the resource bundle for
# British English.  Note that it overrides only a single resource definition
# and simply inherits the rest from the default (American) bundle.
colors.label=Colours


*/

///
/*
 * Copyright (c) 2000 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 2nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book (recommended),
 * visit http://www.davidflanagan.com/javaexamples2.
 */

import java.awt.Color;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;

/** A convenience class to automatically create localized menu panes */
public class SimpleMenu {
  /** The convenience method that creates menu panes */
  public static JMenu create(ResourceBundle bundle, String menuname,
      String[] itemnames, ActionListener listener) {
    // Get the menu title from the bundle. Use name as default label.
    String menulabel;
    try {
      menulabel = bundle.getString(menuname + ".label");
    catch (MissingResourceException e) {
      menulabel = menuname;
    }

    // Create the menu pane.
    JMenu menu = new JMenu(menulabel);

    // For each named item in the menu.
    for (int i = 0; i < itemnames.length; i++) {
      // Look up the label for the item, using name as default.
      String itemlabel;
      try {
        itemlabel = bundle.getString(menuname + "." + itemnames[i]
            ".label");
      catch (MissingResourceException e) {
        itemlabel = itemnames[i];
      }

      JMenuItem item = new JMenuItem(itemlabel);

      // Look up an accelerator for the menu item
      try {
        String acceleratorText = bundle.getString(menuname + "."
            + itemnames[i".accelerator");
        item.setAccelerator(KeyStroke.getKeyStroke(acceleratorText));
      catch (MissingResourceException e) {
      }

      // Register an action listener and command for the item.
      if (listener != null) {
        item.addActionListener(listener);
        item.setActionCommand(itemnames[i]);
      }

      // Add the item to the menu.
      menu.add(item);
    }

    // Return the automatically created localized menu.
    return menu;
  }

  /** A simple test program for the above code */
  public static void main(String[] args) {
    // Get the locale: default, or specified on command-line
    Locale locale;
    if (args.length == 2)
      locale = new Locale(args[0], args[1]);
    else
      locale = Locale.getDefault();

    // Get the resource bundle for that Locale. This will throw an
    // (unchecked) MissingResourceException if no bundle is found.
    ResourceBundle bundle = ResourceBundle.getBundle(
        "com.davidflanagan.examples.i18n.Menus", locale);

    // Create a simple GUI window to display the menu with
    final JFrame f = new JFrame("SimpleMenu: " // Window title
        locale.getDisplayName(Locale.getDefault()));
    JMenuBar menubar = new JMenuBar()// Create a menubar.
    f.setJMenuBar(menubar)// Add menubar to window

    // Define an action listener for that our menu will use.
    ActionListener listener = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        String s = e.getActionCommand();
        Component c = f.getContentPane();
        if (s.equals("red"))
          c.setBackground(Color.red);
        else if (s.equals("green"))
          c.setBackground(Color.green);
        else if (s.equals("blue"))
          c.setBackground(Color.blue);
      }
    };

    // Now create a menu using our convenience routine with the resource
    // bundle and action listener we've created
    JMenu menu = SimpleMenu.create(bundle, "colors"new String[] { "red",
        "green""blue" }, listener);

    // Finally add the menu to the GUI, and pop it up
    menubar.add(menu)// Add the menu to the menubar
    f.setSize(300150)// Set the window size.
    f.setVisible(true)// Pop the window up.
  }
}



           
         
    
  
Related examples in the same category
1. Simple MenusSimple Menus
2. Creating popup menus with SwingCreating popup menus with Swing
3. Create a main menu.
4. Creating a menubar
5. Creating a JMenuBar, JMenu, and JMenuItem Component
6. Submenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commandsSubmenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commands
7. Separating Menu Items in a Menu
8. This example create a menubar and toolbar both populated with ActionThis example create a menubar and toolbar both populated with Action
9. A simple example of JPopupMenuA simple example of JPopupMenu
10. A quick demonstration of checkbox menu itemsA quick demonstration of checkbox menu items
11. Building menus and menu items: Accelerators and mnemonicsBuilding menus and menu items: Accelerators and mnemonics
12. An example of the JPopupMenu in actionAn example of the JPopupMenu in action
13. A simple example of constructing and using menus.A simple example of constructing and using menus.
14. PopupMenu and Mouse EventPopupMenu and Mouse Event
15. Menu YMenu Y
16. Menu XMenu X
17. Action MenuAction Menu
18. Menu Action Screen Dump DemoMenu Action Screen Dump Demo
19. Toggle Menu ItemToggle Menu Item
20. CheckBox Menu SampleCheckBox Menu Sample
21. Menu Demo 4Menu Demo 4
22. Comprehensive Menu DemoComprehensive Menu Demo
23. Menu Sample 3Menu Sample 3
24. How to create customized menuHow to create customized menu
25. Radio menu itemRadio menu item
26. React to menu action and checkbox menuReact to menu action and checkbox menu
27. Simple Menu and Window interface - not InternationalizedSimple Menu and Window interface - not Internationalized
28. Provide a pop-up menu using a FrameProvide a pop-up menu using a Frame
29. Demonstrate Menus and the MenuBar classDemonstrate Menus and the MenuBar class
30. Demonstrate JMenu shortcuts and accelerators
31. Demonstrate Cascading MenusDemonstrate Cascading Menus
32. Popup Menu DemoPopup Menu Demo
33. Menu DemoMenu Demo
34. Menu Layout DemoMenu Layout Demo
35. Actions MenuBarActions MenuBar
36. UseActions: MenuUseActions: Menu
37. PopupMenu SamplePopupMenu Sample
38. RadioButton Menu SampleRadioButton Menu Sample
39. Menu Look Demo, except the menu items actually doMenu Look Demo, except the menu items actually do
40. Menu Glue DemoMenu Glue Demo
41. Add PopupMenuAdd PopupMenu
42. Listening for Changes to the Currently Selected Menu or Menu Item
43. Menu item that can be selected or deselected
44. Place commands that hide/show various toolbars
45. Getting the Currently Selected Menu or Menu Item
46. Creating a Menu Item That Listens for Changes to Its Selection Status
47. Create a change listener and register with the menu selection manager
48. Menu Selection Manager DemoMenu Selection Manager Demo
49. Color Menu
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.