Package rsyntaxEdit

Examples of rsyntaxEdit.rsyntaxEditor$saveEditorTextAction


               
                rsyntaxAreaEditJMenuItem  = new JMenuItem("RSyntaxArea based programmer's editor - An alternative editor to jsyntaxPane");
                rsyntaxAreaEditJMenuItem.addActionListener(new ActionListener() {

                    public void actionPerformed(ActionEvent e) {
                  GlobalValues.globalRSyntaxFrame = (new rsyntaxEditor("Untitled", true)).currentFrame;
                  scalaExec.Interpreter.GlobalValues.editorPane.setCaretPosition(0);
                    }
                });
                rsyntaxAreaEditJMenuItem.setToolTipText("Editor based on rsyntaxArea component, very stable editor,  supports Scala code-completion");
                rsyntaxAreaEditJMenuItem.setFont(new Font(GlobalValues.uiFontName, Font.BOLD, Integer.parseInt(GlobalValues.uiFontSize) ));
View Full Code Here


              myGui.setLocation(xLocMainFrame, yLocMainFrame);
           
              myGui.loadTab(GlobalValues.mainTab);
             
              if (GlobalValues.preferRSyntaxEditor) {
            GlobalValues.globalRSyntaxFrame = (new rsyntaxEditor("Untitled", true)).currentFrame;
            scalaExec.Interpreter.GlobalValues.editorPane.setCaretPosition(0);
              }
              myGui.setVisible(true);
         
      }
View Full Code Here

TOP

Related Classes of rsyntaxEdit.rsyntaxEditor$saveEditorTextAction

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.