Как я могу получить ITextBuffer из EnvDTE.Window? - PullRequest
8 голосов
/ 25 августа 2011

У меня есть управляемая подсветка синтаксиса, использующая новые API расширяемости VS, и это дает мне ITextBuffer, что замечательно.

В другой части моего расширения я получаю объект DTE и присоединяюсь ксобытие изменения активного окна, которое дает мне объект EnvDTE.Window.

var dte = (EnvDTE.DTE)this.GetService(typeof(EnvDTE.DTE));
dte.Events.WindowEvents.WindowActivated += WindowEvents_WindowActivated;
// ...

private void WindowEvents_WindowActivated(EnvDTE.Window GotFocus, EnvDTE.Window LostFocus)
{
  // ???
  // Profit
}

Я бы хотел вывести ITextBuffer из Window в этом методе.Может кто-нибудь сказать мне прямой способ сделать это?

1 Ответ

10 голосов
/ 10 сентября 2011

Решение, которое я использовал, заключалось в том, чтобы получить путь Windows, а затем использовать его в сочетании с IVsEditorAdaptersFactoryService и VsShellUtilities.

var openWindowPath = Path.Combine(window.Document.Path, window.Document.Name);
var buffer = GetBufferAt(openWindowPath);

и

internal ITextBuffer GetBufferAt(string filePath)
{
  var componentModel = (IComponentModel)GetService(typeof(SComponentModel));
  var editorAdapterFactoryService = componentModel.GetService<IVsEditorAdaptersFactoryService>();
  var serviceProvider = new Microsoft.VisualStudio.Shell.ServiceProvider(MetaSharpPackage.OleServiceProvider);

  IVsUIHierarchy uiHierarchy;
  uint itemID;
  IVsWindowFrame windowFrame;
  if (VsShellUtilities.IsDocumentOpen(
    serviceProvider,
    filePath,
    Guid.Empty,
    out uiHierarchy,
    out itemID,
    out windowFrame))
  {
    IVsTextView view = VsShellUtilities.GetTextView(windowFrame);
    IVsTextLines lines;
    if (view.GetBuffer(out lines) == 0)
    {
      var buffer = lines as IVsTextBuffer;
      if (buffer != null)
        return editorAdapterFactoryService.GetDataBuffer(buffer);
    }
  }

  return null;
}
...