protected T4ExpandableElementTooltipProviderBase(
     Lifetime lifetime,
     ISolution solution,
     IDeclaredElementDescriptionPresenter presenter
     ) : base(lifetime, solution, presenter)
 {
 }
Beispiel #2
0
 public T4EnvironmentVariableTooltipProvider(
     Lifetime lifetime,
     ISolution solution,
     IDeclaredElementDescriptionPresenter presenter
     ) : base(lifetime, solution, presenter)
 {
 }
Beispiel #3
0
 public IdentifierTooltipContentProvider([NotNull] ISolution solution, [NotNull] ColorizerPresenter colorizerPresenter,
                                         [NotNull] IDeclaredElementDescriptionPresenter declaredElementDescriptionPresenter)
 {
     _solution = solution;
     _declaredElementDescriptionPresenter = declaredElementDescriptionPresenter;
     _colorizerPresenter = colorizerPresenter;
 }
Beispiel #4
0
 public T4MacroTooltipProvider(
     Lifetime lifetime,
     ISolution solution,
     IDeclaredElementDescriptionPresenter presenter,
     [NotNull] DeclaredElementPresenterTextStylesService service,
     [NotNull] IT4MacroResolver resolver
     ) : base(lifetime, solution, presenter, service) => Resolver = resolver;
 protected T4ExpandableElementTooltipProviderBase(
     Lifetime lifetime,
     ISolution solution,
     IDeclaredElementDescriptionPresenter presenter,
     [NotNull] DeclaredElementPresenterTextStylesService service
     ) : base(lifetime, solution, presenter, service)
 {
 }
 public T4EnvironmentVariableTooltipProvider(
     Lifetime lifetime,
     ISolution solution,
     IDeclaredElementDescriptionPresenter presenter,
     [NotNull] DeclaredElementPresenterTextStylesService service
     ) : base(lifetime, solution, presenter, service)
 {
 }
 public IdentifierTooltipContentProvider(
     [NotNull] ISolution solution,
     [NotNull] ColorizerPresenter colorizerPresenter,
     [NotNull] IDeclaredElementDescriptionPresenter declaredElementDescriptionPresenter,
     [NotNull] HighlighterIdProviderFactory highlighterIdProviderFactory)
 {
     _solution           = solution;
     _colorizerPresenter = colorizerPresenter;
     _declaredElementDescriptionPresenter = declaredElementDescriptionPresenter;
     _highlighterIdProviderFactory        = highlighterIdProviderFactory;
 }
Beispiel #8
0
 public PsiIdentifierTooltipProvider(ISolution solution, IDeclaredElementDescriptionPresenter presenter)
     : base(solution, presenter)
 {
 }
Beispiel #9
0
 public PerformanceCriticalCodeHighlightingTooltipProvider(Lifetime lifetime, ISolution solution, IDeclaredElementDescriptionPresenter presenter)
     : base(lifetime, solution, presenter)
 {
 }
Beispiel #10
0
 public CgIdentifierTooltipProvider(Lifetime lifetime, ISolution solution, IDeclaredElementDescriptionPresenter presenter, DeclaredElementPresenterTextStylesService declaredElementPresenterTextStylesService)
     :  base(lifetime, solution, presenter, declaredElementPresenterTextStylesService)
 {
 }
Beispiel #11
0
 public CgIdentifierTooltipProvider(Lifetime lifetime, ISolution solution, IDeclaredElementDescriptionPresenter presenter)
     : base(lifetime, solution, presenter)
 {
 }
		public IdentifierTooltipContentProvider([NotNull] ISolution solution, [NotNull] ColorizerPresenter colorizerPresenter,
			[NotNull] IDeclaredElementDescriptionPresenter declaredElementDescriptionPresenter) {
			_solution = solution;
			_declaredElementDescriptionPresenter = declaredElementDescriptionPresenter;
			_colorizerPresenter = colorizerPresenter;
		}