Package org.jvnet.flamingo.ribbon

Examples of org.jvnet.flamingo.ribbon.RibbonApplicationMenuEntryFooter


                        onOpenCountries();
                    }
                }, CommandButtonKind.ACTION_ONLY);
        amEntryCountries.setActionKeyTip("O");

        RibbonApplicationMenuEntryFooter amEntryExit = new RibbonApplicationMenuEntryFooter(
                ViewHelpers.createResizableIcon(
                        new ImageIcon(getClass().getResource(ViewHelpers.ICONS16 + "exit.png"))),
                I18n.COMMON.getString("Action.Exit"),
                new ActionListener() {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        exitForm(null);
                    }
                });
        amEntryExit.setActionKeyTip("X");

        RibbonApplicationMenu applicationMenu = new RibbonApplicationMenu();
        applicationMenu.addMenuEntry(amEntryDashboard);
        applicationMenu.addMenuEntry(amEntryCustomers);
        applicationMenu.addMenuEntry(amEntryCategories);
View Full Code Here

TOP

Related Classes of org.jvnet.flamingo.ribbon.RibbonApplicationMenuEntryFooter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.