📄 firstmenubar.java
字号:
/* * (C) 2001 by Argonne National Laboratory * See COPYRIGHT in top-level directory. *//* * @author Anthony Chan */package viewer.first;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JMenu;import javax.swing.JMenuBar;import javax.swing.JMenuItem;import javax.swing.border.EtchedBorder;import viewer.common.TopWindow;public class FirstMenuBar extends JMenuBar{ private boolean isApplet; private FirstPanel first_panel; private JMenuItem file_select_item; private JMenuItem file_convert_item; private JMenuItem file_close_item; private JMenuItem file_exit_item; private JMenuItem show_legend_item; private JMenuItem show_timeline_item; private JMenuItem edit_prefer_item; private JMenuItem help_manual_item; private JMenuItem help_faq_item; private JMenuItem help_about_item; public FirstMenuBar( boolean isTopApplet, FirstPanel in_panel ) { super(); super.setBorder( new EtchedBorder() ); isApplet = isTopApplet; first_panel = in_panel; JMenu menu, submenu; menu = new JMenu( "File" ); file_select_item = new JMenuItem( "Select ..." ); file_select_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getLogFileSelectButton().doClick(); } } ); menu.add( file_select_item ); file_convert_item = new JMenuItem( "Convert ..." ); file_convert_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getLogFileConvertButton().doClick(); } } ); menu.add( file_convert_item ); file_close_item = new JMenuItem( "Close" ); file_close_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getLogFileCloseButton().doClick(); } } ); menu.add( file_close_item ); menu.addSeparator(); file_exit_item = new JMenuItem( "Exit" ); file_exit_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { if ( isApplet ) TopWindow.Legend.disposeAll(); else TopWindow.First.disposeAll(); } } ); menu.add( file_exit_item ); super.add( menu ); menu = new JMenu( "Edit" ); edit_prefer_item = new JMenuItem( "Preferences ..." ); edit_prefer_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getEditPreferenceButton().doClick(); } } ); menu.add( edit_prefer_item ); super.add( menu ); menu = new JMenu( "View" ); submenu = new JMenu( "Reload" ); show_legend_item = new JMenuItem( "Legend window" ); show_legend_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getShowLegendButton().doClick(); } } ); submenu.add( show_legend_item ); show_timeline_item = new JMenuItem( "Timeline window" ); show_timeline_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getShowTimelineButton().doClick(); } } ); submenu.add( show_timeline_item ); menu.add( submenu ); super.add( menu ); menu = new JMenu( "Help" ); help_manual_item = new JMenuItem( "Manual" ); help_manual_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getHelpManualButton().doClick(); } } ); menu.add( help_manual_item ); help_faq_item = new JMenuItem( "FAQ" ); help_faq_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getHelpFAQsButton().doClick(); } } ); menu.add( help_faq_item ); help_about_item = new JMenuItem( "About" ); help_about_item.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent evt ) { first_panel.getHelpAboutButton().doClick(); } } ); menu.add( help_about_item ); super.add( menu ); // super.setAlignmentX( Component.LEFT_ALIGNMENT ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -