public PreviewHtmlCommand(
     ITextView textView,
     IRInteractiveWorkflowVisualProvider workflowProvider, IServiceContainer services)
     : base(textView, (int)MdPackageCommandId.icmdPreviewHtml, workflowProvider, services)
 {
     _wbs = services.GetService <IWebBrowserServices>();
 }
Exemple #2
0
 public SurveyNewsService(ISurveyNewsFeedClient feedClient, ISurveyNewsOptions options, IWebBrowserServices browserServices, ICoreShell coreShell)
 {
     _feedClient      = feedClient;
     _options         = options;
     _browserServices = browserServices;
     _coreShell       = coreShell;
 }
Exemple #3
0
 public VsMdCommandFactory(
     IRInteractiveWorkflowProvider workflowProvider,
     IInteractiveWindowComponentContainerFactory componentContainerFactory,
     IWebBrowserServices wbs)
 {
     _workflowProvider          = workflowProvider;
     _componentContainerFactory = componentContainerFactory;
     _wbs = wbs;
 }
 public SearchWebForCurrentCommand(
     IRInteractiveWorkflow workflow,
     IActiveWpfTextViewTracker textViewTracker,
     IActiveRInteractiveWindowTracker activeReplTracker,
     IWebBrowserServices webBrowserServices) :
     base(RGuidList.RCmdSetGuid, RPackageCommandId.icmdSearchWebForCurrent,
         workflow, textViewTracker, activeReplTracker, Resources.SearchWebFor) {
     _webBrowserServices = webBrowserServices;
 }
 public SearchWebForCurrentCommand(
     IRInteractiveWorkflow workflow,
     IActiveWpfTextViewTracker textViewTracker,
     IActiveRInteractiveWindowTracker activeReplTracker,
     IWebBrowserServices webBrowserServices) :
     base(RGuidList.RCmdSetGuid, RPackageCommandId.icmdSearchWebForCurrent,
          workflow, textViewTracker, activeReplTracker, Resources.SearchWebFor)
 {
     _webBrowserServices = webBrowserServices;
 }
Exemple #6
0
 public PreviewHtmlCommand(
     ITextView textView,
     IRInteractiveWorkflowProvider workflowProvider,
     IApplicationShell appShell,
     IProcessServices pss,
     IFileSystem fs,
     IWebBrowserServices wbs)
     : base(textView, (int)MdPackageCommandId.icmdPreviewHtml,
           workflowProvider, appShell, pss, fs) {
     _wbs = wbs;
 }
Exemple #7
0
 public PreviewHtmlCommand(
     ITextView textView,
     IRInteractiveWorkflowProvider workflowProvider,
     ICoreShell coreShell,
     IProcessServices pss,
     IFileSystem fs,
     IWebBrowserServices wbs)
     : base(textView, (int)MdPackageCommandId.icmdPreviewHtml,
            workflowProvider, coreShell, pss, fs)
 {
     _wbs = wbs;
 }
Exemple #8
0
 public VsMdCommandFactory(IRInteractiveWorkflowProvider workflowProvider, IWebBrowserServices wbs)
 {
     _workflowProvider = workflowProvider;
     _wbs = wbs;
 }
Exemple #9
0
 public SurveyNewsService(ISurveyNewsFeedClient feedClient, ISurveyNewsOptions options, IWebBrowserServices browserServices, ICoreShell coreShell) {
     _feedClient = feedClient;
     _options = options;
     _browserServices = browserServices;
     _coreShell = coreShell;
 }
Exemple #10
0
 public VsMdCommandFactory(ICoreShell coreShell)
 {
     _coreShell        = coreShell;
     _workflowProvider = coreShell.GetService <IRInteractiveWorkflowVisualProvider>();
     _wbs = coreShell.GetService <IWebBrowserServices>();
 }
Exemple #11
0
 public VsMdCommandFactory(IRInteractiveWorkflowProvider workflowProvider,  IWebBrowserServices wbs) {
     _workflowProvider = workflowProvider;
     _wbs = wbs;
 }
Exemple #12
0
 public SurveyNewsService(ISurveyNewsFeedClient feedClient, ISurveyNewsOptions options, IWebBrowserServices browserServices)
 {
     _feedClient      = feedClient;
     _options         = options;
     _browserServices = browserServices;
 }