Swing:将切换按钮与按钮组和菜单项链接
在带有工具栏按钮和菜单项的简单绘制应用程序的上下文中对于不同的形状,出现的问题是:如何确保选择工具栏按钮会取消选择其他按钮并选择相应的菜单项,反之亦然反之亦然。
虽然 ButtonGroup 类可以处理单个按钮组中的选择,但它可能不是处理多个按钮组的最合适的解决方案。此外,如果菜单修改按钮,它会引入无限递归的风险,反之亦然。
更好的方法在于使用 Actions。 Action 界面允许多个组件(例如按钮和菜单项)执行相同的功能。通过对每个组使用相同的操作,您可以确保一致的行为,而无需手动处理按钮选择和形状设置。
为了说明这一点,以下代码片段演示了如何在 JMenu 和 JMenu 之间共享操作用于管理最近文件的 JToolBar:
import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.io.File; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.JToolBar; public class FileMenu { public void create() { File userDir = new File(System.getProperty("user.dir")); File[] files = userDir.listFiles(); JMenu menu = new JMenu("Recent Files"); JToolBar toolBar = new JToolBar(JToolBar.VERTICAL); JLabel label = new JLabel(" ", JLabel.CENTER); for (File f : files) { if (f.isFile() && !f.isHidden()) { RecentFile rf = new RecentFile(f, label); menu.add(new JMenuItem(rf.getAction())); toolBar.add(rf.getAction()); } } JMenuBar menuBar = new JMenuBar(); menuBar.add(menu); JFrame f = new JFrame("FileMenu"); f.setJMenuBar(menuBar); f.add(toolBar, BorderLayout.CENTER); f.add(label, BorderLayout.SOUTH); f.pack(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setLocationRelativeTo(null); f.setVisible(true); } class RecentFile extends AbstractAction { private final File file; private final JLabel label; public RecentFile(final File file, final JLabel label) { this.file = file; this.label = label; this.putValue(Action.NAME, file.getName()); this.putValue(Action.SHORT_DESCRIPTION, file.getAbsolutePath()); } public void actionPerformed(ActionEvent e) { label.setText(file.getName()); } public Action getAction() { return this; } } }
通过对工具栏按钮和菜单项使用相同的操作,您可以实现所需的行为,即选择一个按钮会取消选择其他按钮,并且选择相应的菜单项,反之亦然,无需任何手动处理或无限递归的风险。
以上是如何在 Swing 中同步 JToolBar 和 JMenu 之间的切换按钮选择?的详细内容。更多信息请关注PHP中文网其他相关文章!