use of org.rstudio.studio.client.events.GetEditorContextEvent 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());
}
Aggregations