Package com.qspin.qtaste.ui.jedit

Examples of com.qspin.qtaste.ui.jedit.NonWrappingTextPane


                tabbedPane.setSelectedIndex(RESULTS_INDEX);
                debugPanel.setVisible(false);
                //this.getTe
                NonWrappingTextPane[] panes = this.getVisibleTextPanes();
                for (int i = 0; i < panes.length; i++) {
                    NonWrappingTextPane textPane = panes[i];
                    textPane.getDefaultLineNumberPanel().update(event);
                }
                break;
            case BREAK:
                startExecutionButton.setVisible(true);
                stepOverExecutionButton.setVisible(true);
                stepIntoExecutionButton.setVisible(true);
                debugPanel.setVisible(true);
                sourcePanel.setDividerLocation(sourcePanel.getDividerLocation() - 150);
                // update the button status
//                stopExecutionButton.setVisible(true);
                //getVarButton.setVisible(true);
                tabbedPane.setSelectedIndex(SOURCE_INDEX);
                getTcSourcePane().setVisible(true);
                // set the current line highlighted
                Object extraData = event.getExtraData();
                if (extraData instanceof Breakpoint) {
                    Breakpoint breakpoint = (Breakpoint) extraData;

                    // load the file into the tabbedPaned
                    File f = new File(breakpoint.getFileName());
                    NonWrappingTextPane textPane = null;
                    if (f.exists() && f.canRead()) {

                        textPane = loadTestCaseSource(f, true, f.getName().equals(StaticConfiguration.TEST_SCRIPT_FILENAME));
                        tabbedPane.setSelectedIndex(TestCasePane.SOURCE_INDEX);
                        // now go to the given line
                        textPane.selectLine(breakpoint.getLineIndex());
                        textPane.getLineNumberPanel().update(event);
                    }
                }
                break;
        }
    }
View Full Code Here


            }
        }
    }

    public void closeCurrentEditorFile() {
        NonWrappingTextPane textPane = getActiveTextPane();
        if (textPane != null) {
            if (!textPane.isTestScript) {
                int tabIndex = editorTabbedPane.getSelectedIndex();
                if (tabIndex != -1) {
                    // check if the textpane must be saved

                    if (textPane.isModified()) {
                        if (JOptionPane.showConfirmDialog(null, "Do you want to save your current modification in '" + textPane.getFileName() + "?'",
                                "Save confirmation", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
                            textPane.save();
                        }
                    }
                    editorTabbedPane.remove(tabIndex);
                }
            }
View Full Code Here

            closeCurrentEditorFile();
        }

        @Override
        public boolean isEnabled() {
            NonWrappingTextPane textPane = getActiveTextPane();
            if (textPane != null) {
                if (!textPane.isTestScript) {
                    return true;
                }
            }
View Full Code Here

TOP

Related Classes of com.qspin.qtaste.ui.jedit.NonWrappingTextPane

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.