├── .gitignore ├── LICENSE ├── README.md ├── screenshots ├── ClassicHighlighting.png ├── Dark.png ├── HighlightingLoaders.png ├── HighlightingManager.png ├── HighlightingManager.vsdx ├── HighlightingManagerV2.png ├── Light.png ├── More │ ├── Dark_LightHighlighting.png │ ├── Light_DarkHighlighting.png │ └── Solution.png ├── ThemedHighlightingManager.png ├── Themes.png ├── TrueBlue_Dark.png ├── TrueBlue_Light.png ├── VS2019_Dark.png ├── icons │ ├── desk-lamp-dark.ico │ ├── desk-lamp-dark.svg │ ├── desk-lamp-dark_128x.png │ ├── desk-lamp-dark_16x.png │ ├── desk-lamp-dark_256x.png │ ├── desk-lamp-dark_32x.png │ ├── desk-lamp-dark_48x.png │ ├── desk-lamp-dark_64x.png │ ├── desk-lamp-light.ico │ ├── desk-lamp-light.svg │ ├── desk-lamp_128x.png │ ├── desk-lamp_16x.png │ ├── desk-lamp_256x.png │ ├── desk-lamp_32x.png │ ├── desk-lamp_48x.png │ └── desk-lamp_64x.png └── xshtd_objects.png └── source ├── CleanAll.bat ├── Components ├── ServiceLocator │ ├── ServiceContainer.cs │ ├── ServiceInjector.cs │ └── ServiceLocator.csproj └── Settings │ ├── Settings │ ├── AssemblyInfo.cs │ ├── Interfaces │ │ ├── IOptions.cs │ │ ├── IOptionsPanel.cs │ │ ├── IProfile.cs │ │ ├── ISettingsManager.cs │ │ └── IViewPosSizeModel.cs │ ├── Internal │ │ └── SettingsManagerImpl.cs │ ├── ProgramSettings │ │ ├── LanguageCollection.cs │ │ └── OptionsPanel.cs │ ├── SerializableDictionary.cs │ ├── Settings.csproj │ ├── SettingsManager.cs │ └── UserProfile │ │ ├── IViewSize.cs │ │ ├── LocalizabilityAttribute.cs │ │ ├── Profile.cs │ │ ├── ViewPosSizeModel.cs │ │ └── ViewSize.cs │ └── SettingsModel │ ├── ExtensionMethods │ └── SecureStringExtensionMethod.cs │ ├── Interfaces │ ├── IEngine.cs │ ├── IOptionGroup.cs │ └── IOptionsSchema.cs │ ├── Models │ ├── Engine.cs │ ├── Factory.cs │ ├── FileReference.cs │ ├── OptionGroup.cs │ ├── OptionsSchema.cs │ └── XML │ │ ├── Converters │ │ ├── AlternativeDataTypeHandler.cs │ │ ├── IAlternativeDataTypeHandler.cs │ │ └── SecureStringHandler.cs │ │ └── XMLLayer.cs │ └── SettingsModel.csproj ├── HL ├── AssemblyInfo.cs ├── HL.csproj ├── HighlightingTheme │ ├── GlobalStyle.cs │ └── SyntaxDefinition.cs ├── Interfaces │ ├── IHLTheme.cs │ └── IThemedHighlightingManager.cs ├── LICENSE ├── Manager │ ├── BusyManager.cs │ ├── DefaultHighlightingManager.cs │ ├── DelayLoadedHighlightingDefinition.cs │ ├── ExtensionMethods.cs │ ├── HLTheme.cs │ ├── HighlightingBrush.cs │ ├── HighlightingLoader.cs │ ├── HighlightingThemeLoader.cs │ ├── ThemedHighlightingManager.cs │ ├── V1Loader.cs │ ├── V2Loader.cs │ ├── XmlHighlightingDefinition.cs │ └── XshtdLoader.cs ├── Modes │ ├── ModeV1.xsd │ ├── ModeV2.xsd │ └── ModeV2_htd.xsd ├── Resources │ ├── HLResources.cs │ ├── Light │ │ ├── AS3.xshd │ │ ├── ASPX.xshd │ │ ├── Boo.xshd │ │ ├── CPP-Mode.xshd │ │ ├── CSS-Mode.xshd │ │ ├── CSharp-Mode.xshd │ │ ├── Coco-Mode.xshd │ │ ├── DOSBATCH.xshd │ │ ├── FSharp-Mode.xshd │ │ ├── HLSL.xshd │ │ ├── HTML-Mode.xshd │ │ ├── INI.xshd │ │ ├── Java-Mode.xshd │ │ ├── JavaScript-Mode.xshd │ │ ├── Log.xshd │ │ ├── MarkDown-Mode.xshd │ │ ├── PHP-Mode.xshd │ │ ├── PLSQL.xshd │ │ ├── Pascal.xshd │ │ ├── Patch-Mode.xshd │ │ ├── PowerShell.xshd │ │ ├── Python-Mode.xshd │ │ ├── Ruby.xshd │ │ ├── TSQL-Mode.xshd │ │ ├── TXT.xshd │ │ ├── Tex-Mode.xshd │ │ ├── VB-Mode.xshd │ │ ├── XML-Mode.xshd │ │ ├── XmlDoc.xshd │ │ ├── scheme.xshd │ │ ├── squirrel.xshd │ │ └── vtl.xshd │ └── Themes │ │ ├── Dark.xshtd │ │ ├── TrueBlue.xshtd │ │ └── VS2019_Dark.xshtd ├── Xshtd │ ├── IXshtdVisitor.cs │ ├── XhstdThemeDefinition.cs │ ├── XmlHighlightingThemeDefinition.cs │ ├── XshtdColor.cs │ ├── XshtdElement.cs │ ├── XshtdGlobalStyle.cs │ ├── XshtdGlobalStyles.cs │ ├── XshtdSyntaxDefinition.cs │ └── interfaces │ │ ├── IFreezable.cs │ │ ├── IHighlightingDefinitionReferenceResolver.cs │ │ └── IHighlightingThemeDefinition.cs └── images │ └── icon.png ├── Readme.txt ├── TextEditLib ├── AssemblyInfo.cs ├── Extensions │ └── HighlightCurrentLineBackgroundRenderer.cs ├── Resources │ └── Icons │ │ ├── Copy.ico │ │ ├── Copy_16x.svg │ │ ├── Cut.ico │ │ ├── Cut_16x.svg │ │ ├── Delete.ico │ │ ├── Delete_16x.svg │ │ ├── OpenFile.ico │ │ ├── OpenFile_16x.svg │ │ ├── Paste.ico │ │ ├── Paste_16x.svg │ │ ├── Redo.ico │ │ ├── Redo_16x.svg │ │ ├── Undo.ico │ │ └── Undo_16x.svg ├── TextEdit.xaml ├── TextEdit.xaml.cs ├── TextEditLib.csproj └── Themes │ ├── DarkBrushs.xaml │ ├── Generic.xaml │ ├── Icons.xaml │ ├── LightBrushs.xaml │ └── ResourceKeys.cs ├── ThemedAvalonEditDemo.sln └── ThemedDemo ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Behaviors └── SelectionChangedBehavior.cs ├── BindToMLib └── MWindowLib │ └── DarkLightBrushs.xaml ├── Converters └── NullToVisibilityConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models ├── AppCore.cs ├── SettingDefaults.cs └── ThemeDefinition.cs ├── ThemedDemo.csproj └── ViewModels ├── AppLifeCycleViewModel.cs ├── AppViewModel.cs ├── Base ├── ModelBase.cs ├── RelayCommand.cs └── ViewModelBase.cs ├── DocumentRootViewModel.cs ├── ThemeDefinitionViewModel.cs └── ThemeViewModel.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/ClassicHighlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/ClassicHighlighting.png -------------------------------------------------------------------------------- /screenshots/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/Dark.png -------------------------------------------------------------------------------- /screenshots/HighlightingLoaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/HighlightingLoaders.png -------------------------------------------------------------------------------- /screenshots/HighlightingManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/HighlightingManager.png -------------------------------------------------------------------------------- /screenshots/HighlightingManager.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/HighlightingManager.vsdx -------------------------------------------------------------------------------- /screenshots/HighlightingManagerV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/HighlightingManagerV2.png -------------------------------------------------------------------------------- /screenshots/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/Light.png -------------------------------------------------------------------------------- /screenshots/More/Dark_LightHighlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/More/Dark_LightHighlighting.png -------------------------------------------------------------------------------- /screenshots/More/Light_DarkHighlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/More/Light_DarkHighlighting.png -------------------------------------------------------------------------------- /screenshots/More/Solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/More/Solution.png -------------------------------------------------------------------------------- /screenshots/ThemedHighlightingManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/ThemedHighlightingManager.png -------------------------------------------------------------------------------- /screenshots/Themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/Themes.png -------------------------------------------------------------------------------- /screenshots/TrueBlue_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/TrueBlue_Dark.png -------------------------------------------------------------------------------- /screenshots/TrueBlue_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/TrueBlue_Light.png -------------------------------------------------------------------------------- /screenshots/VS2019_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/VS2019_Dark.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark.ico -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark.svg -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_128x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_16x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_256x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_256x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_32x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_48x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_48x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-dark_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-dark_64x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-light.ico -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp-light.svg -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_128x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_16x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_256x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_256x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_32x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_48x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_48x.png -------------------------------------------------------------------------------- /screenshots/icons/desk-lamp_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/icons/desk-lamp_64x.png -------------------------------------------------------------------------------- /screenshots/xshtd_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/screenshots/xshtd_objects.png -------------------------------------------------------------------------------- /source/CleanAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/CleanAll.bat -------------------------------------------------------------------------------- /source/Components/ServiceLocator/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/ServiceLocator/ServiceContainer.cs -------------------------------------------------------------------------------- /source/Components/ServiceLocator/ServiceInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/ServiceLocator/ServiceInjector.cs -------------------------------------------------------------------------------- /source/Components/ServiceLocator/ServiceLocator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/ServiceLocator/ServiceLocator.csproj -------------------------------------------------------------------------------- /source/Components/Settings/Settings/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Interfaces/IOptions.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Interfaces/IOptionsPanel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Interfaces/IProfile.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/ISettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Interfaces/ISettingsManager.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Interfaces/IViewPosSizeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Interfaces/IViewPosSizeModel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Internal/SettingsManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Internal/SettingsManagerImpl.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/ProgramSettings/LanguageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/ProgramSettings/LanguageCollection.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/ProgramSettings/OptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/ProgramSettings/OptionsPanel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/SerializableDictionary.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/Settings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/Settings.csproj -------------------------------------------------------------------------------- /source/Components/Settings/Settings/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/SettingsManager.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/IViewSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/UserProfile/IViewSize.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/LocalizabilityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/UserProfile/LocalizabilityAttribute.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/UserProfile/Profile.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/ViewPosSizeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/UserProfile/ViewPosSizeModel.cs -------------------------------------------------------------------------------- /source/Components/Settings/Settings/UserProfile/ViewSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/Settings/UserProfile/ViewSize.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/ExtensionMethods/SecureStringExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/ExtensionMethods/SecureStringExtensionMethod.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Interfaces/IEngine.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IOptionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Interfaces/IOptionGroup.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Interfaces/IOptionsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Interfaces/IOptionsSchema.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/Engine.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/Factory.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/FileReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/FileReference.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/OptionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/OptionGroup.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/OptionsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/OptionsSchema.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/AlternativeDataTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/AlternativeDataTypeHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/IAlternativeDataTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/IAlternativeDataTypeHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/Converters/SecureStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/XML/Converters/SecureStringHandler.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/Models/XML/XMLLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/Models/XML/XMLLayer.cs -------------------------------------------------------------------------------- /source/Components/Settings/SettingsModel/SettingsModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Components/Settings/SettingsModel/SettingsModel.csproj -------------------------------------------------------------------------------- /source/HL/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/HL/HL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/HL.csproj -------------------------------------------------------------------------------- /source/HL/HighlightingTheme/GlobalStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/HighlightingTheme/GlobalStyle.cs -------------------------------------------------------------------------------- /source/HL/HighlightingTheme/SyntaxDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/HighlightingTheme/SyntaxDefinition.cs -------------------------------------------------------------------------------- /source/HL/Interfaces/IHLTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Interfaces/IHLTheme.cs -------------------------------------------------------------------------------- /source/HL/Interfaces/IThemedHighlightingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Interfaces/IThemedHighlightingManager.cs -------------------------------------------------------------------------------- /source/HL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/LICENSE -------------------------------------------------------------------------------- /source/HL/Manager/BusyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/BusyManager.cs -------------------------------------------------------------------------------- /source/HL/Manager/DefaultHighlightingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/DefaultHighlightingManager.cs -------------------------------------------------------------------------------- /source/HL/Manager/DelayLoadedHighlightingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/DelayLoadedHighlightingDefinition.cs -------------------------------------------------------------------------------- /source/HL/Manager/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/ExtensionMethods.cs -------------------------------------------------------------------------------- /source/HL/Manager/HLTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/HLTheme.cs -------------------------------------------------------------------------------- /source/HL/Manager/HighlightingBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/HighlightingBrush.cs -------------------------------------------------------------------------------- /source/HL/Manager/HighlightingLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/HighlightingLoader.cs -------------------------------------------------------------------------------- /source/HL/Manager/HighlightingThemeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/HighlightingThemeLoader.cs -------------------------------------------------------------------------------- /source/HL/Manager/ThemedHighlightingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/ThemedHighlightingManager.cs -------------------------------------------------------------------------------- /source/HL/Manager/V1Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/V1Loader.cs -------------------------------------------------------------------------------- /source/HL/Manager/V2Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/V2Loader.cs -------------------------------------------------------------------------------- /source/HL/Manager/XmlHighlightingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/XmlHighlightingDefinition.cs -------------------------------------------------------------------------------- /source/HL/Manager/XshtdLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Manager/XshtdLoader.cs -------------------------------------------------------------------------------- /source/HL/Modes/ModeV1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Modes/ModeV1.xsd -------------------------------------------------------------------------------- /source/HL/Modes/ModeV2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Modes/ModeV2.xsd -------------------------------------------------------------------------------- /source/HL/Modes/ModeV2_htd.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Modes/ModeV2_htd.xsd -------------------------------------------------------------------------------- /source/HL/Resources/HLResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/HLResources.cs -------------------------------------------------------------------------------- /source/HL/Resources/Light/AS3.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/AS3.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/ASPX.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/ASPX.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Boo.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Boo.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/CPP-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/CPP-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/CSS-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/CSS-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/CSharp-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/CSharp-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Coco-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Coco-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/DOSBATCH.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/DOSBATCH.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/FSharp-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/FSharp-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/HLSL.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/HLSL.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/HTML-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/HTML-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/INI.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/INI.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Java-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Java-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/JavaScript-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/JavaScript-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Log.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Log.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/MarkDown-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/MarkDown-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/PHP-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/PHP-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/PLSQL.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/PLSQL.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Pascal.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Pascal.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Patch-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Patch-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/PowerShell.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/PowerShell.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Python-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Python-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Ruby.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Ruby.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/TSQL-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/TSQL-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/TXT.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/TXT.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/Tex-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/Tex-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/VB-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/VB-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/XML-Mode.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/XML-Mode.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/XmlDoc.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/XmlDoc.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/scheme.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/scheme.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/squirrel.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/squirrel.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Light/vtl.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Light/vtl.xshd -------------------------------------------------------------------------------- /source/HL/Resources/Themes/Dark.xshtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Themes/Dark.xshtd -------------------------------------------------------------------------------- /source/HL/Resources/Themes/TrueBlue.xshtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Themes/TrueBlue.xshtd -------------------------------------------------------------------------------- /source/HL/Resources/Themes/VS2019_Dark.xshtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Resources/Themes/VS2019_Dark.xshtd -------------------------------------------------------------------------------- /source/HL/Xshtd/IXshtdVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/IXshtdVisitor.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XhstdThemeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XhstdThemeDefinition.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XmlHighlightingThemeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XmlHighlightingThemeDefinition.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XshtdColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XshtdColor.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XshtdElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XshtdElement.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XshtdGlobalStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XshtdGlobalStyle.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XshtdGlobalStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XshtdGlobalStyles.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/XshtdSyntaxDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/XshtdSyntaxDefinition.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/interfaces/IFreezable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/interfaces/IFreezable.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/interfaces/IHighlightingDefinitionReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/interfaces/IHighlightingDefinitionReferenceResolver.cs -------------------------------------------------------------------------------- /source/HL/Xshtd/interfaces/IHighlightingThemeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/Xshtd/interfaces/IHighlightingThemeDefinition.cs -------------------------------------------------------------------------------- /source/HL/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/HL/images/icon.png -------------------------------------------------------------------------------- /source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/Readme.txt -------------------------------------------------------------------------------- /source/TextEditLib/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/TextEditLib/Extensions/HighlightCurrentLineBackgroundRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Extensions/HighlightCurrentLineBackgroundRenderer.cs -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Copy.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Copy_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Copy_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Cut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Cut.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Cut_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Cut_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Delete.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Delete_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Delete_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/OpenFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/OpenFile.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/OpenFile_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/OpenFile_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Paste.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Paste.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Paste_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Paste_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Redo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Redo.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Redo_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Redo_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Undo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Undo.ico -------------------------------------------------------------------------------- /source/TextEditLib/Resources/Icons/Undo_16x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Resources/Icons/Undo_16x.svg -------------------------------------------------------------------------------- /source/TextEditLib/TextEdit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/TextEdit.xaml -------------------------------------------------------------------------------- /source/TextEditLib/TextEdit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/TextEdit.xaml.cs -------------------------------------------------------------------------------- /source/TextEditLib/TextEditLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/TextEditLib.csproj -------------------------------------------------------------------------------- /source/TextEditLib/Themes/DarkBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Themes/DarkBrushs.xaml -------------------------------------------------------------------------------- /source/TextEditLib/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Themes/Generic.xaml -------------------------------------------------------------------------------- /source/TextEditLib/Themes/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Themes/Icons.xaml -------------------------------------------------------------------------------- /source/TextEditLib/Themes/LightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Themes/LightBrushs.xaml -------------------------------------------------------------------------------- /source/TextEditLib/Themes/ResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/TextEditLib/Themes/ResourceKeys.cs -------------------------------------------------------------------------------- /source/ThemedAvalonEditDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedAvalonEditDemo.sln -------------------------------------------------------------------------------- /source/ThemedDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/App.config -------------------------------------------------------------------------------- /source/ThemedDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/App.xaml -------------------------------------------------------------------------------- /source/ThemedDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/App.xaml.cs -------------------------------------------------------------------------------- /source/ThemedDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ThemedDemo/Behaviors/SelectionChangedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/Behaviors/SelectionChangedBehavior.cs -------------------------------------------------------------------------------- /source/ThemedDemo/BindToMLib/MWindowLib/DarkLightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/BindToMLib/MWindowLib/DarkLightBrushs.xaml -------------------------------------------------------------------------------- /source/ThemedDemo/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /source/ThemedDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/MainWindow.xaml -------------------------------------------------------------------------------- /source/ThemedDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/ThemedDemo/Models/AppCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/Models/AppCore.cs -------------------------------------------------------------------------------- /source/ThemedDemo/Models/SettingDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/Models/SettingDefaults.cs -------------------------------------------------------------------------------- /source/ThemedDemo/Models/ThemeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/Models/ThemeDefinition.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ThemedDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ThemedDemo.csproj -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/AppLifeCycleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/AppLifeCycleViewModel.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/AppViewModel.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/Base/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/Base/ModelBase.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/Base/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/Base/RelayCommand.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/Base/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/Base/ViewModelBase.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/DocumentRootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/DocumentRootViewModel.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/ThemeDefinitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/ThemeDefinitionViewModel.cs -------------------------------------------------------------------------------- /source/ThemedDemo/ViewModels/ThemeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/AvalonEditHighlightingThemes/HEAD/source/ThemedDemo/ViewModels/ThemeViewModel.cs --------------------------------------------------------------------------------