├── .gitignore ├── CSharpEditor.sln ├── CSharpEditor ├── AutoSaver.cs ├── BreakpointInfo.cs ├── BreakpointPanel.axaml ├── BreakpointPanel.axaml.cs ├── CSharpEditor.csproj ├── CSharpEditor.xml ├── CSharpSourceEditor.cs ├── CSharpSourceEditorBreakpoints.cs ├── CSharpSourceEditorCaret.cs ├── CSharpSourceEditorControl.cs ├── CSharpSourceEditorLineNumbers.cs ├── CSharpSourceEditorScrollBarMarker.cs ├── CSharpSourceEditorSearchReplace.axaml ├── CSharpSourceEditorSearchReplace.axaml.cs ├── CSharpSourceEditorSelection.cs ├── CSharpSourceEditorText.cs ├── CachedMetadataReference.cs ├── CompilationErrorChecker.cs ├── CompletionListControl.cs ├── CompletionWindow.axaml ├── CompletionWindow.axaml.cs ├── DiagnosticIcons │ ├── AssemblyReferenceIcon.axaml │ ├── AssemblyReferenceIcon.axaml.cs │ ├── AutosaveIcon.axaml │ ├── AutosaveIcon.axaml.cs │ ├── BlueTickIcon.axaml │ ├── BlueTickIcon.axaml.cs │ ├── CopyIcon.axaml │ ├── CopyIcon.axaml.cs │ ├── CoreReferenceIcon.axaml │ ├── CoreReferenceIcon.axaml.cs │ ├── DeleteIcon.axaml │ ├── DeleteIcon.axaml.cs │ ├── DocumentationIcon.axaml │ ├── DocumentationIcon.axaml.cs │ ├── ErrorIcon.axaml │ ├── ErrorIcon.axaml.cs │ ├── InfoIcon.axaml │ ├── InfoIcon.axaml.cs │ ├── KeyIcon.axaml │ ├── KeyIcon.axaml.cs │ ├── LoadSettingsIcon.axaml │ ├── LoadSettingsIcon.axaml.cs │ ├── MinusIcon.axaml │ ├── MinusIcon.axaml.cs │ ├── PlusIcon.axaml │ ├── PlusIcon.axaml.cs │ ├── ReferenceIcon.axaml │ ├── ReferenceIcon.axaml.cs │ ├── RefreshIcon.axaml │ ├── RefreshIcon.axaml.cs │ ├── RestoreIcon.axaml │ ├── RestoreIcon.axaml.cs │ ├── ResumeIcon.axaml │ ├── ResumeIcon.axaml.cs │ ├── SaveIcon.axaml │ ├── SaveIcon.axaml.cs │ ├── SettingsIcon.axaml │ ├── SettingsIcon.axaml.cs │ ├── StartingIcon.axaml │ ├── StartingIcon.axaml.cs │ ├── TickIcon.axaml │ ├── TickIcon.axaml.cs │ ├── WarningIcon.axaml │ └── WarningIcon.axaml.cs ├── Editor.axaml ├── Editor.axaml.cs ├── Editor.public.cs ├── ErrorContainer.axaml ├── ErrorContainer.axaml.cs ├── Fonts │ ├── LICENSE.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Regular.ttf │ ├── RobotoMono-Bold.ttf │ ├── RobotoMono-BoldItalic.ttf │ ├── RobotoMono-Italic.ttf │ └── RobotoMono-Regular.ttf ├── FormattedText.cs ├── InputHandler.cs ├── IntellisenseIconsPNG │ ├── ClassIcon.png │ ├── DelegateIcon.png │ ├── EnumIcon.png │ ├── EnumMemberIcon.png │ ├── EventIcon.png │ ├── FieldIcon.png │ ├── InterfaceIcon.png │ ├── KeywordIcon.png │ ├── LocalIcon.png │ ├── MethodIcon.png │ ├── NamespaceIcon.png │ ├── PropertyIcon.png │ ├── StructIcon.png │ └── UnknownIcon.png ├── InterprocessDebugger.cs ├── MethodOverloadList.axaml ├── MethodOverloadList.axaml.cs ├── MultiItemContainer.axaml ├── MultiItemContainer.axaml.cs ├── ReferencesContainer.axaml ├── ReferencesContainer.axaml.cs ├── RelativePath.cs ├── SaveHistoryContainer.axaml ├── SaveHistoryContainer.axaml.cs ├── SettingsContainer.axaml ├── SettingsContainer.axaml.cs ├── StatusBar.axaml ├── StatusBar.axaml.cs ├── SymbolToolTip.axaml ├── SymbolToolTip.axaml.cs ├── SyntaxKindColor.cs ├── TypeIcons │ ├── ArrayIcon.axaml │ ├── ArrayIcon.axaml.cs │ ├── BoolIcon.axaml │ ├── BoolIcon.axaml.cs │ ├── CharIcon.axaml │ ├── CharIcon.axaml.cs │ ├── LensIcon.axaml │ ├── LensIcon.axaml.cs │ ├── NullIcon.axaml │ ├── NullIcon.axaml.cs │ ├── NumberIcon.axaml │ ├── NumberIcon.axaml.cs │ ├── PrivateIcon.axaml │ ├── PrivateIcon.axaml.cs │ ├── StringIcon.axaml │ └── StringIcon.axaml.cs ├── Utils.cs ├── VariableExpander.axaml ├── VariableExpander.axaml.cs ├── xmldocs.dll.list └── xmldocs.json ├── CSharpEditorDemo ├── App.axaml ├── App.axaml.cs ├── CSharpEditorDemo.csproj ├── HelloWorld.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs └── Program.cs ├── CSharpEditorIPCDemoClient ├── App.axaml ├── App.axaml.cs ├── CSharpEditorIPCDemoClient.csproj ├── MainWindow.axaml ├── MainWindow.axaml.cs └── Program.cs ├── CSharpEditorIPCDemoServer ├── App.axaml ├── App.axaml.cs ├── CSharpEditorIPCDemoServer.csproj ├── HelloWorld.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs └── Program.cs ├── Doxy.css ├── Doxyfile ├── Icon.png ├── Icon.svg ├── LICENSE ├── ParseXMLDocumentation ├── ParseXMLDocumentation.csproj └── Program.cs ├── Readme.md ├── Screenshot.png └── docs ├── CSharpEditor.pdf ├── Doxy.css ├── _auto_saver_8cs_source.html ├── _breakpoint_info_8cs_source.html ├── _breakpoint_panel_8axaml_8cs_source.html ├── _c_sharp_source_editor_8cs_source.html ├── _c_sharp_source_editor_breakpoints_8cs_source.html ├── _c_sharp_source_editor_caret_8cs_source.html ├── _c_sharp_source_editor_control_8cs_source.html ├── _c_sharp_source_editor_line_numbers_8cs_source.html ├── _c_sharp_source_editor_scroll_bar_marker_8cs_source.html ├── _c_sharp_source_editor_search_replace_8axaml_8cs_source.html ├── _c_sharp_source_editor_selection_8cs_source.html ├── _c_sharp_source_editor_text_8cs_source.html ├── _cached_metadata_reference_8cs_source.html ├── _compilation_error_checker_8cs_source.html ├── _completion_list_control_8cs_source.html ├── _completion_window_8axaml_8cs_source.html ├── _editor_8axaml_8cs_source.html ├── _editor_8public_8cs_source.html ├── _error_container_8axaml_8cs_source.html ├── _formatted_text_8cs_source.html ├── _input_handler_8cs_source.html ├── _interprocess_debugger_8cs_source.html ├── _method_overload_list_8axaml_8cs_source.html ├── _multi_item_container_8axaml_8cs_source.html ├── _references_container_8axaml_8cs_source.html ├── _save_history_container_8axaml_8cs_source.html ├── _settings_container_8axaml_8cs_source.html ├── _status_bar_8axaml_8cs_source.html ├── _symbol_tool_tip_8axaml_8cs_source.html ├── _syntax_kind_color_8cs_source.html ├── _utils_8cs_source.html ├── _variable_expander_8axaml_8cs_source.html ├── annotated.html ├── annotated_dup.js ├── bc_s.png ├── bdwn.png ├── class_c_sharp_editor_1_1_breakpoint_info-members.html ├── class_c_sharp_editor_1_1_breakpoint_info.html ├── class_c_sharp_editor_1_1_breakpoint_info.js ├── class_c_sharp_editor_1_1_cached_metadata_reference-members.html ├── class_c_sharp_editor_1_1_cached_metadata_reference.html ├── class_c_sharp_editor_1_1_cached_metadata_reference.js ├── class_c_sharp_editor_1_1_compilation_event_args-members.html ├── class_c_sharp_editor_1_1_compilation_event_args.html ├── class_c_sharp_editor_1_1_compilation_event_args.js ├── class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.map ├── class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.md5 ├── class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.png ├── class_c_sharp_editor_1_1_editor-members.html ├── class_c_sharp_editor_1_1_editor.html ├── class_c_sharp_editor_1_1_editor.js ├── class_c_sharp_editor_1_1_editor__inherit__graph.map ├── class_c_sharp_editor_1_1_editor__inherit__graph.md5 ├── class_c_sharp_editor_1_1_editor__inherit__graph.png ├── class_c_sharp_editor_1_1_interprocess_debugger_client-members.html ├── class_c_sharp_editor_1_1_interprocess_debugger_client.html ├── class_c_sharp_editor_1_1_interprocess_debugger_client.js ├── class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.map ├── class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.md5 ├── class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.png ├── class_c_sharp_editor_1_1_interprocess_debugger_server-members.html ├── class_c_sharp_editor_1_1_interprocess_debugger_server.html ├── class_c_sharp_editor_1_1_interprocess_debugger_server.js ├── class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.map ├── class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.md5 ├── class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.png ├── class_c_sharp_editor_1_1_save_event_args-members.html ├── class_c_sharp_editor_1_1_save_event_args.html ├── class_c_sharp_editor_1_1_save_event_args.js ├── class_c_sharp_editor_1_1_save_event_args__inherit__graph.map ├── class_c_sharp_editor_1_1_save_event_args__inherit__graph.md5 ├── class_c_sharp_editor_1_1_save_event_args__inherit__graph.png ├── class_c_sharp_editor_1_1_shortcut-members.html ├── class_c_sharp_editor_1_1_shortcut.html ├── class_c_sharp_editor_1_1_shortcut.js ├── classes.html ├── closed.png ├── dir_893732ece2dfac99897cc4d5917c9672.html ├── dir_893732ece2dfac99897cc4d5917c9672.js ├── doc.png ├── doxygen.css ├── doxygen.png ├── dynsections.js ├── files.html ├── files_dup.js ├── folderclosed.png ├── folderopen.png ├── functions.html ├── functions_enum.html ├── functions_evnt.html ├── functions_func.html ├── functions_prop.html ├── functions_vars.html ├── graph_legend.html ├── graph_legend.md5 ├── graph_legend.png ├── hierarchy.html ├── hierarchy.js ├── icon.svg ├── index.html ├── inherit_graph_0.map ├── inherit_graph_0.md5 ├── inherit_graph_0.png ├── inherit_graph_1.map ├── inherit_graph_1.md5 ├── inherit_graph_1.png ├── inherit_graph_2.map ├── inherit_graph_2.md5 ├── inherit_graph_2.png ├── inherit_graph_3.map ├── inherit_graph_3.md5 ├── inherit_graph_3.png ├── inherit_graph_4.map ├── inherit_graph_4.md5 ├── inherit_graph_4.png ├── inherits.html ├── jquery.js ├── menu.js ├── menudata.js ├── namespace_c_sharp_editor.html ├── namespace_c_sharp_editor.js ├── namespacemembers.html ├── namespacemembers_enum.html ├── namespaces.html ├── namespaces_dup.js ├── nav_f.png ├── nav_g.png ├── nav_h.png ├── navtree.css ├── navtree.js ├── navtreedata.js ├── navtreeindex0.js ├── open.png ├── resize.js ├── search ├── all_0.html ├── all_0.js ├── all_1.html ├── all_1.js ├── all_2.html ├── all_2.js ├── all_3.html ├── all_3.js ├── all_4.html ├── all_4.js ├── all_5.html ├── all_5.js ├── all_6.html ├── all_6.js ├── all_7.html ├── all_7.js ├── all_8.html ├── all_8.js ├── all_9.html ├── all_9.js ├── all_a.html ├── all_a.js ├── all_b.html ├── all_b.js ├── all_c.html ├── all_c.js ├── all_d.html ├── all_d.js ├── all_e.html ├── all_e.js ├── all_f.html ├── all_f.js ├── classes_0.html ├── classes_0.js ├── classes_1.html ├── classes_1.js ├── classes_2.html ├── classes_2.js ├── classes_3.html ├── classes_3.js ├── classes_4.html ├── classes_4.js ├── close.png ├── enums_0.html ├── enums_0.js ├── enums_1.html ├── enums_1.js ├── enumvalues_0.html ├── enumvalues_0.js ├── enumvalues_1.html ├── enumvalues_1.js ├── enumvalues_2.html ├── enumvalues_2.js ├── events_0.html ├── events_0.js ├── events_1.html ├── events_1.js ├── events_2.html ├── events_2.js ├── events_3.html ├── events_3.js ├── events_4.html ├── events_4.js ├── functions_0.html ├── functions_0.js ├── functions_1.html ├── functions_1.js ├── functions_2.html ├── functions_2.js ├── functions_3.html ├── functions_3.js ├── functions_4.html ├── functions_4.js ├── functions_5.html ├── functions_5.js ├── functions_6.html ├── functions_6.js ├── mag_sel.png ├── namespaces_0.html ├── namespaces_0.js ├── nomatches.html ├── pages_0.html ├── pages_0.js ├── properties_0.html ├── properties_0.js ├── properties_1.html ├── properties_1.js ├── properties_2.html ├── properties_2.js ├── properties_3.html ├── properties_3.js ├── properties_4.html ├── properties_4.js ├── properties_5.html ├── properties_5.js ├── properties_6.html ├── properties_6.js ├── properties_7.html ├── properties_7.js ├── properties_8.html ├── properties_8.js ├── properties_9.html ├── properties_9.js ├── properties_a.html ├── properties_a.js ├── properties_b.html ├── properties_b.js ├── properties_c.html ├── properties_c.js ├── search.css ├── search.js ├── search_l.png ├── search_m.png ├── search_r.png ├── searchdata.js ├── variables_0.html ├── variables_0.js ├── variables_1.html ├── variables_1.js ├── variables_2.html └── variables_2.js ├── splitbar.png ├── sync_off.png ├── sync_on.png ├── tab_a.png ├── tab_b.png ├── tab_h.png ├── tab_s.png └── tabs.css /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | */bin 3 | */obj 4 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/AssemblyReferenceIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/AssemblyReferenceIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class AssemblyReferenceIcon : UserControl 8 | { 9 | public AssemblyReferenceIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/AutosaveIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/AutosaveIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class AutosaveIcon : UserControl 8 | { 9 | public AutosaveIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/BlueTickIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/BlueTickIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class BlueTickIcon : UserControl 8 | { 9 | public BlueTickIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/CopyIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class CopyIcon : UserControl 8 | { 9 | public CopyIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/CoreReferenceIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class CoreReferenceIcon : UserControl 8 | { 9 | public CoreReferenceIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/DeleteIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/DeleteIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class DeleteIcon : UserControl 8 | { 9 | public DeleteIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/DocumentationIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class DocumentationIcon : UserControl 8 | { 9 | public DocumentationIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/ErrorIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class ErrorIcon : UserControl 8 | { 9 | public ErrorIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/InfoIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/InfoIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class InfoIcon : UserControl 8 | { 9 | public InfoIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/KeyIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | using System; 5 | 6 | namespace CSharpEditor.DiagnosticIcons 7 | { 8 | internal class KeyIcon : UserControl 9 | { 10 | public static readonly StyledProperty KeyTextProperty = AvaloniaProperty.Register(nameof(KeyText), "Key"); 11 | 12 | public string KeyText 13 | { 14 | get { return GetValue(KeyTextProperty); } 15 | set 16 | { 17 | string newVal = value; 18 | if (newVal == "Ctrl" && System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSX)) 19 | { 20 | newVal = "Cmd"; 21 | } 22 | 23 | SetValue(KeyTextProperty, newVal); 24 | } 25 | } 26 | 27 | 28 | public KeyIcon() 29 | { 30 | this.InitializeComponent(); 31 | } 32 | 33 | private void InitializeComponent() 34 | { 35 | AvaloniaXamlLoader.Load(this); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/LoadSettingsIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class LoadSettingsIcon : UserControl 8 | { 9 | public LoadSettingsIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/MinusIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/MinusIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class MinusIcon : UserControl 8 | { 9 | public MinusIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/PlusIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/PlusIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class PlusIcon : UserControl 8 | { 9 | public PlusIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/ReferenceIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class ReferenceIcon : UserControl 8 | { 9 | public ReferenceIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/RefreshIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class RefreshIcon : UserControl 8 | { 9 | public RefreshIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/RestoreIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/RestoreIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class RestoreIcon : UserControl 8 | { 9 | public RestoreIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/ResumeIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/ResumeIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class ResumeIcon : UserControl 8 | { 9 | public ResumeIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/SaveIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/SaveIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class SaveIcon : UserControl 8 | { 9 | public SaveIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/SettingsIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class SettingsIcon : UserControl 8 | { 9 | public SettingsIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/StartingIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/StartingIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class StartingIcon : UserControl 8 | { 9 | public StartingIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/TickIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/TickIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class TickIcon : UserControl 8 | { 9 | public TickIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/WarningIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /CSharpEditor/DiagnosticIcons/WarningIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.DiagnosticIcons 6 | { 7 | internal class WarningIcon : UserControl 8 | { 9 | public WarningIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/Fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /CSharpEditor/Fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/Fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/ClassIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/ClassIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/DelegateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/DelegateIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/EnumIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/EnumIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/EnumMemberIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/EnumMemberIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/EventIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/EventIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/FieldIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/FieldIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/InterfaceIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/InterfaceIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/KeywordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/KeywordIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/LocalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/LocalIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/MethodIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/MethodIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/NamespaceIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/NamespaceIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/PropertyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/PropertyIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/StructIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/StructIcon.png -------------------------------------------------------------------------------- /CSharpEditor/IntellisenseIconsPNG/UnknownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/CSharpEditor/IntellisenseIconsPNG/UnknownIcon.png -------------------------------------------------------------------------------- /CSharpEditor/SymbolToolTip.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/ArrayIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/ArrayIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class ArrayIcon : UserControl 8 | { 9 | public ArrayIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/BoolIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/BoolIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class BoolIcon : UserControl 8 | { 9 | public BoolIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/CharIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/CharIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class CharIcon : UserControl 8 | { 9 | public CharIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/LensIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/LensIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class LensIcon : UserControl 8 | { 9 | public LensIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/NullIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/NullIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class NullIcon : UserControl 8 | { 9 | public NullIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/NumberIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/NumberIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class NumberIcon : UserControl 8 | { 9 | public NumberIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/PrivateIcon.axaml: -------------------------------------------------------------------------------- 1 |  18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/PrivateIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class PrivateIcon : UserControl 8 | { 9 | public PrivateIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditor/TypeIcons/StringIcon.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditor.TypeIcons 6 | { 7 | internal class StringIcon : UserControl 8 | { 9 | public StringIcon() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | 14 | private void InitializeComponent() 15 | { 16 | AvaloniaXamlLoader.Load(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CSharpEditorDemo/App.axaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CSharpEditorDemo/App.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls.ApplicationLifetimes; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditorDemo 6 | { 7 | public class App : Application 8 | { 9 | public override void Initialize() 10 | { 11 | AvaloniaXamlLoader.Load(this); 12 | } 13 | 14 | public override void OnFrameworkInitializationCompleted() 15 | { 16 | if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) 17 | { 18 | desktop.MainWindow = new MainWindow(); 19 | } 20 | 21 | base.OnFrameworkInitializationCompleted(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /CSharpEditorDemo/CSharpEditorDemo.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | net6.0 5 | 6 | 7 | x64 8 | 9 | 10 | x64 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /CSharpEditorDemo/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorld 4 | { 5 | class Hello 6 | { 7 | static void Main() 8 | { 9 | string localVariable = "Hello world!"; 10 | 11 | /* Breakpoint */ 12 | Console.WriteLine(localVariable); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /CSharpEditorDemo/MainWindow.axaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /CSharpEditorDemo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Avalonia; 3 | using Avalonia.Controls.ApplicationLifetimes; 4 | 5 | namespace CSharpEditorDemo 6 | { 7 | class Program 8 | { 9 | // Initialization code. Don't use any Avalonia, third-party APIs or any 10 | // SynchronizationContext-reliant code before AppMain is called: things aren't initialized 11 | // yet and stuff might break. 12 | public static void Main(string[] args) => BuildAvaloniaApp() 13 | .StartWithClassicDesktopLifetime(args); 14 | 15 | // Avalonia configuration, don't remove; also used by visual designer. 16 | public static AppBuilder BuildAvaloniaApp() 17 | => AppBuilder.Configure() 18 | .UsePlatformDetect() 19 | .LogToTrace(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoClient/App.axaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoClient/App.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls.ApplicationLifetimes; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditorIPCDemoClient 6 | { 7 | public class App : Application 8 | { 9 | public override void Initialize() 10 | { 11 | AvaloniaXamlLoader.Load(this); 12 | } 13 | 14 | public override void OnFrameworkInitializationCompleted() 15 | { 16 | if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) 17 | { 18 | desktop.MainWindow = new MainWindow(); 19 | } 20 | 21 | base.OnFrameworkInitializationCompleted(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoClient/CSharpEditorIPCDemoClient.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Exe 4 | netcoreapp3.1 5 | 6 | 7 | x64 8 | 9 | 10 | x64 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoClient/MainWindow.axaml: -------------------------------------------------------------------------------- 1 |  8 | Welcome to Avalonia! 9 | 10 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoClient/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using System.IO.Pipes; 4 | using System.Threading; 5 | using Avalonia; 6 | using Avalonia.Controls.ApplicationLifetimes; 7 | 8 | namespace CSharpEditorIPCDemoClient 9 | { 10 | class Program 11 | { 12 | // Used to store the arguments with which the program was called, so that the MainWindow can 13 | // access them easily. 14 | public static string[] CallingArguments; 15 | 16 | // Initialization code. Don't use any Avalonia, third-party APIs or any 17 | // SynchronizationContext-reliant code before AppMain is called: things aren't initialized 18 | // yet and stuff might break. 19 | public static void Main(string[] args) 20 | { 21 | // Do not run this program directly. Let it be started by the CSharpEditorIPCDemoServer. 22 | CallingArguments = args; 23 | 24 | BuildAvaloniaApp().StartWithClassicDesktopLifetime(args); 25 | } 26 | 27 | // Avalonia configuration, don't remove; also used by visual designer. 28 | public static AppBuilder BuildAvaloniaApp() 29 | => AppBuilder.Configure() 30 | .UsePlatformDetect() 31 | .LogToTrace(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/App.axaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/App.axaml.cs: -------------------------------------------------------------------------------- 1 | using Avalonia; 2 | using Avalonia.Controls.ApplicationLifetimes; 3 | using Avalonia.Markup.Xaml; 4 | 5 | namespace CSharpEditorIPCDemoServer 6 | { 7 | public class App : Application 8 | { 9 | public override void Initialize() 10 | { 11 | AvaloniaXamlLoader.Load(this); 12 | } 13 | 14 | public override void OnFrameworkInitializationCompleted() 15 | { 16 | if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) 17 | { 18 | desktop.MainWindow = new MainWindow(); 19 | } 20 | 21 | base.OnFrameworkInitializationCompleted(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/CSharpEditorIPCDemoServer.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | Exe 4 | netcoreapp3.1 5 | 6 | 7 | x64 8 | 9 | 10 | x64 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HelloWorld 4 | { 5 | class Hello 6 | { 7 | static void Main() 8 | { 9 | string localVariable = "Hello world!"; 10 | 11 | /* Breakpoint */ 12 | Console.WriteLine(localVariable); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/MainWindow.axaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /CSharpEditorIPCDemoServer/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Avalonia; 3 | using Avalonia.Controls.ApplicationLifetimes; 4 | 5 | namespace CSharpEditorIPCDemoServer 6 | { 7 | class Program 8 | { 9 | // Initialization code. Don't use any Avalonia, third-party APIs or any 10 | // SynchronizationContext-reliant code before AppMain is called: things aren't initialized 11 | // yet and stuff might break. 12 | public static void Main(string[] args) => BuildAvaloniaApp() 13 | .StartWithClassicDesktopLifetime(args); 14 | 15 | // Avalonia configuration, don't remove; also used by visual designer. 16 | public static AppBuilder BuildAvaloniaApp() 17 | => AppBuilder.Configure() 18 | .UsePlatformDetect() 19 | .LogToTrace(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Doxy.css: -------------------------------------------------------------------------------- 1 | #projectlogo img 2 | { 3 | height: 96px; 4 | margin: 10px; 5 | } -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/Icon.png -------------------------------------------------------------------------------- /ParseXMLDocumentation/ParseXMLDocumentation.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | 7 | 8 | 9 | x64 10 | 11 | 12 | 13 | x64 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/Screenshot.png -------------------------------------------------------------------------------- /docs/CSharpEditor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/CSharpEditor.pdf -------------------------------------------------------------------------------- /docs/Doxy.css: -------------------------------------------------------------------------------- 1 | #projectlogo img 2 | { 3 | height: 96px; 4 | margin: 10px; 5 | } -------------------------------------------------------------------------------- /docs/annotated_dup.js: -------------------------------------------------------------------------------- 1 | var annotated_dup = 2 | [ 3 | [ "CSharpEditor", "namespace_c_sharp_editor.html", "namespace_c_sharp_editor" ] 4 | ]; -------------------------------------------------------------------------------- /docs/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/bc_s.png -------------------------------------------------------------------------------- /docs/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/bdwn.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_breakpoint_info.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_breakpoint_info = 2 | [ 3 | [ "BreakpointSpan", "class_c_sharp_editor_1_1_breakpoint_info.html#addd8b35a9c7167378844f4528aaecbb7", null ], 4 | [ "LocalVariableDisplayParts", "class_c_sharp_editor_1_1_breakpoint_info.html#a0bba924831e637effc489a44708418da", null ], 5 | [ "LocalVariables", "class_c_sharp_editor_1_1_breakpoint_info.html#a829526e6857d4ab2514e5eed743cf647", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_cached_metadata_reference.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_cached_metadata_reference = 2 | [ 3 | [ "CachedMetadataReference", "class_c_sharp_editor_1_1_cached_metadata_reference.html#a25cf262b5a2de1eef7d20c3a6383e8ca", null ], 4 | [ "CreateFromFile", "class_c_sharp_editor_1_1_cached_metadata_reference.html#a09ba24e1ee4539ba6cc912b7b84a7dcb", null ], 5 | [ "operator MetadataReference", "class_c_sharp_editor_1_1_cached_metadata_reference.html#a9314c289ab2efaf8531f727bda9043e7", null ], 6 | [ "Reference", "class_c_sharp_editor_1_1_cached_metadata_reference.html#af7d7acdbd3e6b18671f1ec165e27c595", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_compilation_event_args.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_compilation_event_args = 2 | [ 3 | [ "Compilation", "class_c_sharp_editor_1_1_compilation_event_args.html#a55441207babe0e6072b31f0c2976e7ab", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 577215efbc26eab918d51837835d78ad -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/class_c_sharp_editor_1_1_compilation_event_args__inherit__graph.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_editor__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_editor__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ff27dd625878aaaf9888beee0e74c867 -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_editor__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/class_c_sharp_editor_1_1_editor__inherit__graph.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_client.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_interprocess_debugger_client = 2 | [ 3 | [ "InterprocessDebuggerClient", "class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8dd6e2325bda9310d39b1a61e18414d5", null ], 4 | [ "Dispose", "class_c_sharp_editor_1_1_interprocess_debugger_client.html#a3206044c61b361016159c95a9404c835", null ], 5 | [ "BreakpointHit", "class_c_sharp_editor_1_1_interprocess_debugger_client.html#ad892fd3e787d059a6e14cc134bf2add9", null ], 6 | [ "BreakpointResumed", "class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8f1c07f30f8bf6bcaf95b4be34b1b94e", null ], 7 | [ "ParentProcessExited", "class_c_sharp_editor_1_1_interprocess_debugger_client.html#a0bbd888a5540414dde5d998c9eea4e6c", null ] 8 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 46ed0d25ad9357680f6014832653f8ff -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/class_c_sharp_editor_1_1_interprocess_debugger_client__inherit__graph.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_server.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_interprocess_debugger_server = 2 | [ 3 | [ "InterprocessDebuggerServer", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#aec7f3fa664378e685d8531a308ecfe1c", null ], 4 | [ "InterprocessDebuggerServer", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#a9a36eff3f1594eaba48f75ddbab2e9bd", null ], 5 | [ "InterprocessDebuggerServer", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#aceda16cd1829ba41c6e94bfb574d75db", null ], 6 | [ "AsynchronousBreak", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#ab8bc1cda872980db9a2a328df3efc9f0", null ], 7 | [ "Dispose", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#a14a5f0a361e204ffc0c4ada5618da861", null ], 8 | [ "SynchronousBreak", "class_c_sharp_editor_1_1_interprocess_debugger_server.html#a87ffb08b0e69a7e599f12f1cb780b2b5", null ] 9 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | fb97950c791bc56967135f4f0f0fcc41 -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/class_c_sharp_editor_1_1_interprocess_debugger_server__inherit__graph.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_save_event_args.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_save_event_args = 2 | [ 3 | [ "Text", "class_c_sharp_editor_1_1_save_event_args.html#ab228dc8a7a5ad495910cbbe7f04c9a40", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_save_event_args__inherit__graph.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_save_event_args__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f5c3120d20a00418f4d8b300a8e02cad -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_save_event_args__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/class_c_sharp_editor_1_1_save_event_args__inherit__graph.png -------------------------------------------------------------------------------- /docs/class_c_sharp_editor_1_1_shortcut.js: -------------------------------------------------------------------------------- 1 | var class_c_sharp_editor_1_1_shortcut = 2 | [ 3 | [ "Shortcut", "class_c_sharp_editor_1_1_shortcut.html#a5492166a18b5cc35b57a76f495b58249", null ], 4 | [ "Name", "class_c_sharp_editor_1_1_shortcut.html#a8f0ac258153427dad2696ecb2a80bf80", null ], 5 | [ "Shortcuts", "class_c_sharp_editor_1_1_shortcut.html#aec7945139d5f3a3e7084b66f1ffb7170", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/closed.png -------------------------------------------------------------------------------- /docs/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/doc.png -------------------------------------------------------------------------------- /docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/doxygen.png -------------------------------------------------------------------------------- /docs/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "CSharpEditor", "dir_893732ece2dfac99897cc4d5917c9672.html", "dir_893732ece2dfac99897cc4d5917c9672" ] 4 | ]; -------------------------------------------------------------------------------- /docs/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/folderclosed.png -------------------------------------------------------------------------------- /docs/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/folderopen.png -------------------------------------------------------------------------------- /docs/graph_legend.md5: -------------------------------------------------------------------------------- 1 | f51bf6e9a10430aafef59831b08dcbfe -------------------------------------------------------------------------------- /docs/graph_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/graph_legend.png -------------------------------------------------------------------------------- /docs/hierarchy.js: -------------------------------------------------------------------------------- 1 | var hierarchy = 2 | [ 3 | [ "CSharpEditor.BreakpointInfo", "class_c_sharp_editor_1_1_breakpoint_info.html", null ], 4 | [ "CSharpEditor.CachedMetadataReference", "class_c_sharp_editor_1_1_cached_metadata_reference.html", null ], 5 | [ "EventArgs", null, [ 6 | [ "CSharpEditor.CompilationEventArgs", "class_c_sharp_editor_1_1_compilation_event_args.html", null ], 7 | [ "CSharpEditor.SaveEventArgs", "class_c_sharp_editor_1_1_save_event_args.html", null ] 8 | ] ], 9 | [ "IDisposable", null, [ 10 | [ "CSharpEditor.InterprocessDebuggerClient", "class_c_sharp_editor_1_1_interprocess_debugger_client.html", null ], 11 | [ "CSharpEditor.InterprocessDebuggerServer", "class_c_sharp_editor_1_1_interprocess_debugger_server.html", null ] 12 | ] ], 13 | [ "CSharpEditor.Shortcut", "class_c_sharp_editor_1_1_shortcut.html", null ], 14 | [ "UserControl", null, [ 15 | [ "CSharpEditor.Editor", "class_c_sharp_editor_1_1_editor.html", null ], 16 | [ "CSharpEditor.InterprocessDebuggerClient", "class_c_sharp_editor_1_1_interprocess_debugger_client.html", null ] 17 | ] ] 18 | ]; -------------------------------------------------------------------------------- /docs/inherit_graph_0.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 11b0d042ae389b09d4274cfdfcb6e08f -------------------------------------------------------------------------------- /docs/inherit_graph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/inherit_graph_0.png -------------------------------------------------------------------------------- /docs/inherit_graph_1.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 7ab29b6833888dd1fd2d6f9eb21881e0 -------------------------------------------------------------------------------- /docs/inherit_graph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/inherit_graph_1.png -------------------------------------------------------------------------------- /docs/inherit_graph_2.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | de6bb9011d8305266ffd82c4e6f8aab1 -------------------------------------------------------------------------------- /docs/inherit_graph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/inherit_graph_2.png -------------------------------------------------------------------------------- /docs/inherit_graph_3.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | e1fe2cab4ac57ceb4e933ab4bd1ed68a -------------------------------------------------------------------------------- /docs/inherit_graph_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/inherit_graph_3.png -------------------------------------------------------------------------------- /docs/inherit_graph_4.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | 0b4e246b357d6627d6f4b7bbcc79b5d7 -------------------------------------------------------------------------------- /docs/inherit_graph_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/inherit_graph_4.png -------------------------------------------------------------------------------- /docs/namespace_c_sharp_editor.js: -------------------------------------------------------------------------------- 1 | var namespace_c_sharp_editor = 2 | [ 3 | [ "BreakpointInfo", "class_c_sharp_editor_1_1_breakpoint_info.html", "class_c_sharp_editor_1_1_breakpoint_info" ], 4 | [ "CachedMetadataReference", "class_c_sharp_editor_1_1_cached_metadata_reference.html", "class_c_sharp_editor_1_1_cached_metadata_reference" ], 5 | [ "CompilationEventArgs", "class_c_sharp_editor_1_1_compilation_event_args.html", "class_c_sharp_editor_1_1_compilation_event_args" ], 6 | [ "Editor", "class_c_sharp_editor_1_1_editor.html", "class_c_sharp_editor_1_1_editor" ], 7 | [ "InterprocessDebuggerClient", "class_c_sharp_editor_1_1_interprocess_debugger_client.html", "class_c_sharp_editor_1_1_interprocess_debugger_client" ], 8 | [ "InterprocessDebuggerServer", "class_c_sharp_editor_1_1_interprocess_debugger_server.html", "class_c_sharp_editor_1_1_interprocess_debugger_server" ], 9 | [ "SaveEventArgs", "class_c_sharp_editor_1_1_save_event_args.html", "class_c_sharp_editor_1_1_save_event_args" ], 10 | [ "Shortcut", "class_c_sharp_editor_1_1_shortcut.html", "class_c_sharp_editor_1_1_shortcut" ] 11 | ]; -------------------------------------------------------------------------------- /docs/namespaces_dup.js: -------------------------------------------------------------------------------- 1 | var namespaces_dup = 2 | [ 3 | [ "CSharpEditor", "namespace_c_sharp_editor.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/nav_f.png -------------------------------------------------------------------------------- /docs/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/nav_g.png -------------------------------------------------------------------------------- /docs/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/nav_h.png -------------------------------------------------------------------------------- /docs/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/open.png -------------------------------------------------------------------------------- /docs/search/all_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['accesstype_0',['AccessType',['../class_c_sharp_editor_1_1_editor.html#a0518cc36b888ead3b11539b6d0ca2990',1,'CSharpEditor::Editor']]], 4 | ['accesstypes_1',['AccessTypes',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38',1,'CSharpEditor::Editor']]], 5 | ['asynchronousbreak_2',['AsynchronousBreak',['../class_c_sharp_editor_1_1_editor.html#a7da1f0ea6bbfaec0c7dbb69d8ae52152',1,'CSharpEditor.Editor.AsynchronousBreak()'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#ab8bc1cda872980db9a2a328df3efc9f0',1,'CSharpEditor.InterprocessDebuggerServer.AsynchronousBreak()']]], 6 | ['autoformat_3',['AutoFormat',['../class_c_sharp_editor_1_1_editor.html#aea5664bde9b38ba8a566f5737f3d30f7',1,'CSharpEditor::Editor']]], 7 | ['autoopenparameters_4',['AutoOpenParameters',['../class_c_sharp_editor_1_1_editor.html#acf073c8d73ad3feac690ef3b3c695805',1,'CSharpEditor::Editor']]], 8 | ['autoopensuggestions_5',['AutoOpenSuggestions',['../class_c_sharp_editor_1_1_editor.html#ae0f93acf49f9ba662f8b51de658b5ab8',1,'CSharpEditor::Editor']]], 9 | ['autosave_6',['Autosave',['../class_c_sharp_editor_1_1_editor.html#a3ce221518bac6e9f787448cd11003bd2',1,'CSharpEditor::Editor']]], 10 | ['autosavefile_7',['AutoSaveFile',['../class_c_sharp_editor_1_1_editor.html#ac0dc942b1f8c979b2bb39ca3f8b9336d',1,'CSharpEditor::Editor']]], 11 | ['autosaveinterval_8',['AutosaveInterval',['../class_c_sharp_editor_1_1_editor.html#a2782bba67061c1c5defbb28dfa1b1bdb',1,'CSharpEditor::Editor']]] 12 | ]; 13 | -------------------------------------------------------------------------------- /docs/search/all_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['breakpointhit_9',['BreakpointHit',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#ad892fd3e787d059a6e14cc134bf2add9',1,'CSharpEditor::InterprocessDebuggerClient']]], 4 | ['breakpointinfo_10',['BreakpointInfo',['../class_c_sharp_editor_1_1_breakpoint_info.html',1,'CSharpEditor']]], 5 | ['breakpointresumed_11',['BreakpointResumed',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8f1c07f30f8bf6bcaf95b4be34b1b94e',1,'CSharpEditor::InterprocessDebuggerClient']]], 6 | ['breakpointspan_12',['BreakpointSpan',['../class_c_sharp_editor_1_1_breakpoint_info.html#addd8b35a9c7167378844f4528aaecbb7',1,'CSharpEditor::BreakpointInfo']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/search/all_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dispose_25',['Dispose',['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#a14a5f0a361e204ffc0c4ada5618da861',1,'CSharpEditor.InterprocessDebuggerServer.Dispose()'],['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a3206044c61b361016159c95a9404c835',1,'CSharpEditor.InterprocessDebuggerClient.Dispose()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['editor_26',['Editor',['../class_c_sharp_editor_1_1_editor.html',1,'CSharpEditor.Editor'],['../class_c_sharp_editor_1_1_editor.html#a01ab8e86f771c45dc76da626fff4064f',1,'CSharpEditor.Editor.Editor()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fullsource_27',['FullSource',['../class_c_sharp_editor_1_1_editor.html#ab1cf9db75d38020b5745633b43862e3a',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['guid_28',['Guid',['../class_c_sharp_editor_1_1_editor.html#ad83c6e1495afc3744a6016c0c186f78c',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interprocessdebuggerclient_29',['InterprocessDebuggerClient',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html',1,'CSharpEditor.InterprocessDebuggerClient'],['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8dd6e2325bda9310d39b1a61e18414d5',1,'CSharpEditor.InterprocessDebuggerClient.InterprocessDebuggerClient()']]], 4 | ['interprocessdebuggerserver_30',['InterprocessDebuggerServer',['../class_c_sharp_editor_1_1_interprocess_debugger_server.html',1,'CSharpEditor.InterprocessDebuggerServer'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#aec7f3fa664378e685d8531a308ecfe1c',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath)'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#a9a36eff3f1594eaba48f75ddbab2e9bd',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath, IEnumerable< string > initialArguments)'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#aceda16cd1829ba41c6e94bfb574d75db',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath, IEnumerable< string > initialArguments, Func< int, int > getClientPid)']]], 5 | ['isreferencesbuttonenabled_31',['IsReferencesButtonEnabled',['../class_c_sharp_editor_1_1_editor.html#a40d599b8e787c2469e34f9c9b335b186',1,'CSharpEditor::Editor']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/search/all_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keepsavehistory_32',['KeepSaveHistory',['../class_c_sharp_editor_1_1_editor.html#a09018e08958c87ffbfb6a9452e761c3c',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['localvariables_33',['LocalVariables',['../class_c_sharp_editor_1_1_breakpoint_info.html#a829526e6857d4ab2514e5eed743cf647',1,'CSharpEditor::BreakpointInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name_34',['Name',['../class_c_sharp_editor_1_1_shortcut.html#a8f0ac258153427dad2696ecb2a80bf80',1,'CSharpEditor::Shortcut']]], 4 | ['none_35',['None',['../namespace_c_sharp_editor.html#a865b83545e81e3b10a1940af1a8071a1a6adf97f83acf6453d4a6a4b1070f3754',1,'CSharpEditor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/all_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['operator_20metadatareference_36',['operator MetadataReference',['../class_c_sharp_editor_1_1_cached_metadata_reference.html#a9314c289ab2efaf8531f727bda9043e7',1,'CSharpEditor::CachedMetadataReference']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/all_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['parentprocessexited_37',['ParentProcessExited',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a0bbd888a5540414dde5d998c9eea4e6c',1,'CSharpEditor::InterprocessDebuggerClient']]], 4 | ['postsource_38',['PostSource',['../class_c_sharp_editor_1_1_editor.html#ad51afe4effabbdc759f5aa3ba33e57c3',1,'CSharpEditor::Editor']]], 5 | ['presource_39',['PreSource',['../class_c_sharp_editor_1_1_editor.html#aa7c7077ceefc90e0cb0936c813aa8a4e',1,'CSharpEditor::Editor']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/search/all_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['readonly_40',['ReadOnly',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a131fb182a881796e7606ed6da27f1197',1,'CSharpEditor::Editor']]], 4 | ['readonlywithhistoryanderrors_41',['ReadOnlyWithHistoryAndErrors',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a89f7e1d2588606913596b175b64aff18',1,'CSharpEditor::Editor']]], 5 | ['readwrite_42',['ReadWrite',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a70a2a84088d405a2e3f1e3accaa16723',1,'CSharpEditor::Editor']]], 6 | ['references_43',['References',['../class_c_sharp_editor_1_1_editor.html#a24774cd2c8f07561aefc4f59cbb6c333',1,'CSharpEditor::Editor']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/search/all_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/all_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['text_60',['Text',['../class_c_sharp_editor_1_1_editor.html#a88a3a8f146b6e4e5d1d5b582affb6343',1,'CSharpEditor.Editor.Text()'],['../class_c_sharp_editor_1_1_save_event_args.html#ab228dc8a7a5ad495910cbbe7f04c9a40',1,'CSharpEditor.SaveEventArgs.Text()']]], 4 | ['textchanged_61',['TextChanged',['../class_c_sharp_editor_1_1_editor.html#ae4da5e33b511ca1cdccd0c4399fd9fcf',1,'CSharpEditor::Editor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/classes_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['breakpointinfo_62',['BreakpointInfo',['../class_c_sharp_editor_1_1_breakpoint_info.html',1,'CSharpEditor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/classes_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cachedmetadatareference_63',['CachedMetadataReference',['../class_c_sharp_editor_1_1_cached_metadata_reference.html',1,'CSharpEditor']]], 4 | ['compilationeventargs_64',['CompilationEventArgs',['../class_c_sharp_editor_1_1_compilation_event_args.html',1,'CSharpEditor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/classes_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['editor_65',['Editor',['../class_c_sharp_editor_1_1_editor.html',1,'CSharpEditor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/classes_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interprocessdebuggerclient_66',['InterprocessDebuggerClient',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html',1,'CSharpEditor']]], 4 | ['interprocessdebuggerserver_67',['InterprocessDebuggerServer',['../class_c_sharp_editor_1_1_interprocess_debugger_server.html',1,'CSharpEditor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/classes_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['saveeventargs_68',['SaveEventArgs',['../class_c_sharp_editor_1_1_save_event_args.html',1,'CSharpEditor']]], 4 | ['shortcut_69',['Shortcut',['../class_c_sharp_editor_1_1_shortcut.html',1,'CSharpEditor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/search/close.png -------------------------------------------------------------------------------- /docs/search/enums_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/enums_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['accesstypes_91',['AccessTypes',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/enums_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/enums_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['syntaxhighlightingmodes_92',['SyntaxHighlightingModes',['../namespace_c_sharp_editor.html#a865b83545e81e3b10a1940af1a8071a1',1,'CSharpEditor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/enumvalues_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/enumvalues_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['none_93',['None',['../namespace_c_sharp_editor.html#a865b83545e81e3b10a1940af1a8071a1a6adf97f83acf6453d4a6a4b1070f3754',1,'CSharpEditor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/enumvalues_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/enumvalues_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['readonly_94',['ReadOnly',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a131fb182a881796e7606ed6da27f1197',1,'CSharpEditor::Editor']]], 4 | ['readonlywithhistoryanderrors_95',['ReadOnlyWithHistoryAndErrors',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a89f7e1d2588606913596b175b64aff18',1,'CSharpEditor::Editor']]], 5 | ['readwrite_96',['ReadWrite',['../class_c_sharp_editor_1_1_editor.html#aab07641ec51f146705d8e9c62e3aee38a70a2a84088d405a2e3f1e3accaa16723',1,'CSharpEditor::Editor']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/search/enumvalues_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/enumvalues_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['semantic_97',['Semantic',['../namespace_c_sharp_editor.html#a865b83545e81e3b10a1940af1a8071a1ad41142bc02387f74ecbd1b7ac93ad012',1,'CSharpEditor']]], 4 | ['syntactic_98',['Syntactic',['../namespace_c_sharp_editor.html#a865b83545e81e3b10a1940af1a8071a1a30693bc33782bc5a7a91233f452c1fac',1,'CSharpEditor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/events_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/events_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['autosave_122',['Autosave',['../class_c_sharp_editor_1_1_editor.html#a3ce221518bac6e9f787448cd11003bd2',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/events_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/events_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['breakpointhit_123',['BreakpointHit',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#ad892fd3e787d059a6e14cc134bf2add9',1,'CSharpEditor::InterprocessDebuggerClient']]], 4 | ['breakpointresumed_124',['BreakpointResumed',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8f1c07f30f8bf6bcaf95b4be34b1b94e',1,'CSharpEditor::InterprocessDebuggerClient']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/events_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/events_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['compilationcompleted_125',['CompilationCompleted',['../class_c_sharp_editor_1_1_editor.html#a519e2cce244cd0eb96e458a2de32322a',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/events_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/events_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['parentprocessexited_126',['ParentProcessExited',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a0bbd888a5540414dde5d998c9eea4e6c',1,'CSharpEditor::InterprocessDebuggerClient']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/events_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/events_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['saverequested_127',['SaveRequested',['../class_c_sharp_editor_1_1_editor.html#aac01dc47372a0d05792ee186d6cd1fd4',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/functions_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['asynchronousbreak_71',['AsynchronousBreak',['../class_c_sharp_editor_1_1_editor.html#a7da1f0ea6bbfaec0c7dbb69d8ae52152',1,'CSharpEditor.Editor.AsynchronousBreak()'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#ab8bc1cda872980db9a2a328df3efc9f0',1,'CSharpEditor.InterprocessDebuggerServer.AsynchronousBreak()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/functions_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cachedmetadatareference_72',['CachedMetadataReference',['../class_c_sharp_editor_1_1_cached_metadata_reference.html#a25cf262b5a2de1eef7d20c3a6383e8ca',1,'CSharpEditor::CachedMetadataReference']]], 4 | ['compile_73',['Compile',['../class_c_sharp_editor_1_1_editor.html#ac5ad7c28dca7066fd729b01cca355dca',1,'CSharpEditor::Editor']]], 5 | ['create_74',['Create',['../class_c_sharp_editor_1_1_editor.html#ae4025b21e148ce56ad0f67cc05ecd8cd',1,'CSharpEditor::Editor']]], 6 | ['createcompilation_75',['CreateCompilation',['../class_c_sharp_editor_1_1_editor.html#a6be3ec495bca5841dda8e5c1db5ffa5b',1,'CSharpEditor::Editor']]], 7 | ['createfromfile_76',['CreateFromFile',['../class_c_sharp_editor_1_1_cached_metadata_reference.html#a09ba24e1ee4539ba6cc912b7b84a7dcb',1,'CSharpEditor::CachedMetadataReference']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/search/functions_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dispose_77',['Dispose',['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#a14a5f0a361e204ffc0c4ada5618da861',1,'CSharpEditor.InterprocessDebuggerServer.Dispose()'],['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a3206044c61b361016159c95a9404c835',1,'CSharpEditor.InterprocessDebuggerClient.Dispose()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/functions_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['editor_78',['Editor',['../class_c_sharp_editor_1_1_editor.html#a01ab8e86f771c45dc76da626fff4064f',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/functions_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interprocessdebuggerclient_79',['InterprocessDebuggerClient',['../class_c_sharp_editor_1_1_interprocess_debugger_client.html#a8dd6e2325bda9310d39b1a61e18414d5',1,'CSharpEditor::InterprocessDebuggerClient']]], 4 | ['interprocessdebuggerserver_80',['InterprocessDebuggerServer',['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#aec7f3fa664378e685d8531a308ecfe1c',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath)'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#a9a36eff3f1594eaba48f75ddbab2e9bd',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath, IEnumerable< string > initialArguments)'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#aceda16cd1829ba41c6e94bfb574d75db',1,'CSharpEditor.InterprocessDebuggerServer.InterprocessDebuggerServer(string clientExePath, IEnumerable< string > initialArguments, Func< int, int > getClientPid)']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/functions_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['operator_20metadatareference_81',['operator MetadataReference',['../class_c_sharp_editor_1_1_cached_metadata_reference.html#a9314c289ab2efaf8531f727bda9043e7',1,'CSharpEditor::CachedMetadataReference']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/functions_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/functions_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['save_82',['Save',['../class_c_sharp_editor_1_1_editor.html#a396869247d03805596eb4b6c18ba84f1',1,'CSharpEditor::Editor']]], 4 | ['settext_83',['SetText',['../class_c_sharp_editor_1_1_editor.html#a50680ef0a5d209b351cc6a5abb0d7f14',1,'CSharpEditor.Editor.SetText(string text)'],['../class_c_sharp_editor_1_1_editor.html#a8d291c99411f928bdaaa0c2d7822de31',1,'CSharpEditor.Editor.SetText(SourceText text)']]], 5 | ['shortcut_84',['Shortcut',['../class_c_sharp_editor_1_1_shortcut.html#a5492166a18b5cc35b57a76f495b58249',1,'CSharpEditor::Shortcut']]], 6 | ['synchronousbreak_85',['SynchronousBreak',['../class_c_sharp_editor_1_1_editor.html#a98d1f4ee8ed7a9f5a0cda6558f28a1f2',1,'CSharpEditor.Editor.SynchronousBreak()'],['../class_c_sharp_editor_1_1_interprocess_debugger_server.html#a87ffb08b0e69a7e599f12f1cb780b2b5',1,'CSharpEditor.InterprocessDebuggerServer.SynchronousBreak()']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/search/mag_sel.png -------------------------------------------------------------------------------- /docs/search/namespaces_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/namespaces_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['csharpeditor_70',['CSharpEditor',['../namespace_c_sharp_editor.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/search/pages_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['csharpeditor_3a_20a_20c_23_20source_20code_20editor_20with_20syntax_20highlighting_2c_20intelligent_20code_20completion_20and_20real_2dtime_20compilation_20error_20checking_128',['CSharpEditor: A C# source code editor with syntax highlighting, intelligent code completion and real-time compilation error checking',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['accesstype_99',['AccessType',['../class_c_sharp_editor_1_1_editor.html#a0518cc36b888ead3b11539b6d0ca2990',1,'CSharpEditor::Editor']]], 4 | ['autoformat_100',['AutoFormat',['../class_c_sharp_editor_1_1_editor.html#aea5664bde9b38ba8a566f5737f3d30f7',1,'CSharpEditor::Editor']]], 5 | ['autoopenparameters_101',['AutoOpenParameters',['../class_c_sharp_editor_1_1_editor.html#acf073c8d73ad3feac690ef3b3c695805',1,'CSharpEditor::Editor']]], 6 | ['autoopensuggestions_102',['AutoOpenSuggestions',['../class_c_sharp_editor_1_1_editor.html#ae0f93acf49f9ba662f8b51de658b5ab8',1,'CSharpEditor::Editor']]], 7 | ['autosavefile_103',['AutoSaveFile',['../class_c_sharp_editor_1_1_editor.html#ac0dc942b1f8c979b2bb39ca3f8b9336d',1,'CSharpEditor::Editor']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/search/properties_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['breakpointspan_104',['BreakpointSpan',['../class_c_sharp_editor_1_1_breakpoint_info.html#addd8b35a9c7167378844f4528aaecbb7',1,'CSharpEditor::BreakpointInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['compilation_105',['Compilation',['../class_c_sharp_editor_1_1_compilation_event_args.html#a55441207babe0e6072b31f0c2976e7ab',1,'CSharpEditor::CompilationEventArgs']]], 4 | ['compilationoptions_106',['CompilationOptions',['../class_c_sharp_editor_1_1_editor.html#af5ba0eb259c284a2c9a717e5677bd019',1,'CSharpEditor::Editor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/properties_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fullsource_107',['FullSource',['../class_c_sharp_editor_1_1_editor.html#ab1cf9db75d38020b5745633b43862e3a',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['guid_108',['Guid',['../class_c_sharp_editor_1_1_editor.html#ad83c6e1495afc3744a6016c0c186f78c',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['isreferencesbuttonenabled_109',['IsReferencesButtonEnabled',['../class_c_sharp_editor_1_1_editor.html#a40d599b8e787c2469e34f9c9b335b186',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keepsavehistory_110',['KeepSaveHistory',['../class_c_sharp_editor_1_1_editor.html#a09018e08958c87ffbfb6a9452e761c3c',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['localvariables_111',['LocalVariables',['../class_c_sharp_editor_1_1_breakpoint_info.html#a829526e6857d4ab2514e5eed743cf647',1,'CSharpEditor::BreakpointInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name_112',['Name',['../class_c_sharp_editor_1_1_shortcut.html#a8f0ac258153427dad2696ecb2a80bf80',1,'CSharpEditor::Shortcut']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['postsource_113',['PostSource',['../class_c_sharp_editor_1_1_editor.html#ad51afe4effabbdc759f5aa3ba33e57c3',1,'CSharpEditor::Editor']]], 4 | ['presource_114',['PreSource',['../class_c_sharp_editor_1_1_editor.html#aa7c7077ceefc90e0cb0936c813aa8a4e',1,'CSharpEditor::Editor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/properties_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['references_115',['References',['../class_c_sharp_editor_1_1_editor.html#a24774cd2c8f07561aefc4f59cbb6c333',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/properties_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['savedirectory_116',['SaveDirectory',['../class_c_sharp_editor_1_1_editor.html#afab27e9860f3890f0bb7011961ec7b23',1,'CSharpEditor::Editor']]], 4 | ['selection_117',['Selection',['../class_c_sharp_editor_1_1_editor.html#a420414848df7268bf25e717b3297d7ee',1,'CSharpEditor::Editor']]], 5 | ['shortcuts_118',['Shortcuts',['../class_c_sharp_editor_1_1_shortcut.html#aec7945139d5f3a3e7084b66f1ffb7170',1,'CSharpEditor::Shortcut']]], 6 | ['sourcetext_119',['SourceText',['../class_c_sharp_editor_1_1_editor.html#a51ff006053b35f473d4af6572113ab23',1,'CSharpEditor::Editor']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/search/properties_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/properties_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['text_120',['Text',['../class_c_sharp_editor_1_1_editor.html#a88a3a8f146b6e4e5d1d5b582affb6343',1,'CSharpEditor.Editor.Text()'],['../class_c_sharp_editor_1_1_save_event_args.html#ab228dc8a7a5ad495910cbbe7f04c9a40',1,'CSharpEditor.SaveEventArgs.Text()']]], 4 | ['textchanged_121',['TextChanged',['../class_c_sharp_editor_1_1_editor.html#ae4da5e33b511ca1cdccd0c4399fd9fcf',1,'CSharpEditor::Editor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/search/search_l.png -------------------------------------------------------------------------------- /docs/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/search/search_m.png -------------------------------------------------------------------------------- /docs/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/search/search_r.png -------------------------------------------------------------------------------- /docs/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "abcdefgiklnoprst", 4 | 1: "bceis", 5 | 2: "c", 6 | 3: "acdeios", 7 | 4: "acs", 8 | 5: "as", 9 | 6: "nrs", 10 | 7: "abcfgiklnprst", 11 | 8: "abcps", 12 | 9: "c" 13 | }; 14 | 15 | var indexSectionNames = 16 | { 17 | 0: "all", 18 | 1: "classes", 19 | 2: "namespaces", 20 | 3: "functions", 21 | 4: "variables", 22 | 5: "enums", 23 | 6: "enumvalues", 24 | 7: "properties", 25 | 8: "events", 26 | 9: "pages" 27 | }; 28 | 29 | var indexSectionLabels = 30 | { 31 | 0: "All", 32 | 1: "Classes", 33 | 2: "Namespaces", 34 | 3: "Functions", 35 | 4: "Variables", 36 | 5: "Enumerations", 37 | 6: "Enumerator", 38 | 7: "Properties", 39 | 8: "Events", 40 | 9: "Pages" 41 | }; 42 | 43 | -------------------------------------------------------------------------------- /docs/search/variables_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['autosaveinterval_86',['AutosaveInterval',['../class_c_sharp_editor_1_1_editor.html#a2782bba67061c1c5defbb28dfa1b1bdb',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/variables_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['compilationtimeout_87',['CompilationTimeout',['../class_c_sharp_editor_1_1_editor.html#affaa530efe1701ac8fd5683286622d2a',1,'CSharpEditor::Editor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/search/variables_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 18 |
Searching...
19 |
No Matches
20 | 34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /docs/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['showlinechanges_88',['ShowLineChanges',['../class_c_sharp_editor_1_1_editor.html#a3e6c17e82e203e64941724966c61aaac',1,'CSharpEditor::Editor']]], 4 | ['showscrollbaroverview_89',['ShowScrollbarOverview',['../class_c_sharp_editor_1_1_editor.html#a07b8ae67f66d946ed77b6dc1edadaeb4',1,'CSharpEditor::Editor']]], 5 | ['syntaxhighlightingmode_90',['SyntaxHighlightingMode',['../class_c_sharp_editor_1_1_editor.html#a45a04c170d85fd014b4026b7df7670ce',1,'CSharpEditor::Editor']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/splitbar.png -------------------------------------------------------------------------------- /docs/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/sync_off.png -------------------------------------------------------------------------------- /docs/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/sync_on.png -------------------------------------------------------------------------------- /docs/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/tab_a.png -------------------------------------------------------------------------------- /docs/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/tab_b.png -------------------------------------------------------------------------------- /docs/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/tab_h.png -------------------------------------------------------------------------------- /docs/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arklumpus/CSharpEditor/e95adefb785be3a1ebb5716b5f7f665722ba3db1/docs/tab_s.png --------------------------------------------------------------------------------