예제 #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;
		}
예제 #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;
 }
예제 #3
0
 public EditorFormatMapServiceImpl(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService)
     : base(themeService, textAppearanceCategoryService, editorFormatDefinitionService)
 {
 }
예제 #4
0
		public EditorFormatMapServiceImpl(IThemeService themeService, ITextAppearanceCategoryService textAppearanceCategoryService, IEditorFormatDefinitionService editorFormatDefinitionService)
			: base(themeService, textAppearanceCategoryService, editorFormatDefinitionService) {
		}