Package net.cakenet.jsaton.ui.tools.script

Examples of net.cakenet.jsaton.ui.tools.script.ScriptEditor


        initToolWindows();
        initRecent();
        System.setIn(log.log.getInputStream());
        System.setErr(new PrintStream(log.log.createOutputStream(System.err, err)));
        System.setOut(new PrintStream(log.log.createOutputStream(System.out, out)));
        ScriptEditor se = newScriptWindow(new RubyScript());
        selectWindow.setInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW, null);
        selectWindow.setInputMap(JComponent.WHEN_FOCUSED, null);
        selectWindow.setInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, null);
        MouseAdapter mad = new MouseAdapter() {
            private Cursor prevCursor;
View Full Code Here


        script.fireStateChange();
    }

    private ScriptEditor newScriptWindow(Script s) {
        s.setTarget(WindowManager.getDesktop());
        final ScriptEditor se = new ScriptEditor(s);
        finaliseToolWindow(se);
        if(currentEditor != null)
            currentEditor.dock(se);
        else
            scriptContainer.dock((Dockable) se, DockingConstants.CENTER_REGION);
View Full Code Here

TOP

Related Classes of net.cakenet.jsaton.ui.tools.script.ScriptEditor

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.