blob: 0dd8c3586627ec23bae90749c50c22c6bf64749e [file] [log] [blame]
/*
* Copyright (c) 2012 Google Inc.
*
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v1.0 which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package com.google.eclipse.protobuf.cdt.actions;
import java.util.Collection;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.*;
import com.google.eclipse.protobuf.ui.editor.ModelObjectDefinitionNavigator.Query;
import com.google.inject.Inject;
/**
* Opens the declaration of a C++ element in the corresponding .proto file.
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class OpenProtoDeclarationAction implements IEditorActionDelegate {
private IEditorPart editor;
private ITextSelection selection;
@Inject private ModelObjectDefinitionQueryBuilder queryBuilder;
@Inject private NavigationJobs navigationJobs;
@Override public void run(IAction action) {
if (editor == null || selection == null) {
return;
}
Collection<Query> queries = queryBuilder.buildQueries(editor, selection);
if (!queries.isEmpty()) {
navigationJobs.scheduleUsing(queries);
}
}
@Override public void selectionChanged(IAction action, ISelection selection) {
if (selection instanceof ITextSelection) {
this.selection = (ITextSelection) selection;
return;
}
this.selection = null;
}
@Override public void setActiveEditor(IAction action, IEditorPart editor) {
this.editor = editor;
}
}