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());
}
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());
}
});
}
}
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);
}
}
Aggregations