Examples of canExportToBitmap()


Examples of org.antlr.works.editor.GrammarWindowTab.canExportToBitmap()

    public void exportAsImage() {
        StatisticsAW.shared().recordEvent(StatisticsAW.EVENT_EXPORT_AS_BITMAP);

        GrammarWindowTab tab = window.getSelectedTab();
        if(!tab.canExportToBitmap())
            return;

        if(tab instanceof SyntaxDiagramTab)
            exportRuleAsImage();
        else
View Full Code Here

Examples of org.antlr.works.editor.GrammarWindowTab.canExportToBitmap()

            case MI_GOTO_FORWARD:
                item.setEnabled(window.goToHistory.canGoForward());
                break;

            case MI_EXPORT_AS_IMAGE:
                item.setEnabled(tab != null && tab.canExportToBitmap());
                break;

            case MI_EXPORT_AS_EPS:
                item.setEnabled(tab != null && tab.canExportToEPS());
                break;
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.