Exemplo n.º 1
0
		protected EditorFormatMapService(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService) {
			this.themeService = themeService;
			this.textAppearanceCategoryService = textAppearanceCategoryService;
			this.editorFormatDefinitionService = editorFormatDefinitionService;
			toCategoryMap = new Dictionary<ITextAppearanceCategory, IEditorFormatMap>();
			cachedUpdaters = new List<CategoryEditorFormatMapUpdater>();
			dispatcher = Dispatcher.CurrentDispatcher;
		}
Exemplo n.º 2
0
 protected EditorFormatMapService(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService)
 {
     this.themeService = themeService;
     this.textAppearanceCategoryService = textAppearanceCategoryService;
     this.editorFormatDefinitionService = editorFormatDefinitionService;
     toCategoryMap  = new Dictionary <ITextAppearanceCategory, IEditorFormatMap>();
     cachedUpdaters = new List <CategoryEditorFormatMapUpdater>();
     dispatcher     = Dispatcher.CurrentDispatcher;
 }
Exemplo n.º 3
0
 public EditorFormatMapServiceImpl(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService)
     : base(themeService, textAppearanceCategoryService, editorFormatDefinitionService)
 {
 }
Exemplo n.º 4
0
		public EditorFormatMapServiceImpl(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService)
			: base(themeService, textAppearanceCategoryService, editorFormatDefinitionService) {
		}