|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.batik.util.gui.resource.ResourceManager
org.apache.batik.util.gui.resource.MenuFactory
This class represents a menu factory which builds
menubars and menus from the content of a resource file.
The resource entries format is (for a menubar named 'MenuBar'):
MenuBar = Menu1 Menu2 ... Menu1.type = RADIO | CHECK | MENU | ITEM Menu1 = Item1 Item2 - Item3 ... Menu1.text = text Menu1.icon = icon_name Menu1.mnemonic = mnemonic Menu1.accelerator = accelerator Menu1.action = action_name Menu1.selected = true | false Menu1.enabled = true | false ... mnemonic is a single character accelerator is of the form: mod+mod+...+X where mod is Shift, Meta, Alt or Ctrl '-' represents a separatorAll entries are optional except the '.type' entry Consecutive RADIO items are put in a ButtonGroup
Field Summary |
Fields inherited from class org.apache.batik.util.gui.resource.ResourceManager |
bundle |
Constructor Summary | |
MenuFactory(ResourceBundle rb,
ActionMap am)
Creates a new menu factory |
Method Summary | |
JCheckBoxMenuItem |
createJCheckBoxMenuItem(String name)
Creates and returns a new swing check box menu item |
JMenu |
createJMenu(String name)
Creates and returns a new swing menu |
JMenuBar |
createJMenuBar(String name)
Creates and returns a swing menu bar |
protected JComponent |
createJMenuComponent(String name)
Creates and returns a menu item or a separator |
JMenuItem |
createJMenuItem(String name)
Creates and returns a new swing menu item |
JRadioButtonMenuItem |
createJRadioButtonMenuItem(String name)
Creates and returns a new swing radio button menu item |
protected void |
initializeJMenuItem(JMenuItem item,
String name)
Initializes a swing menu item |
protected KeyStroke |
toKeyStroke(String str)
Translate a string into a key stroke. |
Methods inherited from class org.apache.batik.util.gui.resource.ResourceManager |
getBoolean, getCharacter, getInteger, getString, getStringList, getStringList, getStringList |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public MenuFactory(ResourceBundle rb, ActionMap am)
rb
- the resource bundle that contains the menu bar
description.am
- the actions to add to menu itemsMethod Detail |
public JMenuBar createJMenuBar(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu bar in the resource bundle
MissingResourceException
- if one of the keys that compose the
menu is missing.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- if the mnemonic is not a single
character and if the accelerator is malformed
MissingListenerException
- if an item action is not found in the
action mapprotected JComponent createJMenuComponent(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu item or "-" to create a separator
MissingResourceException
- if key is not the name of a menu item.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- in case of malformed entry
MissingListenerException
- if an item action is not found in the
action mappublic JMenu createJMenu(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu bar in the resource bundle
MissingResourceException
- if one of the keys that compose the
menu is missing.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- if the mnemonic is not a single
character.
MissingListenerException
- if a item action is not found in the
action map.public JMenuItem createJMenuItem(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu item
MissingResourceException
- if one of the keys that compose the
menu item is missing.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- if the mnemonic is not a single
character.
MissingListenerException
- if then item action is not found in
the action map.public JRadioButtonMenuItem createJRadioButtonMenuItem(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu item
MissingResourceException
- if one of the keys that compose the
menu item is missing.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- if the mnemonic is not a single
character.
MissingListenerException
- if then item action is not found in
the action map.public JCheckBoxMenuItem createJCheckBoxMenuItem(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the menu item
MissingResourceException
- if one of the keys that compose the
menu item is missing.
It is not thrown if the mnemonic, the accelerator and the
action keys are missing
ResourceFormatException
- if the mnemonic is not a single
character.
MissingListenerException
- if then item action is not found in
the action map.protected void initializeJMenuItem(JMenuItem item, String name) throws ResourceFormatException, MissingListenerException
item
- the menu item to initializename
- the name of the menu item
ResourceFormatException
- if the mnemonic is not a single
character.
MissingListenerException
- if then item action is not found in
the action map.protected KeyStroke toKeyStroke(String str)
str
- a string
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |