Examples of ExportGuidesDialog


Examples of com.salas.bb.dialogs.guide.ExportGuidesDialog

    protected void doAction(ActionEvent event)
    {
        MainFrame mainFrame = GlobalController.SINGLETON.getMainFrame();
        boolean isGuideSelected = GlobalModel.SINGLETON.getSelectedGuide() != null;

        ExportGuidesDialog dialog = new ExportGuidesDialog(mainFrame);
        dialog.setAllowSelectedGuide(isGuideSelected);

        dialog.open();

        if (!dialog.hasBeenCanceled())
        {
            String filename = dialog.getFilename();
            boolean extended = dialog.isExtendedMode();

            if (dialog.isSelectedGuideMode())
            {
                processExportSelected(filename, extended);
            } else
            {
                processExportAll(filename, extended);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.