Ignore:
Timestamp:
2003-11-13T16:47:39+13:00 (21 years ago)
Author:
kjdon
Message:

added Export to CDROM to the menu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/MenuBar.java

    r5785 r5841  
    6363    public JMenuItem file_delete     = null;
    6464    public JMenuItem file_exit       = null;
     65    public JMenuItem file_export     = null;
    6566    public JMenuItem file_new        = null;
    6667    public JMenuItem file_open       = null;
     
    119120    Dictionary.registerText(file_exit, "Menu.File_Exit");
    120121
     122    file_export = new JMenuItem();
     123    file_export.addActionListener(Gatherer.g_man);
     124    file_export.setMnemonic(KeyEvent.VK_E);
     125    Dictionary.registerText(file_export, "Menu.File_Export");
     126
    121127    file_new = new JMenuItem();
    122128    file_new.addActionListener(Gatherer.g_man);
     
    153159    file.add(file_close);
    154160    file.add(file_delete);
     161    file.add(file_export);
    155162    file.add(new JSeparator());
    156163    file.add(file_associations);
Note: See TracChangeset for help on using the changeset viewer.