Search in sources :

Example 1 with InputEditorDisplay

use of org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay in project rstudio by rstudio.

the class Source method onGetEditorContext.

@Override
public void onGetEditorContext(GetEditorContextEvent event) {
    GetEditorContextEvent.Data data = event.getData();
    int type = data.getType();
    if (type == GetEditorContextEvent.TYPE_ACTIVE_EDITOR) {
        if (consoleEditorHadFocusLast() || activeEditor_ == null)
            type = GetEditorContextEvent.TYPE_CONSOLE_EDITOR;
        else
            type = GetEditorContextEvent.TYPE_SOURCE_EDITOR;
    }
    if (type == GetEditorContextEvent.TYPE_CONSOLE_EDITOR) {
        InputEditorDisplay editor = consoleEditorProvider_.getConsoleEditor();
        if (editor != null && editor instanceof DocDisplay) {
            getEditorContext("#console", "", (DocDisplay) editor);
            return;
        }
    } else if (type == GetEditorContextEvent.TYPE_SOURCE_EDITOR) {
        EditingTarget target = activeEditor_;
        if (target != null && target instanceof TextEditingTarget) {
            getEditorContext(target.getId(), target.getPath(), ((TextEditingTarget) target).getDocDisplay());
            return;
        }
    }
    // We need to ensure a 'getEditorContext' event is always
    // returned as we have a 'wait-for' event on the server side
    server_.getEditorContextCompleted(GetEditorContextEvent.SelectionData.create(), new VoidServerRequestCallback());
}
Also used : InputEditorDisplay(org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay) GetEditorContextEvent(org.rstudio.studio.client.events.GetEditorContextEvent) TextEditingTarget(org.rstudio.studio.client.workbench.views.source.editors.text.TextEditingTarget) EditingTarget(org.rstudio.studio.client.workbench.views.source.editors.EditingTarget) DataEditingTarget(org.rstudio.studio.client.workbench.views.source.editors.data.DataEditingTarget) CodeBrowserEditingTarget(org.rstudio.studio.client.workbench.views.source.editors.codebrowser.CodeBrowserEditingTarget) TextEditingTarget(org.rstudio.studio.client.workbench.views.source.editors.text.TextEditingTarget) VoidServerRequestCallback(org.rstudio.studio.client.server.VoidServerRequestCallback) DocDisplay(org.rstudio.studio.client.workbench.views.source.editors.text.DocDisplay)

Example 2 with InputEditorDisplay

use of org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay in project rstudio by rstudio.

the class Source method dispatchEditorEvent.

private void dispatchEditorEvent(final String id, final CommandWithArg<DocDisplay> command) {
    InputEditorDisplay console = consoleEditorProvider_.getConsoleEditor();
    boolean isConsoleEvent = false;
    if (console != null) {
        isConsoleEvent = (StringUtil.isNullOrEmpty(id) && console.isFocused()) || "#console".equals(id);
    }
    if (isConsoleEvent) {
        command.execute((DocDisplay) console);
    } else {
        withTarget(id, new CommandWithArg<TextEditingTarget>() {

            @Override
            public void execute(TextEditingTarget target) {
                command.execute(target.getDocDisplay());
            }
        });
    }
}
Also used : InputEditorDisplay(org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay) TextEditingTarget(org.rstudio.studio.client.workbench.views.source.editors.text.TextEditingTarget)

Example 3 with InputEditorDisplay

use of org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay in project rstudio by rstudio.

the class Shell method onSendToConsole.

public void onSendToConsole(final SendToConsoleEvent event) {
    final InputEditorDisplay display = view_.getInputEditorDisplay();
    // get anything already at the console
    final String previousInput = StringUtil.notNull(display.getText());
    // define code block we execute at finish
    Command finishSendToConsole = new Command() {

        @Override
        public void execute() {
            if (event.shouldExecute()) {
                processCommandEntry();
                if (previousInput.length() > 0)
                    display.setText(previousInput);
            }
            if (!event.shouldExecute() || event.shouldFocus()) {
                display.setFocus(true);
                display.collapseSelection(false);
            }
        }
    };
    // do standrd finish if we aren't animating
    if (!event.shouldAnimate()) {
        display.clear();
        display.setText(event.getCode());
        finishSendToConsole.execute();
    } else {
        inputAnimator_.enque(event.getCode(), finishSendToConsole);
    }
}
Also used : InputEditorDisplay(org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay) Command(com.google.gwt.user.client.Command) ScheduledCommand(com.google.gwt.core.client.Scheduler.ScheduledCommand) AppCommand(org.rstudio.core.client.command.AppCommand) JsArrayString(com.google.gwt.core.client.JsArrayString)

Aggregations

InputEditorDisplay (org.rstudio.studio.client.workbench.views.console.shell.editor.InputEditorDisplay)3 TextEditingTarget (org.rstudio.studio.client.workbench.views.source.editors.text.TextEditingTarget)2 JsArrayString (com.google.gwt.core.client.JsArrayString)1 ScheduledCommand (com.google.gwt.core.client.Scheduler.ScheduledCommand)1 Command (com.google.gwt.user.client.Command)1 AppCommand (org.rstudio.core.client.command.AppCommand)1 GetEditorContextEvent (org.rstudio.studio.client.events.GetEditorContextEvent)1 VoidServerRequestCallback (org.rstudio.studio.client.server.VoidServerRequestCallback)1 EditingTarget (org.rstudio.studio.client.workbench.views.source.editors.EditingTarget)1 CodeBrowserEditingTarget (org.rstudio.studio.client.workbench.views.source.editors.codebrowser.CodeBrowserEditingTarget)1 DataEditingTarget (org.rstudio.studio.client.workbench.views.source.editors.data.DataEditingTarget)1 DocDisplay (org.rstudio.studio.client.workbench.views.source.editors.text.DocDisplay)1