Examples of ToggleUseSoftWrapsToolbarAction


Examples of com.intellij.openapi.editor.actions.ToggleUseSoftWrapsToolbarAction

        ArrayList<AnAction> executionActions = createConsoleExecActions(languageConsole,
                processHandler, consoleHistoryModel);
        runAction = executionActions.get(0);
        actionList.addAll(executionActions);

        actionList.add(new ToggleUseSoftWrapsToolbarAction(SoftWrapAppliancePlaces.CONSOLE) {
            @Override
            public void setSelected(AnActionEvent e, boolean state) {
                EditorEx consoleEditor = languageConsole.getConsoleEditor();
                EditorEx historyViewer = languageConsole.getHistoryViewer();
View Full Code Here

Examples of com.intellij.openapi.editor.actions.ToggleUseSoftWrapsToolbarAction

    ArrayList<AnAction> executionActions = createConsoleExecActions(getLanguageConsole(),
        myProcessHandler, myConsoleExecuteActionHandler, getHistoryModel());
    myRunAction = executionActions.get(0);
    actionList.addAll(executionActions);

    actionList.add(new ToggleUseSoftWrapsToolbarAction(SoftWrapAppliancePlaces.CONSOLE) {
      @Override
      public void setSelected(AnActionEvent e, boolean state) {
        EditorEx consoleEditor = getLanguageConsole().getConsoleEditor();
        EditorEx historyViewer = getLanguageConsole().getHistoryViewer();
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.