├── .gitattributes ├── .gitignore ├── Build.bat ├── Clean.bat ├── LICENSE.txt ├── Libs ├── AvalonDock.Themes.VS2012.dll ├── ICSharpCode.AvalonEdit.dll ├── MahApps.Metro.dll ├── Microsoft.Practices.Prism.Interactivity.dll ├── Microsoft.Practices.Prism.UnityExtensions.dll ├── Microsoft.Practices.Prism.dll ├── Microsoft.Practices.ServiceLocation.dll ├── Microsoft.Practices.Unity.dll ├── NLog.dll ├── System.IO.Abstractions.dll ├── System.Windows.Interactivity.dll ├── Xceed.Wpf.AvalonDock.Themes.VS2010.dll ├── Xceed.Wpf.AvalonDock.dll └── Xceed.Wpf.Toolkit.dll ├── README.md ├── Src ├── Test │ ├── Lib │ │ ├── MarkdownSharp.dll │ │ └── MarkdownSharp.pdb │ ├── Wide-MD │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppSplash.xaml │ │ ├── AppSplash.xaml.cs │ │ ├── Icon.png │ │ ├── MDBootstrapper.cs │ │ ├── MDWorkspace.cs │ │ ├── MultiDirectoryCatalog.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── WideMD.csproj │ └── WideMD.Core │ │ ├── BrowserBehavior.cs │ │ ├── CoreModule.cs │ │ ├── Icons │ │ ├── Copy_6524.png │ │ ├── Cut_6523.png │ │ ├── MDType.png │ │ ├── NewRequest_8796.png │ │ ├── OpenFileDialog_692.png │ │ ├── Paste_6520.png │ │ ├── Play.png │ │ ├── Redo_16x.png │ │ ├── Save_6530.png │ │ └── Undo_16x.png │ │ ├── MDHandler.cs │ │ ├── MDModel.cs │ │ ├── MDView.xaml │ │ ├── MDView.xaml.cs │ │ ├── MDViewModel.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── SaveAsMenuItemViewModel.cs │ │ ├── Settings │ │ ├── EditorOptions.cs │ │ └── MDSettingsItem.cs │ │ └── WideMD.Core.csproj ├── Wide.Tools.Logger │ ├── LoggerModel.cs │ ├── LoggerModule.cs │ ├── LoggerView.xaml │ ├── LoggerView.xaml.cs │ ├── LoggerViewModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Wide.Tools.Logger.csproj └── Wide │ ├── Core │ ├── Attributes │ │ ├── FileContentAttribute.cs │ │ └── NewContentAttribute.cs │ ├── CoreModule.cs │ ├── Icons │ │ └── Textfile.png │ ├── NLog.config │ ├── Services │ │ ├── AllFileHandler.cs │ │ ├── CommandManager.cs │ │ ├── ContentHandlerRegistry.cs │ │ ├── NLogService.cs │ │ ├── NewFileWindow.xaml │ │ ├── NewFileWindow.xaml.cs │ │ ├── OpenDocumentService.cs │ │ ├── ThemeManager.cs │ │ └── ToolbarService.cs │ ├── Settings │ │ ├── RecentViewItem.cs │ │ ├── RecentViewSettings.cs │ │ ├── SettingsManager.cs │ │ ├── SettingsWindow.xaml │ │ ├── SettingsWindow.xaml.cs │ │ ├── ThemeSettings.cs │ │ ├── ToolbarPositionSettings.cs │ │ ├── ToolbarSettingItem.cs │ │ └── WindowPositionSettings.cs │ ├── TextDocument │ │ ├── TextModel.cs │ │ ├── TextView.xaml │ │ ├── TextView.xaml.cs │ │ └── TextViewModel.cs │ └── Workspace.cs │ ├── Interfaces │ ├── AbstractWorkspace.cs │ ├── Base │ │ ├── AbstractPrioritizedTree.cs │ │ ├── ICommandable.cs │ │ └── IPrioritizedTree.cs │ ├── ContentModel.cs │ ├── ContentViewModel.cs │ ├── Controls │ │ ├── AbstractCommandable.cs │ │ ├── AbstractMenuItem.cs │ │ ├── AbstractToolbar.cs │ │ ├── IToolbar.cs │ │ ├── MenuItemViewModel.cs │ │ ├── ToolBarItemTemplateSelector.cs │ │ ├── ToolbarViewModel.cs │ │ └── WideStatusbar.cs │ ├── Converters │ │ ├── BoolToInsertModeConverter.cs │ │ ├── DocumentContextMenuMixingConverter.cs │ │ ├── MenuVisibilityConverter.cs │ │ ├── NullObjectToVisibiltyConverter.cs │ │ ├── NullToBooleanConverter.cs │ │ └── PercentToFontSizeConverter.cs │ ├── Events │ │ ├── ActiveContentChangedEvent.cs │ │ ├── ClosedContentEvent.cs │ │ ├── LogEvent.cs │ │ ├── OpenContentEvent.cs │ │ ├── SplashCloseEvent.cs │ │ ├── SplashMessageUpdatedEvent.cs │ │ ├── ThemeChangeEvent.cs │ │ └── WindowClosingEvent.cs │ ├── IContentView.cs │ ├── IShell.cs │ ├── ITheme.cs │ ├── ITool.cs │ ├── IWorkspace.cs │ ├── Services │ │ ├── ICommandManager.cs │ │ ├── IContentHandler.cs │ │ ├── IContentHandlerRegistry.cs │ │ ├── ILoggerService.cs │ │ ├── IMenuService.cs │ │ ├── IOpenDocumentService.cs │ │ ├── IStatusbarService.cs │ │ ├── IThemeManager.cs │ │ ├── IToolbarService.cs │ │ └── PaneLocation.cs │ ├── Settings │ │ ├── AbstractSettings.cs │ │ ├── AbstractSettingsItem.cs │ │ ├── IRecentViewItem.cs │ │ ├── IRecentViewSettings.cs │ │ ├── ISettingsManager.cs │ │ ├── IThemeSettings.cs │ │ ├── IToolbarPositionSettings.cs │ │ └── IWindowPositionSettings.cs │ ├── Styles │ │ ├── Controls.xaml │ │ ├── ControlsMetro.xaml │ │ ├── ToolbarBinding.xaml │ │ ├── VS2010 │ │ │ ├── Brushes.xaml │ │ │ ├── StatusBar.xaml │ │ │ ├── Theme.xaml │ │ │ └── Toolbar.xaml │ │ └── VS2012 │ │ │ ├── DarkColors.xaml │ │ │ ├── DarkTheme.xaml │ │ │ ├── LightColors.xaml │ │ │ ├── LightTheme.xaml │ │ │ ├── Menu.xaml │ │ │ ├── SplitButton.xaml │ │ │ ├── Toolbar.xaml │ │ │ ├── Tooltip.xaml │ │ │ └── WindowCommands.xaml │ ├── Themes │ │ ├── DarkTheme.cs │ │ ├── DefaultTheme.cs │ │ ├── LightTheme.cs │ │ └── VS2010.cs │ ├── ToolModel.cs │ ├── ToolViewModel.cs │ └── ViewModelBase.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Shell │ ├── ActiveDocumentConverter.cs │ ├── LayoutInitializer.cs │ ├── PanesStyleSelector.cs │ ├── PanesTemplateSelector.cs │ ├── ShellView.xaml │ ├── ShellView.xaml.cs │ ├── ShellViewMetro.xaml │ ├── ShellViewMetro.xaml.cs │ ├── WideBootstrapper.cs │ └── app.config │ ├── Splash │ ├── Behaviours │ │ └── SplashBehaviour.cs │ ├── ISplashView.cs │ ├── Module.cs │ ├── SplashView.xaml │ ├── SplashView.xaml.cs │ └── SplashViewModel.cs │ ├── Utils │ ├── DatabindingDebugConverter.cs │ └── PropertyChangedEvent.cs │ └── Wide.csproj └── Wide.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Build.bat -------------------------------------------------------------------------------- /Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Clean.bat -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Libs/AvalonDock.Themes.VS2012.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/AvalonDock.Themes.VS2012.dll -------------------------------------------------------------------------------- /Libs/ICSharpCode.AvalonEdit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/ICSharpCode.AvalonEdit.dll -------------------------------------------------------------------------------- /Libs/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/MahApps.Metro.dll -------------------------------------------------------------------------------- /Libs/Microsoft.Practices.Prism.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Microsoft.Practices.Prism.Interactivity.dll -------------------------------------------------------------------------------- /Libs/Microsoft.Practices.Prism.UnityExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Microsoft.Practices.Prism.UnityExtensions.dll -------------------------------------------------------------------------------- /Libs/Microsoft.Practices.Prism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Microsoft.Practices.Prism.dll -------------------------------------------------------------------------------- /Libs/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /Libs/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Libs/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/NLog.dll -------------------------------------------------------------------------------- /Libs/System.IO.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/System.IO.Abstractions.dll -------------------------------------------------------------------------------- /Libs/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Libs/Xceed.Wpf.AvalonDock.Themes.VS2010.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Xceed.Wpf.AvalonDock.Themes.VS2010.dll -------------------------------------------------------------------------------- /Libs/Xceed.Wpf.AvalonDock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Xceed.Wpf.AvalonDock.dll -------------------------------------------------------------------------------- /Libs/Xceed.Wpf.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Libs/Xceed.Wpf.Toolkit.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/README.md -------------------------------------------------------------------------------- /Src/Test/Lib/MarkdownSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Lib/MarkdownSharp.dll -------------------------------------------------------------------------------- /Src/Test/Lib/MarkdownSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Lib/MarkdownSharp.pdb -------------------------------------------------------------------------------- /Src/Test/Wide-MD/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/App.config -------------------------------------------------------------------------------- /Src/Test/Wide-MD/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/App.xaml -------------------------------------------------------------------------------- /Src/Test/Wide-MD/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/App.xaml.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/AppSplash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/AppSplash.xaml -------------------------------------------------------------------------------- /Src/Test/Wide-MD/AppSplash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/AppSplash.xaml.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Icon.png -------------------------------------------------------------------------------- /Src/Test/Wide-MD/MDBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/MDBootstrapper.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/MDWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/MDWorkspace.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/MultiDirectoryCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/MultiDirectoryCatalog.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/Test/Wide-MD/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/Test/Wide-MD/WideMD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/Wide-MD/WideMD.csproj -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/BrowserBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/BrowserBehavior.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/CoreModule.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Copy_6524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Copy_6524.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Cut_6523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Cut_6523.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/MDType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/MDType.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/NewRequest_8796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/NewRequest_8796.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/OpenFileDialog_692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/OpenFileDialog_692.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Paste_6520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Paste_6520.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Play.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Redo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Redo_16x.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Save_6530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Save_6530.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Icons/Undo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Icons/Undo_16x.png -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/MDHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/MDHandler.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/MDModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/MDModel.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/MDView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/MDView.xaml -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/MDView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/MDView.xaml.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/MDViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/MDViewModel.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/SaveAsMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/SaveAsMenuItemViewModel.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Settings/EditorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Settings/EditorOptions.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/Settings/MDSettingsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/Settings/MDSettingsItem.cs -------------------------------------------------------------------------------- /Src/Test/WideMD.Core/WideMD.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Test/WideMD.Core/WideMD.Core.csproj -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/LoggerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/LoggerModel.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/LoggerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/LoggerModule.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/LoggerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/LoggerView.xaml -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/LoggerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/LoggerView.xaml.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/LoggerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/LoggerViewModel.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/Wide.Tools.Logger/Wide.Tools.Logger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide.Tools.Logger/Wide.Tools.Logger.csproj -------------------------------------------------------------------------------- /Src/Wide/Core/Attributes/FileContentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Attributes/FileContentAttribute.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Attributes/NewContentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Attributes/NewContentAttribute.cs -------------------------------------------------------------------------------- /Src/Wide/Core/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/CoreModule.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Icons/Textfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Icons/Textfile.png -------------------------------------------------------------------------------- /Src/Wide/Core/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/NLog.config -------------------------------------------------------------------------------- /Src/Wide/Core/Services/AllFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/AllFileHandler.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/CommandManager.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/ContentHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/ContentHandlerRegistry.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/NLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/NLogService.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/NewFileWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/NewFileWindow.xaml -------------------------------------------------------------------------------- /Src/Wide/Core/Services/NewFileWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/NewFileWindow.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/OpenDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/OpenDocumentService.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/ThemeManager.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Services/ToolbarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Services/ToolbarService.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/RecentViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/RecentViewItem.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/RecentViewSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/RecentViewSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/SettingsManager.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/SettingsWindow.xaml -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/ThemeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/ThemeSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/ToolbarPositionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/ToolbarPositionSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/ToolbarSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/ToolbarSettingItem.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Settings/WindowPositionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Settings/WindowPositionSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Core/TextDocument/TextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/TextDocument/TextModel.cs -------------------------------------------------------------------------------- /Src/Wide/Core/TextDocument/TextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/TextDocument/TextView.xaml -------------------------------------------------------------------------------- /Src/Wide/Core/TextDocument/TextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/TextDocument/TextView.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Core/TextDocument/TextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/TextDocument/TextViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Core/Workspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Core/Workspace.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/AbstractWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/AbstractWorkspace.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Base/AbstractPrioritizedTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Base/AbstractPrioritizedTree.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Base/ICommandable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Base/ICommandable.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Base/IPrioritizedTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Base/IPrioritizedTree.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ContentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ContentModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ContentViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/AbstractCommandable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/AbstractCommandable.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/AbstractMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/AbstractMenuItem.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/AbstractToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/AbstractToolbar.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/IToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/IToolbar.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/MenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/MenuItemViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/ToolBarItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/ToolBarItemTemplateSelector.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/ToolbarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/ToolbarViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Controls/WideStatusbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Controls/WideStatusbar.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/BoolToInsertModeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/BoolToInsertModeConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/DocumentContextMenuMixingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/DocumentContextMenuMixingConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/MenuVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/MenuVisibilityConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/NullObjectToVisibiltyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/NullObjectToVisibiltyConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/NullToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/NullToBooleanConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Converters/PercentToFontSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Converters/PercentToFontSizeConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/ActiveContentChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/ActiveContentChangedEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/ClosedContentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/ClosedContentEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/LogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/LogEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/OpenContentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/OpenContentEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/SplashCloseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/SplashCloseEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/SplashMessageUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/SplashMessageUpdatedEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/ThemeChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/ThemeChangeEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Events/WindowClosingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Events/WindowClosingEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/IContentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/IContentView.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/IShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/IShell.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ITheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ITheme.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ITool.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/IWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/IWorkspace.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/ICommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/ICommandManager.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IContentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IContentHandler.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IContentHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IContentHandlerRegistry.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/ILoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/ILoggerService.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IMenuService.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IOpenDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IOpenDocumentService.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IStatusbarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IStatusbarService.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IThemeManager.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/IToolbarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/IToolbarService.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Services/PaneLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Services/PaneLocation.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/AbstractSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/AbstractSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/AbstractSettingsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/AbstractSettingsItem.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/IRecentViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/IRecentViewItem.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/IRecentViewSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/IRecentViewSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/ISettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/ISettingsManager.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/IThemeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/IThemeSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/IToolbarPositionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/IToolbarPositionSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Settings/IWindowPositionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Settings/IWindowPositionSettings.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/Controls.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/ControlsMetro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/ControlsMetro.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/ToolbarBinding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/ToolbarBinding.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2010/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2010/Brushes.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2010/StatusBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2010/StatusBar.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2010/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2010/Theme.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2010/Toolbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2010/Toolbar.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/DarkColors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/DarkColors.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/DarkTheme.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/LightColors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/LightColors.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/LightTheme.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/Menu.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/SplitButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/SplitButton.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/Toolbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/Toolbar.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/Tooltip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/Tooltip.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Styles/VS2012/WindowCommands.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Styles/VS2012/WindowCommands.xaml -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Themes/DarkTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Themes/DarkTheme.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Themes/DefaultTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Themes/DefaultTheme.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Themes/LightTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Themes/LightTheme.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/Themes/VS2010.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/Themes/VS2010.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ToolModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ToolModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ToolViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ToolViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Interfaces/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Interfaces/ViewModelBase.cs -------------------------------------------------------------------------------- /Src/Wide/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Wide/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/Wide/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/Wide/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/Wide/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/Wide/Shell/ActiveDocumentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/ActiveDocumentConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/LayoutInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/LayoutInitializer.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/PanesStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/PanesStyleSelector.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/PanesTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/PanesTemplateSelector.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/ShellView.xaml -------------------------------------------------------------------------------- /Src/Wide/Shell/ShellView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/ShellView.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/ShellViewMetro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/ShellViewMetro.xaml -------------------------------------------------------------------------------- /Src/Wide/Shell/ShellViewMetro.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/ShellViewMetro.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/WideBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/WideBootstrapper.cs -------------------------------------------------------------------------------- /Src/Wide/Shell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Shell/app.config -------------------------------------------------------------------------------- /Src/Wide/Splash/Behaviours/SplashBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/Behaviours/SplashBehaviour.cs -------------------------------------------------------------------------------- /Src/Wide/Splash/ISplashView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/ISplashView.cs -------------------------------------------------------------------------------- /Src/Wide/Splash/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/Module.cs -------------------------------------------------------------------------------- /Src/Wide/Splash/SplashView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/SplashView.xaml -------------------------------------------------------------------------------- /Src/Wide/Splash/SplashView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/SplashView.xaml.cs -------------------------------------------------------------------------------- /Src/Wide/Splash/SplashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Splash/SplashViewModel.cs -------------------------------------------------------------------------------- /Src/Wide/Utils/DatabindingDebugConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Utils/DatabindingDebugConverter.cs -------------------------------------------------------------------------------- /Src/Wide/Utils/PropertyChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Utils/PropertyChangedEvent.cs -------------------------------------------------------------------------------- /Src/Wide/Wide.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Src/Wide/Wide.csproj -------------------------------------------------------------------------------- /Wide.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chandramouleswaran/Wide/HEAD/Wide.sln --------------------------------------------------------------------------------