From 852aa95236bc33596e7c9bae94dbad2dedebff93 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Thu, 22 Mar 2018 11:53:07 -0400 Subject: [PATCH] Update docs --- Makefile | 2 +- README.md | 1 + XmlYamlMapping.json | 4 + .../Mono.Terminal/Mono.Terminal.MainLoop.yml | 92 ++++- docfx/api/Terminal.Gui.yml | 28 ++ .../Terminal.Gui.Application.RunState.yml | 2 +- .../Terminal.Gui/Terminal.Gui.Application.yml | 2 +- .../api/Terminal.Gui/Terminal.Gui.Button.yml | 180 ++++++++- .../Terminal.Gui.ConsoleDriver.yml | 136 +++++-- .../api/Terminal.Gui/Terminal.Gui.Dialog.yml | 63 +++- docfx/api/Terminal.Gui/Terminal.Gui.Key.yml | 30 ++ .../Terminal.Gui/Terminal.Gui.RadioGroup.yml | 51 ++- .../Terminal.Gui/Terminal.Gui.Toplevel.yml | 9 +- docfx/api/Terminal.Gui/Terminal.Gui.View.yml | 1 + docfx/api/toc.yml | 8 + .../Mono.Terminal/Mono.Terminal.MainLoop.html | 56 +++ docs/api/Terminal.Gui.html | 9 + .../Terminal.Gui.Application.RunState.html | 2 +- .../Terminal.Gui.Application.html | 2 +- .../api/Terminal.Gui/Terminal.Gui.Button.html | 174 +++++++++ .../Terminal.Gui.ConsoleDriver.html | 92 +++-- .../api/Terminal.Gui/Terminal.Gui.Dialog.html | 48 +++ docs/api/Terminal.Gui/Terminal.Gui.Key.html | 10 +- .../Terminal.Gui/Terminal.Gui.RadioGroup.html | 47 ++- .../Terminal.Gui/Terminal.Gui.Toplevel.html | 9 +- docs/api/Terminal.Gui/Terminal.Gui.View.html | 1 + docs/api/toc.html | 12 + docs/manifest.json | 2 +- docs/xrefmap.yml | 350 ++++++++++++++++++ .../en/Mono.Terminal/MainLoop+Condition.xml | 7 + ecmadocs/en/Mono.Terminal/MainLoop.xml | 46 +++ .../en/Terminal.Gui/Application+RunState.xml | 7 +- ecmadocs/en/Terminal.Gui/Application.xml | 26 +- ecmadocs/en/Terminal.Gui/Attribute.xml | 4 + ecmadocs/en/Terminal.Gui/Button.xml | 112 ++++++ ecmadocs/en/Terminal.Gui/CheckBox.xml | 10 + ecmadocs/en/Terminal.Gui/Clipboard.xml | 3 + ecmadocs/en/Terminal.Gui/Color.xml | 17 + ecmadocs/en/Terminal.Gui/ColorScheme.xml | 6 + ecmadocs/en/Terminal.Gui/Colors.xml | 5 + ecmadocs/en/Terminal.Gui/ConsoleDriver.xml | 77 +++- ecmadocs/en/Terminal.Gui/Dialog.xml | 34 ++ ecmadocs/en/Terminal.Gui/FrameView.xml | 6 + ecmadocs/en/Terminal.Gui/IListDataSource.xml | 5 + ecmadocs/en/Terminal.Gui/Key.xml | 80 +++- ecmadocs/en/Terminal.Gui/KeyEvent.xml | 6 + ecmadocs/en/Terminal.Gui/Label.xml | 8 + ecmadocs/en/Terminal.Gui/ListView.xml | 13 + ecmadocs/en/Terminal.Gui/MenuBar.xml | 8 + ecmadocs/en/Terminal.Gui/MenuBarItem.xml | 4 + ecmadocs/en/Terminal.Gui/MenuItem.xml | 7 + ecmadocs/en/Terminal.Gui/MessageBox.xml | 4 + ecmadocs/en/Terminal.Gui/MouseEvent.xml | 5 + ecmadocs/en/Terminal.Gui/MouseFlags.xml | 26 ++ ecmadocs/en/Terminal.Gui/Point.xml | 19 + ecmadocs/en/Terminal.Gui/ProgressBar.xml | 5 + ecmadocs/en/Terminal.Gui/RadioGroup.xml | 30 ++ ecmadocs/en/Terminal.Gui/Rect.xml | 33 ++ ecmadocs/en/Terminal.Gui/Responder.xml | 8 + ecmadocs/en/Terminal.Gui/ScrollBarView.xml | 7 + ecmadocs/en/Terminal.Gui/ScrollView.xml | 15 + ecmadocs/en/Terminal.Gui/Size.xml | 17 + ecmadocs/en/Terminal.Gui/SpecialChar.xml | 13 + ecmadocs/en/Terminal.Gui/TextAlignment.xml | 5 + ecmadocs/en/Terminal.Gui/TextField.xml | 11 + ecmadocs/en/Terminal.Gui/Toplevel.xml | 15 +- ecmadocs/en/Terminal.Gui/View.xml | 45 +++ ecmadocs/en/Terminal.Gui/Window.xml | 9 + ecmadocs/en/index.xml | 27 +- 69 files changed, 2074 insertions(+), 134 deletions(-) diff --git a/Makefile b/Makefile index 9de4beec3..d12137f4b 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: doc-update yaml # Used to fetch XML doc updates from the C# compiler into the ECMA docs doc-update: msbuild /p:Configuration=Release - mdoc update -i Terminal.Gui/bin/Release/Terminal.Gui.xml -o ecmadocs/en Terminal.Gui/bin/Release/Terminal.Gui.dll + mdoc update -i Terminal.Gui/bin/Release/Terminal.Gui.xml -o ecmadocs/en bin/Release/Terminal.Gui.dll yaml: -rm ecmadocs/en/ns-.xml diff --git a/README.md b/README.md index c299b1884..3b8f5f684 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ The toolkit contains various controls for building text user interfaces: * [Buttons](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.Button.html) * [Labels](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.Label.html) * [Text entry](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.TextField.html) +* [Text view](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.TextView.html) * [Radio buttons](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html) * [Checkboxes](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.CheckBox.html) * [Dialog boxes](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.Dialog.html) diff --git a/XmlYamlMapping.json b/XmlYamlMapping.json index 1c8ce34bf..e8d900fa9 100644 --- a/XmlYamlMapping.json +++ b/XmlYamlMapping.json @@ -12,6 +12,7 @@ "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/TextAlignment.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.TextAlignment.yml", "/cvs/gui.cs/ecmadocs/en/ns-Mono.Terminal.xml": "/cvs/gui.cs/docfx/api/Mono.Terminal.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/Button.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml", + "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/TextView.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.TextView.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/Color.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.Color.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/CheckBox.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.CheckBox.yml", @@ -28,11 +29,14 @@ "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/FrameView.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.FrameView.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/ProgressBar.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.ProgressBar.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/Toplevel.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml", + "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/FileDialog.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.FileDialog.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/MouseFlags.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.MouseFlags.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/MenuBarItem.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.MenuBarItem.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/KeyEvent.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.KeyEvent.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/MenuBar.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.MenuBar.yml", + "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/OpenDialog.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.OpenDialog.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/View.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.View.yml", + "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/SaveDialog.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.SaveDialog.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/MouseEvent.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.MouseEvent.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/Key.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.Key.yml", "/cvs/gui.cs/ecmadocs/en/Terminal.Gui/ScrollBarView.xml": "/cvs/gui.cs/docfx/api/Terminal.Gui/Terminal.Gui.ScrollBarView.yml", diff --git a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml index a0ee0383d..4c88628c8 100644 --- a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml +++ b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml @@ -4,6 +4,7 @@ items: id: MainLoop children: - Mono.Terminal.MainLoop.#ctor + - Mono.Terminal.MainLoop.#ctor(System.Boolean) - Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean}) - Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean}) - Mono.Terminal.MainLoop.AddWatch(System.Int32,Mono.Terminal.MainLoop.Condition,System.Func{Mono.Terminal.MainLoop,System.Boolean}) @@ -15,6 +16,7 @@ items: - Mono.Terminal.MainLoop.RemoveWatch(System.Object) - Mono.Terminal.MainLoop.Run - Mono.Terminal.MainLoop.Stop + - Mono.Terminal.MainLoop.WindowsKeyPressed langs: - csharp name: MainLoop @@ -54,6 +56,26 @@ items: parameters: [] overload: Mono.Terminal.MainLoop.#ctor* exceptions: [] +- uid: Mono.Terminal.MainLoop.#ctor(System.Boolean) + id: '#ctor(System.Boolean)' + parent: Mono.Terminal.MainLoop + langs: + - csharp + name: MainLoop(Boolean) + nameWithType: MainLoop.MainLoop(Boolean) + fullName: MainLoop.MainLoop(Boolean) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Mono.Terminal + syntax: + content: public MainLoop (bool useUnix); + parameters: + - id: useUnix + type: System.Boolean + description: To be added. + overload: Mono.Terminal.MainLoop.#ctor* + exceptions: [] - uid: Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean}) id: AddIdle(System.Func{System.Boolean}) parent: Mono.Terminal.MainLoop @@ -306,6 +328,25 @@ items: parameters: [] overload: Mono.Terminal.MainLoop.Stop* exceptions: [] +- uid: Mono.Terminal.MainLoop.WindowsKeyPressed + id: WindowsKeyPressed + parent: Mono.Terminal.MainLoop + langs: + - csharp + name: WindowsKeyPressed + nameWithType: MainLoop.WindowsKeyPressed + fullName: MainLoop.WindowsKeyPressed + type: Field + assemblies: + - Terminal.Gui + namespace: Mono.Terminal + summary: This event is raised when a key is pressed when using the Windows driver. + syntax: + content: public Action WindowsKeyPressed; + return: + type: System.Action{System.ConsoleKeyInfo} + description: To be added. + exceptions: [] references: - uid: System.Object parent: System @@ -319,6 +360,18 @@ references: name: MainLoop() nameWithType: MainLoop.MainLoop() fullName: MainLoop.MainLoop() +- uid: Mono.Terminal.MainLoop.#ctor(System.Boolean) + parent: Mono.Terminal.MainLoop + isExternal: false + name: MainLoop(Boolean) + nameWithType: MainLoop.MainLoop(Boolean) + fullName: MainLoop.MainLoop(Boolean) +- uid: System.Boolean + parent: System + isExternal: true + name: Boolean + nameWithType: Boolean + fullName: System.Boolean - uid: Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean}) parent: Mono.Terminal.MainLoop isExternal: false @@ -329,10 +382,6 @@ references: name: Func nameWithType: Func fullName: System.Func -- uid: System.Boolean - name: Boolean - nameWithType: Boolean - fullName: System.Boolean - uid: System.Func{System.Boolean} parent: System isExternal: true @@ -468,6 +517,41 @@ references: name: Stop() nameWithType: MainLoop.Stop() fullName: MainLoop.Stop() +- uid: Mono.Terminal.MainLoop.WindowsKeyPressed + parent: Mono.Terminal.MainLoop + isExternal: false + name: WindowsKeyPressed + nameWithType: MainLoop.WindowsKeyPressed + fullName: MainLoop.WindowsKeyPressed +- uid: System.Action`1 + name: Action + nameWithType: Action + fullName: System.Action +- uid: System.ConsoleKeyInfo + name: ConsoleKeyInfo + nameWithType: ConsoleKeyInfo + fullName: System.ConsoleKeyInfo +- uid: System.Action{System.ConsoleKeyInfo} + parent: System + isExternal: true + name: Action + nameWithType: Action + fullName: System.Action + spec.csharp: + - uid: System.Action`1 + name: Action + nameWithType: Action + fullName: System.Action + - name: < + nameWithType: < + fullName: < + - uid: System.ConsoleKeyInfo + name: ConsoleKeyInfo + nameWithType: ConsoleKeyInfo + fullName: System.ConsoleKeyInfo + - name: '>' + nameWithType: '>' + fullName: '>' - uid: Mono.Terminal.MainLoop.#ctor* parent: Mono.Terminal.MainLoop isExternal: false diff --git a/docfx/api/Terminal.Gui.yml b/docfx/api/Terminal.Gui.yml index 016890654..ad1d396d1 100644 --- a/docfx/api/Terminal.Gui.yml +++ b/docfx/api/Terminal.Gui.yml @@ -14,6 +14,7 @@ items: - Terminal.Gui.ColorScheme - Terminal.Gui.ConsoleDriver - Terminal.Gui.Dialog + - Terminal.Gui.FileDialog - Terminal.Gui.FrameView - Terminal.Gui.IListDataSource - Terminal.Gui.Key @@ -26,17 +27,20 @@ items: - Terminal.Gui.MessageBox - Terminal.Gui.MouseEvent - Terminal.Gui.MouseFlags + - Terminal.Gui.OpenDialog - Terminal.Gui.Point - Terminal.Gui.ProgressBar - Terminal.Gui.RadioGroup - Terminal.Gui.Rect - Terminal.Gui.Responder + - Terminal.Gui.SaveDialog - Terminal.Gui.ScrollBarView - Terminal.Gui.ScrollView - Terminal.Gui.Size - Terminal.Gui.SpecialChar - Terminal.Gui.TextAlignment - Terminal.Gui.TextField + - Terminal.Gui.TextView - Terminal.Gui.Toplevel - Terminal.Gui.View - Terminal.Gui.Window @@ -113,6 +117,12 @@ references: name: Dialog nameWithType: Dialog fullName: Terminal.Gui.Dialog +- uid: Terminal.Gui.FileDialog + parent: Terminal.Gui + isExternal: false + name: FileDialog + nameWithType: FileDialog + fullName: Terminal.Gui.FileDialog - uid: Terminal.Gui.FrameView parent: Terminal.Gui isExternal: false @@ -185,6 +195,12 @@ references: name: MouseFlags nameWithType: MouseFlags fullName: Terminal.Gui.MouseFlags +- uid: Terminal.Gui.OpenDialog + parent: Terminal.Gui + isExternal: false + name: OpenDialog + nameWithType: OpenDialog + fullName: Terminal.Gui.OpenDialog - uid: Terminal.Gui.Point parent: Terminal.Gui isExternal: false @@ -215,6 +231,12 @@ references: name: Responder nameWithType: Responder fullName: Terminal.Gui.Responder +- uid: Terminal.Gui.SaveDialog + parent: Terminal.Gui + isExternal: false + name: SaveDialog + nameWithType: SaveDialog + fullName: Terminal.Gui.SaveDialog - uid: Terminal.Gui.ScrollBarView parent: Terminal.Gui isExternal: false @@ -251,6 +273,12 @@ references: name: TextField nameWithType: TextField fullName: Terminal.Gui.TextField +- uid: Terminal.Gui.TextView + parent: Terminal.Gui + isExternal: false + name: TextView + nameWithType: TextView + fullName: Terminal.Gui.TextView - uid: Terminal.Gui.Toplevel parent: Terminal.Gui isExternal: false diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Application.RunState.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Application.RunState.yml index 89d280983..e2cc85239 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Application.RunState.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Application.RunState.yml @@ -60,7 +60,7 @@ items: namespace: Terminal.Gui summary: Dispose the specified disposing. syntax: - content: public virtual void Dispose (bool disposing); + content: protected virtual void Dispose (bool disposing); parameters: - id: disposing type: System.Boolean diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml index 5d2c10316..4b02c5fd8 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml @@ -134,7 +134,7 @@ items: namespace: Terminal.Gui summary: 'Building block API: completes the exection of a Toplevel that was started with Begin.' syntax: - content: public static void End (Terminal.Gui.Application.RunState rs); + content: public static void End (Terminal.Gui.Application.RunState runState); parameters: - id: rs type: Terminal.Gui.Application+RunState diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml index 05ef75493..75d0c6496 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml @@ -3,9 +3,13 @@ items: - uid: Terminal.Gui.Button id: Button children: + - Terminal.Gui.Button.#ctor(NStack.ustring) - Terminal.Gui.Button.#ctor(System.String) + - Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) - Terminal.Gui.Button.#ctor(System.String,System.Boolean) + - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String) + - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String,System.Boolean) - Terminal.Gui.Button.Clicked - Terminal.Gui.Button.IsDefault @@ -88,6 +92,32 @@ items: - Terminal.Gui.View.SuperView - Terminal.Gui.View.ToString - Terminal.Gui.View.WantMousePositionReports +- uid: Terminal.Gui.Button.#ctor(NStack.ustring) + id: '#ctor(NStack.ustring)' + parent: Terminal.Gui.Button + langs: + - csharp + name: Button(ustring) + nameWithType: Button.Button(ustring) + fullName: Button.Button(ustring) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: >- + Public constructor, creates a button based on + the given text at position 0,0 + remarks: >- + The size of the button is computed based on the + text length. This button is not a default button. + syntax: + content: public Button (NStack.ustring text); + parameters: + - id: text + type: NStack.ustring + description: The button's text + overload: Terminal.Gui.Button.#ctor* + exceptions: [] - uid: Terminal.Gui.Button.#ctor(System.String) id: '#ctor(System.String)' parent: Terminal.Gui.Button @@ -114,6 +144,36 @@ items: description: To be added. overload: Terminal.Gui.Button.#ctor* exceptions: [] +- uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) + id: '#ctor(NStack.ustring,System.Boolean)' + parent: Terminal.Gui.Button + langs: + - csharp + name: Button(ustring, Boolean) + nameWithType: Button.Button(ustring, Boolean) + fullName: Button.Button(ustring, Boolean) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: >- + Public constructor, creates a button based on + the given text. + remarks: >- + If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button. + syntax: + content: public Button (NStack.ustring text, bool is_default); + parameters: + - id: text + type: NStack.ustring + description: The button's text + - id: is_default + type: System.Boolean + description: If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button + overload: Terminal.Gui.Button.#ctor* + exceptions: [] - uid: Terminal.Gui.Button.#ctor(System.String,System.Boolean) id: '#ctor(System.String,System.Boolean)' parent: Terminal.Gui.Button @@ -144,6 +204,38 @@ items: description: To be added. overload: Terminal.Gui.Button.#ctor* exceptions: [] +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) + id: '#ctor(System.Int32,System.Int32,NStack.ustring)' + parent: Terminal.Gui.Button + langs: + - csharp + name: Button(Int32, Int32, ustring) + nameWithType: Button.Button(Int32, Int32, ustring) + fullName: Button.Button(Int32, Int32, ustring) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: >- + Public constructor, creates a button based on + the given text at the given position. + remarks: >- + The size of the button is computed based on the + text length. This button is not a default button. + syntax: + content: public Button (int x, int y, NStack.ustring text); + parameters: + - id: x + type: System.Int32 + description: X position where the button will be shown. + - id: y + type: System.Int32 + description: Y position where the button will be shown. + - id: text + type: NStack.ustring + description: The button's text + overload: Terminal.Gui.Button.#ctor* + exceptions: [] - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String) id: '#ctor(System.Int32,System.Int32,System.String)' parent: Terminal.Gui.Button @@ -176,6 +268,42 @@ items: description: To be added. overload: Terminal.Gui.Button.#ctor* exceptions: [] +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) + id: '#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean)' + parent: Terminal.Gui.Button + langs: + - csharp + name: Button(Int32, Int32, ustring, Boolean) + nameWithType: Button.Button(Int32, Int32, ustring, Boolean) + fullName: Button.Button(Int32, Int32, ustring, Boolean) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: >- + Public constructor, creates a button based on + the given text at the given position. + remarks: >- + If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button. + syntax: + content: public Button (int x, int y, NStack.ustring text, bool is_default); + parameters: + - id: x + type: System.Int32 + description: X position where the button will be shown. + - id: y + type: System.Int32 + description: Y position where the button will be shown. + - id: text + type: NStack.ustring + description: The button's text + - id: is_default + type: System.Boolean + description: If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button + overload: Terminal.Gui.Button.#ctor* + exceptions: [] - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String,System.Boolean) id: '#ctor(System.Int32,System.Int32,System.String,System.Boolean)' parent: Terminal.Gui.Button @@ -411,6 +539,18 @@ references: name: View nameWithType: View fullName: Terminal.Gui.View +- uid: Terminal.Gui.Button.#ctor(NStack.ustring) + parent: Terminal.Gui.Button + isExternal: false + name: Button(ustring) + nameWithType: Button.Button(ustring) + fullName: Button.Button(ustring) +- uid: NStack.ustring + parent: NStack + isExternal: true + name: ustring + nameWithType: ustring + fullName: NStack.ustring - uid: Terminal.Gui.Button.#ctor(System.String) parent: Terminal.Gui.Button isExternal: false @@ -423,30 +563,48 @@ references: name: String nameWithType: String fullName: System.String -- uid: Terminal.Gui.Button.#ctor(System.String,System.Boolean) +- uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) parent: Terminal.Gui.Button isExternal: false - name: Button(String, Boolean) - nameWithType: Button.Button(String, Boolean) - fullName: Button.Button(String, Boolean) + name: Button(ustring, Boolean) + nameWithType: Button.Button(ustring, Boolean) + fullName: Button.Button(ustring, Boolean) - uid: System.Boolean parent: System isExternal: true name: Boolean nameWithType: Boolean fullName: System.Boolean -- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String) +- uid: Terminal.Gui.Button.#ctor(System.String,System.Boolean) parent: Terminal.Gui.Button isExternal: false - name: Button(Int32, Int32, String) - nameWithType: Button.Button(Int32, Int32, String) - fullName: Button.Button(Int32, Int32, String) + name: Button(String, Boolean) + nameWithType: Button.Button(String, Boolean) + fullName: Button.Button(String, Boolean) +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) + parent: Terminal.Gui.Button + isExternal: false + name: Button(Int32, Int32, ustring) + nameWithType: Button.Button(Int32, Int32, ustring) + fullName: Button.Button(Int32, Int32, ustring) - uid: System.Int32 parent: System isExternal: true name: Int32 nameWithType: Int32 fullName: System.Int32 +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String) + parent: Terminal.Gui.Button + isExternal: false + name: Button(Int32, Int32, String) + nameWithType: Button.Button(Int32, Int32, String) + fullName: Button.Button(Int32, Int32, String) +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) + parent: Terminal.Gui.Button + isExternal: false + name: Button(Int32, Int32, ustring, Boolean) + nameWithType: Button.Button(Int32, Int32, ustring, Boolean) + fullName: Button.Button(Int32, Int32, ustring, Boolean) - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String,System.Boolean) parent: Terminal.Gui.Button isExternal: false @@ -531,12 +689,6 @@ references: name: Text nameWithType: Button.Text fullName: Button.Text -- uid: NStack.ustring - parent: NStack - isExternal: true - name: ustring - nameWithType: ustring - fullName: NStack.ustring - uid: Terminal.Gui.Button.#ctor* parent: Terminal.Gui.Button isExternal: false diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml b/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml index 21ecc87d9..46af19f78 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml @@ -28,8 +28,8 @@ items: - Terminal.Gui.ConsoleDriver.RightTee - Terminal.Gui.ConsoleDriver.Rows - Terminal.Gui.ConsoleDriver.SetAttribute(Terminal.Gui.Attribute) - - Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) - Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) + - Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) - Terminal.Gui.ConsoleDriver.StartReportingMouseMoves - Terminal.Gui.ConsoleDriver.Stipple - Terminal.Gui.ConsoleDriver.StopReportingMouseMoves @@ -37,6 +37,8 @@ items: - Terminal.Gui.ConsoleDriver.TopTee - Terminal.Gui.ConsoleDriver.ULCorner - Terminal.Gui.ConsoleDriver.UncookMouse + - Terminal.Gui.ConsoleDriver.UpdateCursor + - Terminal.Gui.ConsoleDriver.UpdateScreen - Terminal.Gui.ConsoleDriver.URCorner - Terminal.Gui.ConsoleDriver.VLine langs: @@ -449,7 +451,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public abstract void PrepareToRun (Mono.Terminal.MainLoop mainLoop, Action target, Action mouse); + content: public abstract void PrepareToRun (Mono.Terminal.MainLoop mainLoop, Action keyHandler, Action mouseHandler); parameters: - id: mainLoop type: Mono.Terminal.MainLoop @@ -557,6 +559,29 @@ items: description: C. overload: Terminal.Gui.ConsoleDriver.SetAttribute* exceptions: [] +- uid: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) + id: SetColors(System.ConsoleColor,System.ConsoleColor) + parent: Terminal.Gui.ConsoleDriver + langs: + - csharp + name: SetColors(ConsoleColor, ConsoleColor) + nameWithType: ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) + fullName: ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) + type: Method + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + syntax: + content: public abstract void SetColors (ConsoleColor foreground, ConsoleColor background); + parameters: + - id: foreground + type: System.ConsoleColor + description: To be added. + - id: background + type: System.ConsoleColor + description: To be added. + overload: Terminal.Gui.ConsoleDriver.SetColors* + exceptions: [] - uid: Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) id: SetColors(System.Int16,System.Int16) parent: Terminal.Gui.ConsoleDriver @@ -581,29 +606,6 @@ items: description: Background color identifier. overload: Terminal.Gui.ConsoleDriver.SetColors* exceptions: [] -- uid: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) - id: SetColors(System.ConsoleColor,System.ConsoleColor) - parent: Terminal.Gui.ConsoleDriver - langs: - - csharp - name: SetColors(ConsoleColor, ConsoleColor) - nameWithType: ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) - fullName: ConsoleDriver.SetColors(ConsoleColor, ConsoleColor) - type: Method - assemblies: - - Terminal.Gui - namespace: Terminal.Gui - syntax: - content: public abstract void SetColors (ConsoleColor foreground, ConsoleColor background); - parameters: - - id: foreground - type: System.ConsoleColor - description: To be added. - - id: background - type: System.ConsoleColor - description: To be added. - overload: Terminal.Gui.ConsoleDriver.SetColors* - exceptions: [] - uid: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves id: StartReportingMouseMoves parent: Terminal.Gui.ConsoleDriver @@ -731,6 +733,42 @@ items: parameters: [] overload: Terminal.Gui.ConsoleDriver.UncookMouse* exceptions: [] +- uid: Terminal.Gui.ConsoleDriver.UpdateCursor + id: UpdateCursor + parent: Terminal.Gui.ConsoleDriver + langs: + - csharp + name: UpdateCursor() + nameWithType: ConsoleDriver.UpdateCursor() + fullName: ConsoleDriver.UpdateCursor() + type: Method + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: Updates the location of the cursor position + syntax: + content: public abstract void UpdateCursor (); + parameters: [] + overload: Terminal.Gui.ConsoleDriver.UpdateCursor* + exceptions: [] +- uid: Terminal.Gui.ConsoleDriver.UpdateScreen + id: UpdateScreen + parent: Terminal.Gui.ConsoleDriver + langs: + - csharp + name: UpdateScreen() + nameWithType: ConsoleDriver.UpdateScreen() + fullName: ConsoleDriver.UpdateScreen() + type: Method + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: Redraws the physical screen with the contents that have been queued up via any of the printing commands. + syntax: + content: public abstract void UpdateScreen (); + parameters: [] + overload: Terminal.Gui.ConsoleDriver.UpdateScreen* + exceptions: [] - uid: Terminal.Gui.ConsoleDriver.URCorner id: URCorner parent: Terminal.Gui.ConsoleDriver @@ -1040,18 +1078,6 @@ references: name: Attribute nameWithType: Attribute fullName: Terminal.Gui.Attribute -- uid: Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) - parent: Terminal.Gui.ConsoleDriver - isExternal: false - name: SetColors(Int16, Int16) - nameWithType: ConsoleDriver.SetColors(Int16, Int16) - fullName: ConsoleDriver.SetColors(Int16, Int16) -- uid: System.Int16 - parent: System - isExternal: true - name: Int16 - nameWithType: Int16 - fullName: System.Int16 - uid: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor) parent: Terminal.Gui.ConsoleDriver isExternal: false @@ -1064,6 +1090,18 @@ references: name: ConsoleColor nameWithType: ConsoleColor fullName: System.ConsoleColor +- uid: Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) + parent: Terminal.Gui.ConsoleDriver + isExternal: false + name: SetColors(Int16, Int16) + nameWithType: ConsoleDriver.SetColors(Int16, Int16) + fullName: ConsoleDriver.SetColors(Int16, Int16) +- uid: System.Int16 + parent: System + isExternal: true + name: Int16 + nameWithType: Int16 + fullName: System.Int16 - uid: Terminal.Gui.ConsoleDriver.StartReportingMouseMoves parent: Terminal.Gui.ConsoleDriver isExternal: false @@ -1106,6 +1144,18 @@ references: name: UncookMouse() nameWithType: ConsoleDriver.UncookMouse() fullName: ConsoleDriver.UncookMouse() +- uid: Terminal.Gui.ConsoleDriver.UpdateCursor + parent: Terminal.Gui.ConsoleDriver + isExternal: false + name: UpdateCursor() + nameWithType: ConsoleDriver.UpdateCursor() + fullName: ConsoleDriver.UpdateCursor() +- uid: Terminal.Gui.ConsoleDriver.UpdateScreen + parent: Terminal.Gui.ConsoleDriver + isExternal: false + name: UpdateScreen() + nameWithType: ConsoleDriver.UpdateScreen() + fullName: ConsoleDriver.UpdateScreen() - uid: Terminal.Gui.ConsoleDriver.URCorner parent: Terminal.Gui.ConsoleDriver isExternal: false @@ -1250,3 +1300,15 @@ references: name: UncookMouse nameWithType: ConsoleDriver.UncookMouse fullName: ConsoleDriver.UncookMouse +- uid: Terminal.Gui.ConsoleDriver.UpdateCursor* + parent: Terminal.Gui.ConsoleDriver + isExternal: false + name: UpdateCursor + nameWithType: ConsoleDriver.UpdateCursor + fullName: ConsoleDriver.UpdateCursor +- uid: Terminal.Gui.ConsoleDriver.UpdateScreen* + parent: Terminal.Gui.ConsoleDriver + isExternal: false + name: UpdateScreen + nameWithType: ConsoleDriver.UpdateScreen + fullName: ConsoleDriver.UpdateScreen diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Dialog.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Dialog.yml index a9c92b702..93a7d255b 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Dialog.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Dialog.yml @@ -3,6 +3,7 @@ items: - uid: Terminal.Gui.Dialog id: Dialog children: + - Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) - Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[]) - Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button) - Terminal.Gui.Dialog.LayoutSubviews @@ -25,6 +26,8 @@ items: - Terminal.Gui.View - Terminal.Gui.Toplevel - Terminal.Gui.Window + derivedClasses: + - Terminal.Gui.FileDialog implements: [] inheritedMembers: - Terminal.Gui.Toplevel.CanFocus @@ -77,6 +80,36 @@ items: - Terminal.Gui.Window.Redraw(Terminal.Gui.Rect) - Terminal.Gui.Window.Remove(Terminal.Gui.View) - Terminal.Gui.Window.Title +- uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) + id: '#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])' + parent: Terminal.Gui.Dialog + langs: + - csharp + name: Dialog(ustring, Int32, Int32, Button[]) + nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[]) + fullName: Dialog.Dialog(ustring, Int32, Int32, Button[]) + type: Constructor + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: Initializes a new instance of the class with an optional set of buttons to display + syntax: + content: public Dialog (NStack.ustring title, int width, int height, Terminal.Gui.Button[] buttons); + parameters: + - id: title + type: NStack.ustring + description: Title for the dialog. + - id: width + type: System.Int32 + description: Width for the dialog. + - id: height + type: System.Int32 + description: Height for the dialog. + - id: buttons + type: Terminal.Gui.Button[] + description: Optional buttons to lay out at the bottom of the dialog. + overload: Terminal.Gui.Dialog.#ctor* + exceptions: [] - uid: Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[]) id: '#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[])' parent: Terminal.Gui.Dialog @@ -175,18 +208,18 @@ references: name: Window nameWithType: Window fullName: Terminal.Gui.Window -- uid: Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[]) +- uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) parent: Terminal.Gui.Dialog isExternal: false - name: Dialog(String, Int32, Int32, Button[]) - nameWithType: Dialog.Dialog(String, Int32, Int32, Button[]) - fullName: Dialog.Dialog(String, Int32, Int32, Button[]) -- uid: System.String - parent: System + name: Dialog(ustring, Int32, Int32, Button[]) + nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[]) + fullName: Dialog.Dialog(ustring, Int32, Int32, Button[]) +- uid: NStack.ustring + parent: NStack isExternal: true - name: String - nameWithType: String - fullName: System.String + name: ustring + nameWithType: ustring + fullName: NStack.ustring - uid: System.Int32 parent: System isExternal: true @@ -211,6 +244,18 @@ references: - name: '[]' nameWithType: '[]' fullName: '[]' +- uid: Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[]) + parent: Terminal.Gui.Dialog + isExternal: false + name: Dialog(String, Int32, Int32, Button[]) + nameWithType: Dialog.Dialog(String, Int32, Int32, Button[]) + fullName: Dialog.Dialog(String, Int32, Int32, Button[]) +- uid: System.String + parent: System + isExternal: true + name: String + nameWithType: String + fullName: System.String - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button) parent: Terminal.Gui.Dialog isExternal: false diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Key.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Key.yml index 88ba5c287..789b7c158 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Key.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Key.yml @@ -26,6 +26,7 @@ items: - Terminal.Gui.Key.ControlQ - Terminal.Gui.Key.ControlR - Terminal.Gui.Key.ControlS + - Terminal.Gui.Key.ControlSpace - Terminal.Gui.Key.ControlT - Terminal.Gui.Key.ControlU - Terminal.Gui.Key.ControlV @@ -158,6 +159,10 @@ items: assemblies: - Terminal.Gui namespace: Terminal.Gui + summary: >- + Mask that indictes that this is a character value, values outside this range + indicate special characters like Alt-key combinations or special keys on the + keyboard like function keys, arrows keys and so on. syntax: content: CharMask return: @@ -525,6 +530,25 @@ items: type: Terminal.Gui.Key description: To be added. exceptions: [] +- uid: Terminal.Gui.Key.ControlSpace + id: ControlSpace + parent: Terminal.Gui.Key + langs: + - csharp + name: ControlSpace + nameWithType: Key.ControlSpace + fullName: Key.ControlSpace + type: Field + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + summary: The key code for the user pressing Control-spacebar + syntax: + content: ControlSpace + return: + type: Terminal.Gui.Key + description: To be added. + exceptions: [] - uid: Terminal.Gui.Key.ControlT id: ControlT parent: Terminal.Gui.Key @@ -1324,6 +1348,12 @@ references: name: ControlS nameWithType: Key.ControlS fullName: Key.ControlS +- uid: Terminal.Gui.Key.ControlSpace + parent: Terminal.Gui.Key + isExternal: false + name: ControlSpace + nameWithType: Key.ControlSpace + fullName: Key.ControlSpace - uid: Terminal.Gui.Key.ControlT parent: Terminal.Gui.Key isExternal: false diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.RadioGroup.yml b/docfx/api/Terminal.Gui/Terminal.Gui.RadioGroup.yml index fd94bf2a9..c92c0b1af 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.RadioGroup.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.RadioGroup.yml @@ -7,6 +7,7 @@ items: - Terminal.Gui.RadioGroup.#ctor(System.Int32,System.Int32,System.String[],System.Int32) - Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent) - Terminal.Gui.RadioGroup.PositionCursor + - Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) - Terminal.Gui.RadioGroup.ProcessHotKey(Terminal.Gui.KeyEvent) - Terminal.Gui.RadioGroup.ProcessKey(Terminal.Gui.KeyEvent) - Terminal.Gui.RadioGroup.RadioLabels @@ -63,7 +64,6 @@ items: - Terminal.Gui.View.LayoutSubviews - Terminal.Gui.View.MostFocused - Terminal.Gui.View.Move(System.Int32,System.Int32) - - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - Terminal.Gui.View.Remove(Terminal.Gui.View) - Terminal.Gui.View.RemoveAll - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32) @@ -174,6 +174,29 @@ items: parameters: [] overload: Terminal.Gui.RadioGroup.PositionCursor* exceptions: [] +- uid: Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) + id: ProcessColdKey(Terminal.Gui.KeyEvent) + parent: Terminal.Gui.RadioGroup + langs: + - csharp + name: ProcessColdKey(KeyEvent) + nameWithType: RadioGroup.ProcessColdKey(KeyEvent) + fullName: RadioGroup.ProcessColdKey(KeyEvent) + type: Method + assemblies: + - Terminal.Gui + namespace: Terminal.Gui + syntax: + content: public override bool ProcessColdKey (Terminal.Gui.KeyEvent kb); + parameters: + - id: kb + type: Terminal.Gui.KeyEvent + description: To be added. + return: + type: System.Boolean + description: To be added. + overload: Terminal.Gui.RadioGroup.ProcessColdKey* + exceptions: [] - uid: Terminal.Gui.RadioGroup.ProcessHotKey(Terminal.Gui.KeyEvent) id: ProcessHotKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.RadioGroup @@ -371,18 +394,24 @@ references: name: PositionCursor() nameWithType: RadioGroup.PositionCursor() fullName: RadioGroup.PositionCursor() -- uid: Terminal.Gui.RadioGroup.ProcessHotKey(Terminal.Gui.KeyEvent) +- uid: Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.RadioGroup isExternal: false - name: ProcessHotKey(KeyEvent) - nameWithType: RadioGroup.ProcessHotKey(KeyEvent) - fullName: RadioGroup.ProcessHotKey(KeyEvent) + name: ProcessColdKey(KeyEvent) + nameWithType: RadioGroup.ProcessColdKey(KeyEvent) + fullName: RadioGroup.ProcessColdKey(KeyEvent) - uid: Terminal.Gui.KeyEvent parent: Terminal.Gui isExternal: false name: KeyEvent nameWithType: KeyEvent fullName: Terminal.Gui.KeyEvent +- uid: Terminal.Gui.RadioGroup.ProcessHotKey(Terminal.Gui.KeyEvent) + parent: Terminal.Gui.RadioGroup + isExternal: false + name: ProcessHotKey(KeyEvent) + nameWithType: RadioGroup.ProcessHotKey(KeyEvent) + fullName: RadioGroup.ProcessHotKey(KeyEvent) - uid: Terminal.Gui.RadioGroup.ProcessKey(Terminal.Gui.KeyEvent) parent: Terminal.Gui.RadioGroup isExternal: false @@ -456,6 +485,12 @@ references: name: PositionCursor nameWithType: RadioGroup.PositionCursor fullName: RadioGroup.PositionCursor +- uid: Terminal.Gui.RadioGroup.ProcessColdKey* + parent: Terminal.Gui.RadioGroup + isExternal: false + name: ProcessColdKey + nameWithType: RadioGroup.ProcessColdKey + fullName: RadioGroup.ProcessColdKey - uid: Terminal.Gui.RadioGroup.ProcessHotKey* parent: Terminal.Gui.RadioGroup isExternal: false @@ -498,12 +533,6 @@ references: name: HasFocus nameWithType: View.HasFocus fullName: View.HasFocus -- uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent) - parent: Terminal.Gui.View - isExternal: false - name: ProcessColdKey(KeyEvent) - nameWithType: View.ProcessColdKey(KeyEvent) - fullName: View.ProcessColdKey(KeyEvent) - uid: Terminal.Gui.View.Add(Terminal.Gui.View) parent: Terminal.Gui.View isExternal: false diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml index bc8363839..3c0c8709f 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml @@ -21,7 +21,14 @@ items: remarks: >-

Toplevels can be modally executing views, and they return control - to the caller when the "Running" property is set to false. + to the caller when the "Running" property is set to false, or + by calling

+

+ There will be a toplevel created for you on the first time use + and can be accessed from the property , + but new toplevels can be created and ran on top of it. To run, create the + toplevel and then invoke with the + new toplevel.

syntax: content: 'public class Toplevel : Terminal.Gui.View' diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.View.yml b/docfx/api/Terminal.Gui/Terminal.Gui.View.yml index 263f506e9..7835909d6 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.View.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.View.yml @@ -79,6 +79,7 @@ items: - Terminal.Gui.ScrollBarView - Terminal.Gui.ScrollView - Terminal.Gui.TextField + - Terminal.Gui.TextView - Terminal.Gui.Toplevel implements: - System.Collections.IEnumerable diff --git a/docfx/api/toc.yml b/docfx/api/toc.yml index 6c613a132..6af97f8da 100644 --- a/docfx/api/toc.yml +++ b/docfx/api/toc.yml @@ -31,6 +31,8 @@ name: ConsoleDriver - uid: Terminal.Gui.Dialog name: Dialog + - uid: Terminal.Gui.FileDialog + name: FileDialog - uid: Terminal.Gui.FrameView name: FrameView - uid: Terminal.Gui.IListDataSource @@ -55,6 +57,8 @@ name: MouseEvent - uid: Terminal.Gui.MouseFlags name: MouseFlags + - uid: Terminal.Gui.OpenDialog + name: OpenDialog - uid: Terminal.Gui.Point name: Point - uid: Terminal.Gui.ProgressBar @@ -65,6 +69,8 @@ name: Rect - uid: Terminal.Gui.Responder name: Responder + - uid: Terminal.Gui.SaveDialog + name: SaveDialog - uid: Terminal.Gui.ScrollBarView name: ScrollBarView - uid: Terminal.Gui.ScrollView @@ -77,6 +83,8 @@ name: TextAlignment - uid: Terminal.Gui.TextField name: TextField + - uid: Terminal.Gui.TextView + name: TextView - uid: Terminal.Gui.Toplevel name: Toplevel - uid: Terminal.Gui.View diff --git a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html index 87372f986..0b7509528 100644 --- a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html +++ b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html @@ -104,6 +104,62 @@
public MainLoop ();
+ + + +

MainLoop(Boolean)

+
+
+
Declaration
+
+
public MainLoop (bool useUnix);
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
System.BooleanuseUnix

To be added.

+
+

Fields +

+ + +

WindowsKeyPressed

+

This event is raised when a key is pressed when using the Windows driver.

+
+
+
Declaration
+
+
public Action<ConsoleKeyInfo> WindowsKeyPressed;
+
+
Field Value
+ + + + + + + + + + + + + +
TypeDescription
System.Action<System.ConsoleKeyInfo>

To be added.

+

Methods

diff --git a/docs/api/Terminal.Gui.html b/docs/api/Terminal.Gui.html index 9774a10c8..3ddabbdc2 100644 --- a/docs/api/Terminal.Gui.html +++ b/docs/api/Terminal.Gui.html @@ -105,6 +105,8 @@

The dialog box is a window that by default is centered and contains one or more buttons.

+

FileDialog

+

FrameView

The FrameView is a container frame that draws a frame around the contents

@@ -126,6 +128,8 @@

MessageBox

Message box displays a modal message to the user, with a title, a message and a series of options that the user can choose from.

+

OpenDialog

+

ProgressBar

Progress bar can indicate progress of an activity visually.

@@ -134,6 +138,8 @@

Responder

+

SaveDialog

+

ScrollBarView

ScrollBarViews are views that display a 1-character scrollbar, either horizontal or vertical

@@ -142,6 +148,9 @@

TextField

Text data entry widget

+
+

TextView

+

Text data entry widget

Toplevel

Toplevel views can be modally executed.

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html index 8f012c390..29379d706 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Application.RunState.html @@ -115,7 +115,7 @@
Declaration
-
public virtual void Dispose (bool disposing);
+
protected virtual void Dispose (bool disposing);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.html index 831e68239..c2e32e96a 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Application.html @@ -338,7 +338,7 @@
Declaration
-
public static void End (Terminal.Gui.Application.RunState rs);
+
public static void End (Terminal.Gui.Application.RunState runState);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Button.html b/docs/api/Terminal.Gui/Terminal.Gui.Button.html index 0540d6b0e..ced4c9f25 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Button.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Button.html @@ -235,6 +235,40 @@ + +

Button(ustring)

+

Public constructor, creates a button based on + the given text at position 0,0

+
+
+
Declaration
+
+
public Button (NStack.ustring text);
+
+
Parameters
+
+ + + + + + + + + + + + + + +
TypeNameDescription
NStack.ustringtext

The button's text

+
+
Remarks
+

The size of the button is computed based on the + text length. This button is not a default button.

+
+ +

Button(String)

Public constructor, creates a button based on @@ -269,6 +303,47 @@

+ +

Button(ustring, Boolean)

+

Public constructor, creates a button based on + the given text.

+
+
+
Declaration
+
+
public Button (NStack.ustring text, bool is_default);
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
NStack.ustringtext

The button's text

+
System.Booleanis_default

If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button

+
+
Remarks
+

If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button.

+
+ +

Button(String, Boolean)

Public constructor, creates a button based on @@ -310,6 +385,52 @@

+ +

Button(Int32, Int32, ustring)

+

Public constructor, creates a button based on + the given text at the given position.

+
+
+
Declaration
+
+
public Button (int x, int y, NStack.ustring text);
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Int32x

X position where the button will be shown.

+
System.Int32y

Y position where the button will be shown.

+
NStack.ustringtext

The button's text

+
+
Remarks
+

The size of the button is computed based on the + text length. This button is not a default button.

+
+ +

Button(Int32, Int32, String)

Public constructor, creates a button based on @@ -356,6 +477,59 @@

+ +

Button(Int32, Int32, ustring, Boolean)

+

Public constructor, creates a button based on + the given text at the given position.

+
+
+
Declaration
+
+
public Button (int x, int y, NStack.ustring text, bool is_default);
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.Int32x

X position where the button will be shown.

+
System.Int32y

Y position where the button will be shown.

+
NStack.ustringtext

The button's text

+
System.Booleanis_default

If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button

+
+
Remarks
+

If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button.

+
+ +

Button(Int32, Int32, String, Boolean)

Public constructor, creates a button based on diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html index 093c52b82..b564e6d0d 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html @@ -777,7 +777,7 @@

Declaration
-
public abstract void PrepareToRun (Mono.Terminal.MainLoop mainLoop, Action<Terminal.Gui.KeyEvent> target, Action<Terminal.Gui.MouseEvent> mouse);
+
public abstract void PrepareToRun (Mono.Terminal.MainLoop mainLoop, Action<Terminal.Gui.KeyEvent> keyHandler, Action<Terminal.Gui.MouseEvent> mouseHandler);
Parameters
@@ -861,6 +861,40 @@
+ +

SetColors(ConsoleColor, ConsoleColor)

+
+
+
Declaration
+
+
public abstract void SetColors (ConsoleColor foreground, ConsoleColor background);
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.ConsoleColorforeground

To be added.

+
System.ConsoleColorbackground

To be added.

+
+ +

SetColors(Int16, Int16)

Advanced uses - set colors to any pre-set pairs, you would need to init_color @@ -897,40 +931,6 @@ - -

SetColors(ConsoleColor, ConsoleColor)

-
-
-
Declaration
-
-
public abstract void SetColors (ConsoleColor foreground, ConsoleColor background);
-
-
Parameters
- - - - - - - - - - - - - - - - - - - - -
TypeNameDescription
System.ConsoleColorforeground

To be added.

-
System.ConsoleColorbackground

To be added.

-
- -

StartReportingMouseMoves()

@@ -971,6 +971,28 @@
public abstract void UncookMouse ();
+ + + +

UpdateCursor()

+

Updates the location of the cursor position

+
+
+
Declaration
+
+
public abstract void UpdateCursor ();
+
+ + + +

UpdateScreen()

+

Redraws the physical screen with the contents that have been queued up via any of the printing commands.

+
+
+
Declaration
+
+
public abstract void UpdateScreen ();
+
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html b/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html index a84cbe5b4..1a7e88ee3 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Dialog.html @@ -85,6 +85,7 @@
Dialog
+
Inherited Members
@@ -248,6 +249,53 @@ + +

Dialog(ustring, Int32, Int32, Button[])

+

Initializes a new instance of the Dialog class with an optional set of buttons to display

+
+
+
Declaration
+
+
public Dialog (NStack.ustring title, int width, int height, Terminal.Gui.Button[] buttons);
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
NStack.ustringtitle

Title for the dialog.

+
System.Int32width

Width for the dialog.

+
System.Int32height

Height for the dialog.

+
Button[]buttons

Optional buttons to lay out at the bottom of the dialog.

+
+ +

Dialog(String, Int32, Int32, Button[])

Initializes a new instance of the Dialog class with an optional set of buttons to display

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Key.html b/docs/api/Terminal.Gui/Terminal.Gui.Key.html index 1fb695506..48c44170f 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Key.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Key.html @@ -121,7 +121,10 @@ CharMask - +

Mask that indictes that this is a character value, values outside this range + indicate special characters like Alt-key combinations or special keys on the + keyboard like function keys, arrows keys and so on.

+ ControlA @@ -216,6 +219,11 @@ ControlS

The key code for the user pressing Control-S

+ + + + ControlSpace +

The key code for the user pressing Control-spacebar

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html b/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html index 4185274a2..97d4863d2 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.RadioGroup.html @@ -180,9 +180,6 @@ - @@ -457,6 +454,50 @@
+ +

ProcessColdKey(KeyEvent)

+
+
+
Declaration
+
+
public override bool ProcessColdKey (Terminal.Gui.KeyEvent kb);
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
KeyEventkb

To be added.

+
+
Returns
+ + + + + + + + + + + + + +
TypeDescription
System.Boolean

To be added.

+
+ +

ProcessHotKey(KeyEvent)

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html b/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html index d271dcff9..aae545512 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html @@ -236,7 +236,14 @@
Remarks

Toplevels can be modally executing views, and they return control - to the caller when the "Running" property is set to false. + to the caller when the "Running" property is set to false, or + by calling Terminal.Gui.Application.RequestStop()

+

+ There will be a toplevel created for you on the first time use + and can be accessed from the property Top, + but new toplevels can be created and ran on top of it. To run, create the + toplevel and then invoke Run() with the + new toplevel.

Constructors

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.html b/docs/api/Terminal.Gui/Terminal.Gui.View.html index e7e2c1fee..ad8e5d019 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.View.html @@ -92,6 +92,7 @@ +
Inherited Members
diff --git a/docs/api/toc.html b/docs/api/toc.html index ce1701682..4bca1773c 100644 --- a/docs/api/toc.html +++ b/docs/api/toc.html @@ -121,6 +121,9 @@
  • Dialog
  • +
  • + FileDialog +
  • FrameView
  • @@ -157,6 +160,9 @@
  • MouseFlags
  • +
  • + OpenDialog +
  • Point
  • @@ -172,6 +178,9 @@
  • Responder
  • +
  • + SaveDialog +
  • ScrollBarView
  • @@ -190,6 +199,9 @@
  • TextField
  • +
  • + TextView +
  • Toplevel
  • diff --git a/docs/manifest.json b/docs/manifest.json index 86a5170a3..185ab018b 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1 +1 @@ -{"homepages":[],"source_base_path":"/cvs/gui.cs/docfx","xrefmap":"xrefmap.yml","files":[{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Color.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Color.html","hash":"85hkUEzd69fFj5+qNKiT1g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Label.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Label.html","hash":"tJNRVOYJfQqH8GIQdA9+OQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseFlags.html","hash":"cDzZV9Fx1k/ddXExyYB8Fg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextAlignment.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextAlignment.html","hash":"VCohI9t1lob2fztxD5ZXcQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Button.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Button.html","hash":"SWhXcVIyYknh+WNwb1+/QQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ColorScheme.html","hash":"1ClzHoep8DR+75SAfZjD4Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Key.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Key.html","hash":"+EX00d7DyqfA4TD/QdSOaw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MouseFlags.html","hash":"NRuoTlDQ42lWQzMeiemAyQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Point.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Point.html","hash":"0wTvcjfDG3By7XHJve5K0g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MessageBox.html","hash":"TkA8vVP53rdJywM5H6N5tg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollView.html","hash":"oBGxCR2zRE3o1K6u9apaTg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal.yml","output":{".html":{"relative_path":"api/Mono.Terminal.html","hash":"0y5WjjosS5xihjT3gYuMEg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Attribute.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Attribute.html","hash":"3VQuiTvkwZuhrXRBU2slvA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Dialog.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Dialog.html","hash":"2ylkGO6zSUi/FT45G2Kn5A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.SpecialChar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.SpecialChar.html","hash":"i1mFE0BbShjxPO1/uorOKQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui.yml","output":{".html":{"relative_path":"api/Terminal.Gui.html","hash":"GfSihR55SNtYsYvPrrmW6g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CheckBox.html","hash":"bNlFx/QhKQXyWQEyiuvMqQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.KeyEvent.html","hash":"H50MHJqCV7rQBETqFufJiw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.RadioGroup.html","hash":"zwoFctZNjvwMklMZpPs1EQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Window.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Window.html","hash":"ItBexMcHWDaV1yCleTabOw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Label.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Label.html","hash":"6SW1CfyZg4hP6LYyuiiLlg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.RadioGroup.html","hash":"BB98PNaATwT1P6nuHlQHrQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Toplevel.html","hash":"XxR40u9mNhUwt+i9wV3tMw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml","output":{".html":{"relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html","hash":"7UhnDvlJfJ7tMAIEGi3BHQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Colors.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Colors.html","hash":"jVPODiXx92oOFHZgYp3TbA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBarItem.html","hash":"MLpuOjtsqxDsyuaLJfU28Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MessageBox.html","hash":"Wn6KkyjE8pNYfKOXzZV0Iw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Size.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Size.html","hash":"uQO7B2czEXvwl283AWce/Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Application.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Application.html","hash":"MJwli173nQcGFddbKWCh+g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Clipboard.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Clipboard.html","hash":"oQtu24OqI0zAeeEtLEC3nw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html","hash":"pkGLVh/sskWBajHCd3dXdA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBarItem.html","hash":"rTwo4kYP1ag7+t0B8vtA9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.RunState.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.RunState.html","hash":"Wr45dWdROck+mzcRWU+Xhw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Button.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Button.html","hash":"VESOJmXXJ9prNN5hKxfcNw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Key.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Key.html","hash":"sGONwq1ubcfwvIMQPLx8OA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Point.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Point.html","hash":"yOdvSmSegO4HtL9S0NXmAw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextField.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextField.html","hash":"PG21wfF6w3WeOn5/F4r0Og=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Dialog.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Dialog.html","hash":"wZvXb7348cJ0H/652WgSpQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.KeyEvent.html","hash":"RFZsF2/17jsdv/neuaJ0tg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ProgressBar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ProgressBar.html","hash":"Keu3x8Ef0wlqeIKcslXMVQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.TextAlignment.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextAlignment.html","hash":"0WRZZIAjiDvLCkr+/Zr44Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuItem.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuItem.html","hash":"yiZyXChdjEP/2ztT/yLMzQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Window.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Window.html","hash":"yx87lSfInQ9CTNuo/7vRGA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ColorScheme.html","hash":"jLksqjNAv5NP/Lzs+w0orA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBar.html","hash":"BYq8R+tNwkE1cm0tao3JNw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Rect.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Rect.html","hash":"anP+C2o7gvnZXLG5vbMg9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Toplevel.html","hash":"ZaZkpR6gBBPF5MiM0whB4g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.FrameView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.FrameView.html","hash":"3CI0X4urLx3N+9b10V5zHw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.TextField.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextField.html","hash":"/aAavG7m+yETkM8BPQQtdQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.yml","output":{".html":{"relative_path":"api/Terminal.html","hash":"tFVRBtIAuwnTBjsSB3aeCw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ConsoleDriver.html","hash":"zYFZ8UpIDDapoy6co0/5Kw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuItem.html","hash":"04liHi2Olqjby/8vkUCYZw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ScrollView.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ScrollView.html","hash":"ZRd9UaOkENOXRtYPGmSJqg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Application.RunState.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Application.RunState.html","hash":"I+XmteF4oNU7Xi+GVWmHqg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.CheckBox.html","hash":"kMHwO0mGXsZG1FEg1jg8jw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Colors.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Colors.html","hash":"9fZOKjYk4B6QSQwNg1OuQg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBar.html","hash":"+vNGrp+VV2GZEugZ8zOn5A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Responder.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Responder.html","hash":"PHxnw47eii0QnBHxgA2X5Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollBarView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollBarView.html","hash":"hB5ahz75rHn7nZfdB34LQQ=="}},"is_incremental":false,"version":""},{"type":"Toc","source_relative_path":"api/toc.yml","output":{".html":{"relative_path":"api/toc.html","hash":"LwMrlKXRFhG/JCxWsKVPsQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.html","hash":"wmqIY3h9ul8VxGLlZ3Nbvw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CursesDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CursesDriver.html","hash":"kqLZ+gut4HqwdfZMrBSwvQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseEvent.html","hash":"tWBrDmGanq6Qsj86XzS8PA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.SpecialChar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.SpecialChar.html","hash":"oyaYen6dExP+Yje8h+D1yQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Attribute.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Attribute.html","hash":"dsOlZlzf10Ib6qwDgmCEKQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Color.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Color.html","hash":"lDjWo7u8AtVHR4wSVrYp9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.IListDataSource.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.IListDataSource.html","hash":"Xfn/6Vl1b8NMvPm84nHBxA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MouseEvent.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MouseEvent.html","hash":"TtIW0+KNQ+DxrIyYnGpJyQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Size.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Size.html","hash":"qfcO9/VhcMA9NALvZ/77gA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.View.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.View.html","hash":"BFeKPmJ2M14eeldSDIWscQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.yml","output":{".html":{"relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.html","hash":"IpG8ggzItOCqcxpTYpPZeA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Responder.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Responder.html","hash":"DJWHT+iWnN2wV1qbzFu1pw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.View.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.View.html","hash":"M01c4HbOagtD5MYiEutIeA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ListView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ListView.html","hash":"/NkEeO3Fb7hkI98KH6iyKA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Rect.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Rect.html","hash":"UbrMVw16YFF223fCoch2Xg=="}},"is_incremental":false,"version":""}],"version_info":{}} \ No newline at end of file +{"homepages":[],"source_base_path":"/cvs/gui.cs/docfx","xrefmap":"xrefmap.yml","files":[{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal.yml","output":{".html":{"relative_path":"api/Mono.Terminal.html","hash":"0y5WjjosS5xihjT3gYuMEg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Colors.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Colors.html","hash":"jVPODiXx92oOFHZgYp3TbA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Label.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Label.html","hash":"tJNRVOYJfQqH8GIQdA9+OQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Responder.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Responder.html","hash":"DJWHT+iWnN2wV1qbzFu1pw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Window.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Window.html","hash":"ItBexMcHWDaV1yCleTabOw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Clipboard.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Clipboard.html","hash":"oQtu24OqI0zAeeEtLEC3nw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.FrameView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.FrameView.html","hash":"3CI0X4urLx3N+9b10V5zHw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MessageBox.html","hash":"TkA8vVP53rdJywM5H6N5tg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Responder.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Responder.html","hash":"PHxnw47eii0QnBHxgA2X5Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Color.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Color.html","hash":"lDjWo7u8AtVHR4wSVrYp9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Key.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Key.html","hash":"2tsQD4qIAriuovLyT3ZhpQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.TextField.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextField.html","hash":"/aAavG7m+yETkM8BPQQtdQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.TextView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextView.html","hash":"PChbXayZNSe2MepSnXQS7Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml","output":{".html":{"relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html","hash":"7UhnDvlJfJ7tMAIEGi3BHQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CursesDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CursesDriver.html","hash":"kqLZ+gut4HqwdfZMrBSwvQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseFlags.html","hash":"cDzZV9Fx1k/ddXExyYB8Fg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.SpecialChar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.SpecialChar.html","hash":"oyaYen6dExP+Yje8h+D1yQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Attribute.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Attribute.html","hash":"dsOlZlzf10Ib6qwDgmCEKQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Dialog.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Dialog.html","hash":"VAHLg2USlrDSU7ko6f6HVg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBarItem.html","hash":"rTwo4kYP1ag7+t0B8vtA9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.yml","output":{".html":{"relative_path":"api/Terminal.html","hash":"tFVRBtIAuwnTBjsSB3aeCw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ConsoleDriver.html","hash":"zYFZ8UpIDDapoy6co0/5Kw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MessageBox.html","hash":"Wn6KkyjE8pNYfKOXzZV0Iw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Toplevel.html","hash":"ZaZkpR6gBBPF5MiM0whB4g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ColorScheme.html","hash":"1ClzHoep8DR+75SAfZjD4Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.KeyEvent.html","hash":"RFZsF2/17jsdv/neuaJ0tg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.OpenDialog.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.OpenDialog.html","hash":"c1+bz6m94FMIYLfj/m7/XA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.TextAlignment.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextAlignment.html","hash":"0WRZZIAjiDvLCkr+/Zr44Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.yml","output":{".html":{"relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.html","hash":"ESk8tQCQD0Vz8iMJwxEO/g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MouseFlags.html","hash":"NRuoTlDQ42lWQzMeiemAyQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Size.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Size.html","hash":"qfcO9/VhcMA9NALvZ/77gA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.SpecialChar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.SpecialChar.html","hash":"i1mFE0BbShjxPO1/uorOKQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Attribute.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Attribute.html","hash":"3VQuiTvkwZuhrXRBU2slvA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Dialog.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Dialog.html","hash":"2ylkGO6zSUi/FT45G2Kn5A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuItem.html","hash":"04liHi2Olqjby/8vkUCYZw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ScrollView.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ScrollView.html","hash":"ZRd9UaOkENOXRtYPGmSJqg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Application.RunState.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Application.RunState.html","hash":"vANT1qycch/+SAXgcAjlxg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Application.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Application.html","hash":"v9fnZuOx4U2OUbsZ7F77Vw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.SaveDialog.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.SaveDialog.html","hash":"N3y0wLmLHW9Xshm+XaAi/g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui.yml","output":{".html":{"relative_path":"api/Terminal.Gui.html","hash":"PePOgEqWs+eSHTg6jkcFrQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Color.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Color.html","hash":"85hkUEzd69fFj5+qNKiT1g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.KeyEvent.html","hash":"H50MHJqCV7rQBETqFufJiw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Point.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Point.html","hash":"yOdvSmSegO4HtL9S0NXmAw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextAlignment.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextAlignment.html","hash":"VCohI9t1lob2fztxD5ZXcQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.CheckBox.html","hash":"kMHwO0mGXsZG1FEg1jg8jw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.IListDataSource.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.IListDataSource.html","hash":"Xfn/6Vl1b8NMvPm84nHBxA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MouseEvent.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MouseEvent.html","hash":"TtIW0+KNQ+DxrIyYnGpJyQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Key.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Key.html","hash":"sGONwq1ubcfwvIMQPLx8OA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseEvent.html","hash":"tWBrDmGanq6Qsj86XzS8PA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollBarView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollBarView.html","hash":"hB5ahz75rHn7nZfdB34LQQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ScrollView.html","hash":"oBGxCR2zRE3o1K6u9apaTg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.html","hash":"wmqIY3h9ul8VxGLlZ3Nbvw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ColorScheme.html","hash":"jLksqjNAv5NP/Lzs+w0orA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBarItem.html","hash":"MLpuOjtsqxDsyuaLJfU28Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Rect.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Rect.html","hash":"anP+C2o7gvnZXLG5vbMg9A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.View.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.View.html","hash":"M01c4HbOagtD5MYiEutIeA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CheckBox.html","hash":"bNlFx/QhKQXyWQEyiuvMqQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBar.html","hash":"BYq8R+tNwkE1cm0tao3JNw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.RadioGroup.html","hash":"zwoFctZNjvwMklMZpPs1EQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextField.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextField.html","hash":"PG21wfF6w3WeOn5/F4r0Og=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Colors.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Colors.html","hash":"9fZOKjYk4B6QSQwNg1OuQg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Label.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Label.html","hash":"6SW1CfyZg4hP6LYyuiiLlg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Point.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Point.html","hash":"0wTvcjfDG3By7XHJve5K0g=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html","hash":"ZnKzXVG/Bf/ITHIJt97WuQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ListView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ListView.html","hash":"/NkEeO3Fb7hkI98KH6iyKA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBar.html","hash":"+vNGrp+VV2GZEugZ8zOn5A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Toplevel.html","hash":"ZBdOXMC7uXo/aLpztCNQWw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.View.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.View.html","hash":"Wub3NTRM7R0OiYe7H1H9XA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.RunState.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.RunState.html","hash":"Wr45dWdROck+mzcRWU+Xhw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Button.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Button.html","hash":"VESOJmXXJ9prNN5hKxfcNw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.ProgressBar.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ProgressBar.html","hash":"Keu3x8Ef0wlqeIKcslXMVQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Window.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Window.html","hash":"yx87lSfInQ9CTNuo/7vRGA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Size.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Size.html","hash":"uQO7B2czEXvwl283AWce/Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Button.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Button.html","hash":"mtM9oXmLlJ88PWPVrLhPWQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.FileDialog.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.FileDialog.html","hash":"nSdi745bEU0ylXbzoV58qQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.MenuItem.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuItem.html","hash":"yiZyXChdjEP/2ztT/yLMzQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.RadioGroup.html","hash":"BJLY15uW4vtKK1YJkzyTdw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.Gui/Terminal.Gui.Rect.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Rect.html","hash":"UbrMVw16YFF223fCoch2Xg=="}},"is_incremental":false,"version":""},{"type":"Toc","source_relative_path":"api/toc.yml","output":{".html":{"relative_path":"api/toc.html","hash":"3vgJPH7tqokxEcHMjhJyhA=="}},"is_incremental":false,"version":""}],"version_info":{}} \ No newline at end of file diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index 17b5d49d9..2e3fd2357 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -16,6 +16,11 @@ references: href: api/Mono.Terminal/Mono.Terminal.MainLoop.html#Mono_Terminal_MainLoop__ctor fullName: MainLoop.MainLoop() nameWithType: MainLoop.MainLoop() +- uid: Mono.Terminal.MainLoop.#ctor(System.Boolean) + name: MainLoop(Boolean) + href: api/Mono.Terminal/Mono.Terminal.MainLoop.html#Mono_Terminal_MainLoop__ctor_System_Boolean_ + fullName: MainLoop.MainLoop(Boolean) + nameWithType: MainLoop.MainLoop(Boolean) - uid: Mono.Terminal.MainLoop.#ctor* name: MainLoop href: api/Mono.Terminal/Mono.Terminal.MainLoop.html#Mono_Terminal_MainLoop__ctor_ @@ -166,6 +171,11 @@ references: href: api/Mono.Terminal/Mono.Terminal.MainLoop.html#Mono_Terminal_MainLoop_Stop_ fullName: MainLoop.Stop nameWithType: MainLoop.Stop +- uid: Mono.Terminal.MainLoop.WindowsKeyPressed + name: WindowsKeyPressed + href: api/Mono.Terminal/Mono.Terminal.MainLoop.html#Mono_Terminal_MainLoop_WindowsKeyPressed + fullName: MainLoop.WindowsKeyPressed + nameWithType: MainLoop.WindowsKeyPressed - uid: Terminal name: Terminal href: api/Terminal.html @@ -1401,6 +1411,26 @@ references: href: api/Terminal.Gui/Terminal.Gui.Button.html fullName: Terminal.Gui.Button nameWithType: Button +- uid: Terminal.Gui.Button.#ctor(NStack.ustring) + name: Button(ustring) + href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_NStack_ustring_ + fullName: Button.Button(ustring) + nameWithType: Button.Button(ustring) +- uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean) + name: Button(ustring, Boolean) + href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_NStack_ustring_System_Boolean_ + fullName: Button.Button(ustring, Boolean) + nameWithType: Button.Button(ustring, Boolean) +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring) + name: Button(Int32, Int32, ustring) + href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_System_Int32_System_Int32_NStack_ustring_ + fullName: Button.Button(Int32, Int32, ustring) + nameWithType: Button.Button(Int32, Int32, ustring) +- uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean) + name: Button(Int32, Int32, ustring, Boolean) + href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_System_Int32_System_Int32_NStack_ustring_System_Boolean_ + fullName: Button.Button(Int32, Int32, ustring, Boolean) + nameWithType: Button.Button(Int32, Int32, ustring, Boolean) - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,System.String) name: Button(Int32, Int32, String) href: api/Terminal.Gui/Terminal.Gui.Button.html#Terminal_Gui_Button__ctor_System_Int32_System_Int32_System_String_ @@ -2061,6 +2091,26 @@ references: href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UncookMouse_ fullName: ConsoleDriver.UncookMouse nameWithType: ConsoleDriver.UncookMouse +- uid: Terminal.Gui.ConsoleDriver.UpdateCursor + name: UpdateCursor() + href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateCursor + fullName: ConsoleDriver.UpdateCursor() + nameWithType: ConsoleDriver.UpdateCursor() +- uid: Terminal.Gui.ConsoleDriver.UpdateCursor* + name: UpdateCursor + href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateCursor_ + fullName: ConsoleDriver.UpdateCursor + nameWithType: ConsoleDriver.UpdateCursor +- uid: Terminal.Gui.ConsoleDriver.UpdateScreen + name: UpdateScreen() + href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateScreen + fullName: ConsoleDriver.UpdateScreen() + nameWithType: ConsoleDriver.UpdateScreen() +- uid: Terminal.Gui.ConsoleDriver.UpdateScreen* + name: UpdateScreen + href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_UpdateScreen_ + fullName: ConsoleDriver.UpdateScreen + nameWithType: ConsoleDriver.UpdateScreen - uid: Terminal.Gui.ConsoleDriver.URCorner name: URCorner href: api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_URCorner @@ -2076,6 +2126,11 @@ references: href: api/Terminal.Gui/Terminal.Gui.Dialog.html fullName: Terminal.Gui.Dialog nameWithType: Dialog +- uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[]) + name: Dialog(ustring, Int32, Int32, Button[]) + href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor_NStack_ustring_System_Int32_System_Int32_Terminal_Gui_Button___ + fullName: Dialog.Dialog(ustring, Int32, Int32, Button[]) + nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[]) - uid: Terminal.Gui.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Gui.Button[]) name: Dialog(String, Int32, Int32, Button[]) href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog__ctor_System_String_System_Int32_System_Int32_Terminal_Gui_Button___ @@ -2116,6 +2171,111 @@ references: href: api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_ProcessKey_ fullName: Dialog.ProcessKey nameWithType: Dialog.ProcessKey +- uid: Terminal.Gui.FileDialog + name: FileDialog + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html + fullName: Terminal.Gui.FileDialog + nameWithType: FileDialog +- uid: Terminal.Gui.FileDialog.#ctor(NStack.ustring,NStack.ustring,NStack.ustring,NStack.ustring) + name: FileDialog(ustring, ustring, ustring, ustring) + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_NStack_ustring_NStack_ustring_NStack_ustring_NStack_ustring_ + fullName: FileDialog.FileDialog(ustring, ustring, ustring, ustring) + nameWithType: FileDialog.FileDialog(ustring, ustring, ustring, ustring) +- uid: Terminal.Gui.FileDialog.#ctor* + name: FileDialog + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog__ctor_ + fullName: FileDialog.FileDialog + nameWithType: FileDialog.FileDialog +- uid: Terminal.Gui.FileDialog.AllowedFileTypes + name: AllowedFileTypes + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowedFileTypes + fullName: FileDialog.AllowedFileTypes + nameWithType: FileDialog.AllowedFileTypes +- uid: Terminal.Gui.FileDialog.AllowedFileTypes* + name: AllowedFileTypes + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowedFileTypes_ + fullName: FileDialog.AllowedFileTypes + nameWithType: FileDialog.AllowedFileTypes +- uid: Terminal.Gui.FileDialog.AllowsOtherFileTypes + name: AllowsOtherFileTypes + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowsOtherFileTypes + fullName: FileDialog.AllowsOtherFileTypes + nameWithType: FileDialog.AllowsOtherFileTypes +- uid: Terminal.Gui.FileDialog.AllowsOtherFileTypes* + name: AllowsOtherFileTypes + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_AllowsOtherFileTypes_ + fullName: FileDialog.AllowsOtherFileTypes + nameWithType: FileDialog.AllowsOtherFileTypes +- uid: Terminal.Gui.FileDialog.CanCreateDirectories + name: CanCreateDirectories + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_CanCreateDirectories + fullName: FileDialog.CanCreateDirectories + nameWithType: FileDialog.CanCreateDirectories +- uid: Terminal.Gui.FileDialog.CanCreateDirectories* + name: CanCreateDirectories + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_CanCreateDirectories_ + fullName: FileDialog.CanCreateDirectories + nameWithType: FileDialog.CanCreateDirectories +- uid: Terminal.Gui.FileDialog.DirectoryPath + name: DirectoryPath + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_DirectoryPath + fullName: FileDialog.DirectoryPath + nameWithType: FileDialog.DirectoryPath +- uid: Terminal.Gui.FileDialog.DirectoryPath* + name: DirectoryPath + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_DirectoryPath_ + fullName: FileDialog.DirectoryPath + nameWithType: FileDialog.DirectoryPath +- uid: Terminal.Gui.FileDialog.FilePath + name: FilePath + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_FilePath + fullName: FileDialog.FilePath + nameWithType: FileDialog.FilePath +- uid: Terminal.Gui.FileDialog.FilePath* + name: FilePath + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_FilePath_ + fullName: FileDialog.FilePath + nameWithType: FileDialog.FilePath +- uid: Terminal.Gui.FileDialog.IsExtensionHidden + name: IsExtensionHidden + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_IsExtensionHidden + fullName: FileDialog.IsExtensionHidden + nameWithType: FileDialog.IsExtensionHidden +- uid: Terminal.Gui.FileDialog.IsExtensionHidden* + name: IsExtensionHidden + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_IsExtensionHidden_ + fullName: FileDialog.IsExtensionHidden + nameWithType: FileDialog.IsExtensionHidden +- uid: Terminal.Gui.FileDialog.Message + name: Message + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Message + fullName: FileDialog.Message + nameWithType: FileDialog.Message +- uid: Terminal.Gui.FileDialog.Message* + name: Message + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Message_ + fullName: FileDialog.Message + nameWithType: FileDialog.Message +- uid: Terminal.Gui.FileDialog.NameFieldLabel + name: NameFieldLabel + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameFieldLabel + fullName: FileDialog.NameFieldLabel + nameWithType: FileDialog.NameFieldLabel +- uid: Terminal.Gui.FileDialog.NameFieldLabel* + name: NameFieldLabel + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_NameFieldLabel_ + fullName: FileDialog.NameFieldLabel + nameWithType: FileDialog.NameFieldLabel +- uid: Terminal.Gui.FileDialog.Prompt + name: Prompt + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Prompt + fullName: FileDialog.Prompt + nameWithType: FileDialog.Prompt +- uid: Terminal.Gui.FileDialog.Prompt* + name: Prompt + href: api/Terminal.Gui/Terminal.Gui.FileDialog.html#Terminal_Gui_FileDialog_Prompt_ + fullName: FileDialog.Prompt + nameWithType: FileDialog.Prompt - uid: Terminal.Gui.FrameView name: FrameView href: api/Terminal.Gui/Terminal.Gui.FrameView.html @@ -2336,6 +2496,11 @@ references: href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_ControlS fullName: Key.ControlS nameWithType: Key.ControlS +- uid: Terminal.Gui.Key.ControlSpace + name: ControlSpace + href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_ControlSpace + fullName: Key.ControlSpace + nameWithType: Key.ControlSpace - uid: Terminal.Gui.Key.ControlT name: ControlT href: api/Terminal.Gui/Terminal.Gui.Key.html#Terminal_Gui_Key_ControlT @@ -3121,6 +3286,61 @@ references: href: api/Terminal.Gui/Terminal.Gui.MouseFlags.html#Terminal_Gui_MouseFlags_ReportMousePosition fullName: MouseFlags.ReportMousePosition nameWithType: MouseFlags.ReportMousePosition +- uid: Terminal.Gui.OpenDialog + name: OpenDialog + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html + fullName: Terminal.Gui.OpenDialog + nameWithType: OpenDialog +- uid: Terminal.Gui.OpenDialog.#ctor(NStack.ustring,NStack.ustring) + name: OpenDialog(ustring, ustring) + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog__ctor_NStack_ustring_NStack_ustring_ + fullName: OpenDialog.OpenDialog(ustring, ustring) + nameWithType: OpenDialog.OpenDialog(ustring, ustring) +- uid: Terminal.Gui.OpenDialog.#ctor* + name: OpenDialog + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog__ctor_ + fullName: OpenDialog.OpenDialog + nameWithType: OpenDialog.OpenDialog +- uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection + name: AllowsMultipleSelection + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_AllowsMultipleSelection + fullName: OpenDialog.AllowsMultipleSelection + nameWithType: OpenDialog.AllowsMultipleSelection +- uid: Terminal.Gui.OpenDialog.AllowsMultipleSelection* + name: AllowsMultipleSelection + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_AllowsMultipleSelection_ + fullName: OpenDialog.AllowsMultipleSelection + nameWithType: OpenDialog.AllowsMultipleSelection +- uid: Terminal.Gui.OpenDialog.CanChooseDirectories + name: CanChooseDirectories + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseDirectories + fullName: OpenDialog.CanChooseDirectories + nameWithType: OpenDialog.CanChooseDirectories +- uid: Terminal.Gui.OpenDialog.CanChooseDirectories* + name: CanChooseDirectories + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseDirectories_ + fullName: OpenDialog.CanChooseDirectories + nameWithType: OpenDialog.CanChooseDirectories +- uid: Terminal.Gui.OpenDialog.CanChooseFiles + name: CanChooseFiles + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseFiles + fullName: OpenDialog.CanChooseFiles + nameWithType: OpenDialog.CanChooseFiles +- uid: Terminal.Gui.OpenDialog.CanChooseFiles* + name: CanChooseFiles + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_CanChooseFiles_ + fullName: OpenDialog.CanChooseFiles + nameWithType: OpenDialog.CanChooseFiles +- uid: Terminal.Gui.OpenDialog.FilePaths + name: FilePaths + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_FilePaths + fullName: OpenDialog.FilePaths + nameWithType: OpenDialog.FilePaths +- uid: Terminal.Gui.OpenDialog.FilePaths* + name: FilePaths + href: api/Terminal.Gui/Terminal.Gui.OpenDialog.html#Terminal_Gui_OpenDialog_FilePaths_ + fullName: OpenDialog.FilePaths + nameWithType: OpenDialog.FilePaths - uid: Terminal.Gui.Point name: Point href: api/Terminal.Gui/Terminal.Gui.Point.html @@ -3366,6 +3586,16 @@ references: href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_PositionCursor_ fullName: RadioGroup.PositionCursor nameWithType: RadioGroup.PositionCursor +- uid: Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent) + name: ProcessColdKey(KeyEvent) + href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessColdKey_Terminal_Gui_KeyEvent_ + fullName: RadioGroup.ProcessColdKey(KeyEvent) + nameWithType: RadioGroup.ProcessColdKey(KeyEvent) +- uid: Terminal.Gui.RadioGroup.ProcessColdKey* + name: ProcessColdKey + href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessColdKey_ + fullName: RadioGroup.ProcessColdKey + nameWithType: RadioGroup.ProcessColdKey - uid: Terminal.Gui.RadioGroup.ProcessHotKey(Terminal.Gui.KeyEvent) name: ProcessHotKey(KeyEvent) href: api/Terminal.Gui/Terminal.Gui.RadioGroup.html#Terminal_Gui_RadioGroup_ProcessHotKey_Terminal_Gui_KeyEvent_ @@ -3761,6 +3991,21 @@ references: href: api/Terminal.Gui/Terminal.Gui.Responder.html#Terminal_Gui_Responder_ProcessKey_ fullName: Responder.ProcessKey nameWithType: Responder.ProcessKey +- uid: Terminal.Gui.SaveDialog + name: SaveDialog + href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html + fullName: Terminal.Gui.SaveDialog + nameWithType: SaveDialog +- uid: Terminal.Gui.SaveDialog.#ctor(NStack.ustring,NStack.ustring) + name: SaveDialog(ustring, ustring) + href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog__ctor_NStack_ustring_NStack_ustring_ + fullName: SaveDialog.SaveDialog(ustring, ustring) + nameWithType: SaveDialog.SaveDialog(ustring, ustring) +- uid: Terminal.Gui.SaveDialog.#ctor* + name: SaveDialog + href: api/Terminal.Gui/Terminal.Gui.SaveDialog.html#Terminal_Gui_SaveDialog__ctor_ + fullName: SaveDialog.SaveDialog + nameWithType: SaveDialog.SaveDialog - uid: Terminal.Gui.ScrollBarView name: ScrollBarView href: api/Terminal.Gui/Terminal.Gui.ScrollBarView.html @@ -4306,6 +4551,111 @@ references: href: api/Terminal.Gui/Terminal.Gui.TextField.html#Terminal_Gui_TextField_Text_ fullName: TextField.Text nameWithType: TextField.Text +- uid: Terminal.Gui.TextView + name: TextView + href: api/Terminal.Gui/Terminal.Gui.TextView.html + fullName: Terminal.Gui.TextView + nameWithType: TextView +- uid: Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect) + name: TextView(Rect) + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView__ctor_Terminal_Gui_Rect_ + fullName: TextView.TextView(Rect) + nameWithType: TextView.TextView(Rect) +- uid: Terminal.Gui.TextView.#ctor* + name: TextView + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView__ctor_ + fullName: TextView.TextView + nameWithType: TextView.TextView +- uid: Terminal.Gui.TextView.CanFocus + name: CanFocus + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CanFocus + fullName: TextView.CanFocus + nameWithType: TextView.CanFocus +- uid: Terminal.Gui.TextView.CanFocus* + name: CanFocus + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CanFocus_ + fullName: TextView.CanFocus + nameWithType: TextView.CanFocus +- uid: Terminal.Gui.TextView.ClearRegion + name: ClearRegion() + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ClearRegion + fullName: TextView.ClearRegion() + nameWithType: TextView.ClearRegion() +- uid: Terminal.Gui.TextView.ClearRegion* + name: ClearRegion + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ClearRegion_ + fullName: TextView.ClearRegion + nameWithType: TextView.ClearRegion +- uid: Terminal.Gui.TextView.CurrentColumn + name: CurrentColumn + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentColumn + fullName: TextView.CurrentColumn + nameWithType: TextView.CurrentColumn +- uid: Terminal.Gui.TextView.CurrentColumn* + name: CurrentColumn + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentColumn_ + fullName: TextView.CurrentColumn + nameWithType: TextView.CurrentColumn +- uid: Terminal.Gui.TextView.CurrentRow + name: CurrentRow + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentRow + fullName: TextView.CurrentRow + nameWithType: TextView.CurrentRow +- uid: Terminal.Gui.TextView.CurrentRow* + name: CurrentRow + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentRow_ + fullName: TextView.CurrentRow + nameWithType: TextView.CurrentRow +- uid: Terminal.Gui.TextView.GetRegion + name: GetRegion() + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetRegion + fullName: TextView.GetRegion() + nameWithType: TextView.GetRegion() +- uid: Terminal.Gui.TextView.GetRegion* + name: GetRegion + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_GetRegion_ + fullName: TextView.GetRegion + nameWithType: TextView.GetRegion +- uid: Terminal.Gui.TextView.PositionCursor + name: PositionCursor() + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_PositionCursor + fullName: TextView.PositionCursor() + nameWithType: TextView.PositionCursor() +- uid: Terminal.Gui.TextView.PositionCursor* + name: PositionCursor + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_PositionCursor_ + fullName: TextView.PositionCursor + nameWithType: TextView.PositionCursor +- uid: Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent) + name: ProcessKey(KeyEvent) + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ProcessKey_Terminal_Gui_KeyEvent_ + fullName: TextView.ProcessKey(KeyEvent) + nameWithType: TextView.ProcessKey(KeyEvent) +- uid: Terminal.Gui.TextView.ProcessKey* + name: ProcessKey + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_ProcessKey_ + fullName: TextView.ProcessKey + nameWithType: TextView.ProcessKey +- uid: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect) + name: Redraw(Rect) + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Redraw_Terminal_Gui_Rect_ + fullName: TextView.Redraw(Rect) + nameWithType: TextView.Redraw(Rect) +- uid: Terminal.Gui.TextView.Redraw* + name: Redraw + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Redraw_ + fullName: TextView.Redraw + nameWithType: TextView.Redraw +- uid: Terminal.Gui.TextView.Text + name: Text + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Text + fullName: TextView.Text + nameWithType: TextView.Text +- uid: Terminal.Gui.TextView.Text* + name: Text + href: api/Terminal.Gui/Terminal.Gui.TextView.html#Terminal_Gui_TextView_Text_ + fullName: TextView.Text + nameWithType: TextView.Text - uid: Terminal.Gui.Toplevel name: Toplevel href: api/Terminal.Gui/Terminal.Gui.Toplevel.html diff --git a/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml b/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml index 996450ad9..501739457 100644 --- a/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml +++ b/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -26,6 +27,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition @@ -42,6 +44,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition @@ -58,6 +61,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition @@ -74,6 +78,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition @@ -90,6 +95,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition @@ -106,6 +112,7 @@ Field 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop+Condition diff --git a/ecmadocs/en/Mono.Terminal/MainLoop.xml b/ecmadocs/en/Mono.Terminal/MainLoop.xml index a25a08a08..a2474c2be 100644 --- a/ecmadocs/en/Mono.Terminal/MainLoop.xml +++ b/ecmadocs/en/Mono.Terminal/MainLoop.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -26,6 +27,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -35,12 +37,29 @@ To be added. + + + + Constructor + + 1.0.0.0 + + + + + + To be added. + To be added. + To be added. + + Method 0.0.0.0 + 1.0.0.0 System.Func<System.Boolean> @@ -63,6 +82,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Object @@ -94,6 +114,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Object @@ -127,6 +148,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -153,6 +175,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -174,6 +197,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -197,6 +221,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -218,6 +243,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -241,6 +267,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -264,6 +291,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -282,6 +310,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -294,5 +323,22 @@ To be added. + + + + Field + + 1.0.0.0 + + + System.Action<System.ConsoleKeyInfo> + + + + This event is raised when a key is pressed when using the Windows driver. + + To be added. + + diff --git a/ecmadocs/en/Terminal.Gui/Application+RunState.xml b/ecmadocs/en/Terminal.Gui/Application+RunState.xml index 7d494dfa4..621174163 100644 --- a/ecmadocs/en/Terminal.Gui/Application+RunState.xml +++ b/ecmadocs/en/Terminal.Gui/Application+RunState.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -26,6 +27,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -43,11 +45,12 @@ - - + + Method 0.0.0.0 + 1.0.0.0 System.Void diff --git a/ecmadocs/en/Terminal.Gui/Application.xml b/ecmadocs/en/Terminal.Gui/Application.xml index 0dd13c41d..f645a53b3 100644 --- a/ecmadocs/en/Terminal.Gui/Application.xml +++ b/ecmadocs/en/Terminal.Gui/Application.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -35,6 +36,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -48,6 +50,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Application+RunState @@ -77,6 +80,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Toplevel @@ -95,6 +99,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ConsoleDriver @@ -107,11 +112,12 @@ - - + + Method 0.0.0.0 + 1.0.0.0 System.Void @@ -120,7 +126,7 @@ - To be added. + The runstate returned by the method. Building block API: completes the exection of a Toplevel that was started with Begin. @@ -133,6 +139,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -155,6 +162,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -173,6 +181,7 @@ Event 0.0.0.0 + 1.0.0.0 System.EventHandler @@ -192,6 +201,7 @@ Property 0.0.0.0 + 1.0.0.0 Mono.Terminal.MainLoop @@ -210,6 +220,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -232,6 +243,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -250,6 +262,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -268,6 +281,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Action<Terminal.Gui.MouseEvent> @@ -285,6 +299,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -303,6 +318,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -345,6 +361,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -371,6 +388,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Toplevel @@ -389,6 +407,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -407,6 +426,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/Attribute.xml b/ecmadocs/en/Terminal.Gui/Attribute.xml index 5fc2ff0f5..0f74b6aab 100644 --- a/ecmadocs/en/Terminal.Gui/Attribute.xml +++ b/ecmadocs/en/Terminal.Gui/Attribute.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -26,6 +27,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -44,6 +46,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute @@ -64,6 +67,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/Button.xml b/ecmadocs/en/Terminal.Gui/Button.xml index d3d047ce7..da2075cba 100644 --- a/ecmadocs/en/Terminal.Gui/Button.xml +++ b/ecmadocs/en/Terminal.Gui/Button.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -27,6 +28,28 @@ + + + + Constructor + + 1.0.0.0 + + + + + + The button's text + + Public constructor, creates a button based on + the given text at position 0,0 + + + The size of the button is computed based on the + text length. This button is not a default button. + + + @@ -49,6 +72,31 @@ + + + + Constructor + + 1.0.0.0 + + + + + + + The button's text + If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button + + Public constructor, creates a button based on + the given text. + + + If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button. + + + @@ -74,6 +122,32 @@ + + + + Constructor + + 1.0.0.0 + + + + + + + + X position where the button will be shown. + Y position where the button will be shown. + The button's text + + Public constructor, creates a button based on + the given text at the given position. + + + The size of the button is computed based on the + text length. This button is not a default button. + + + @@ -100,6 +174,35 @@ + + + + Constructor + + 1.0.0.0 + + + + + + + + + X position where the button will be shown. + Y position where the button will be shown. + The button's text + If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button + + Public constructor, creates a button based on + the given text at the given position. + + + If the value for is_default is true, a special + decoration is used, and the enter key on a + dialog would implicitly activate this button. + + + @@ -135,6 +238,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Action @@ -156,6 +260,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -175,6 +280,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -195,6 +301,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -211,6 +318,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -231,6 +339,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -251,6 +360,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -271,6 +381,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -290,6 +401,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/CheckBox.xml b/ecmadocs/en/Terminal.Gui/CheckBox.xml index 43f238826..55c1bde49 100644 --- a/ecmadocs/en/Terminal.Gui/CheckBox.xml +++ b/ecmadocs/en/Terminal.Gui/CheckBox.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -71,6 +73,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -124,6 +127,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -142,6 +146,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -162,6 +167,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -178,6 +184,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -198,6 +205,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -217,6 +225,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring @@ -235,6 +244,7 @@ Event 0.0.0.0 + 1.0.0.0 System.EventHandler diff --git a/ecmadocs/en/Terminal.Gui/Clipboard.xml b/ecmadocs/en/Terminal.Gui/Clipboard.xml index 125702bb0..096e53305 100644 --- a/ecmadocs/en/Terminal.Gui/Clipboard.xml +++ b/ecmadocs/en/Terminal.Gui/Clipboard.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -20,6 +21,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -33,6 +35,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/Color.xml b/ecmadocs/en/Terminal.Gui/Color.xml index ff59e14e8..9b54d8dd0 100644 --- a/ecmadocs/en/Terminal.Gui/Color.xml +++ b/ecmadocs/en/Terminal.Gui/Color.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -21,6 +22,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -37,6 +39,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -53,6 +56,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -69,6 +73,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -85,6 +90,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -101,6 +107,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -117,6 +124,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -133,6 +141,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -149,6 +158,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -165,6 +175,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -181,6 +192,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -197,6 +209,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -213,6 +226,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -229,6 +243,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -245,6 +260,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color @@ -261,6 +277,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Color diff --git a/ecmadocs/en/Terminal.Gui/ColorScheme.xml b/ecmadocs/en/Terminal.Gui/ColorScheme.xml index f6b8c5300..64f6e6761 100644 --- a/ecmadocs/en/Terminal.Gui/ColorScheme.xml +++ b/ecmadocs/en/Terminal.Gui/ColorScheme.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -24,6 +25,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -37,6 +39,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute @@ -54,6 +57,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute @@ -71,6 +75,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute @@ -88,6 +93,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute diff --git a/ecmadocs/en/Terminal.Gui/Colors.xml b/ecmadocs/en/Terminal.Gui/Colors.xml index d9cd27ef4..9068a8721 100644 --- a/ecmadocs/en/Terminal.Gui/Colors.xml +++ b/ecmadocs/en/Terminal.Gui/Colors.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -22,6 +23,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ColorScheme @@ -39,6 +41,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ColorScheme @@ -56,6 +59,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ColorScheme @@ -73,6 +77,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ColorScheme diff --git a/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml b/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml index 13b440abe..44e172118 100644 --- a/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml +++ b/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -53,6 +55,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -92,6 +95,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -131,6 +135,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -148,6 +153,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -166,6 +172,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -184,6 +191,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -202,6 +210,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -219,6 +228,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -244,6 +254,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -262,6 +273,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -279,6 +291,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -300,6 +313,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -317,6 +331,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -334,6 +349,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -351,6 +367,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -369,11 +386,12 @@ - - + + Method 0.0.0.0 + 1.0.0.0 System.Void @@ -385,8 +403,8 @@ To be added. - To be added. - To be added. + To be added. + To be added. To be added. To be added. @@ -413,6 +431,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -431,6 +450,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -448,6 +468,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -466,6 +487,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -487,6 +509,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -508,6 +531,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -532,6 +556,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -548,6 +573,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -565,6 +591,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -581,6 +608,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -599,6 +627,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -616,6 +645,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -633,6 +663,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -645,12 +676,49 @@ To be added. + + + + Method + + 1.0.0.0 + + + System.Void + + + + + Updates the location of the cursor position + + To be added. + + + + + + Method + + 1.0.0.0 + + + System.Void + + + + + Redraws the physical screen with the contents that have been queued up via any of the printing commands. + + To be added. + + Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -668,6 +736,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune diff --git a/ecmadocs/en/Terminal.Gui/Dialog.xml b/ecmadocs/en/Terminal.Gui/Dialog.xml index a88df4716..28c779fee 100644 --- a/ecmadocs/en/Terminal.Gui/Dialog.xml +++ b/ecmadocs/en/Terminal.Gui/Dialog.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.Window @@ -17,6 +18,36 @@ To be added. + + + + Constructor + + 1.0.0.0 + + + + + + + + + System.ParamArray + + + + + + Title for the dialog. + Width for the dialog. + Height for the dialog. + Optional buttons to lay out at the bottom of the dialog. + + Initializes a new instance of the class with an optional set of buttons to display + + To be added. + + @@ -53,6 +84,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -74,6 +106,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -90,6 +123,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/FrameView.xml b/ecmadocs/en/Terminal.Gui/FrameView.xml index 167b559d8..79b61b81b 100644 --- a/ecmadocs/en/Terminal.Gui/FrameView.xml +++ b/ecmadocs/en/Terminal.Gui/FrameView.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -43,6 +45,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -64,6 +67,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -83,6 +87,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -104,6 +109,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/IListDataSource.xml b/ecmadocs/en/Terminal.Gui/IListDataSource.xml index ef9707725..14ab90eaa 100644 --- a/ecmadocs/en/Terminal.Gui/IListDataSource.xml +++ b/ecmadocs/en/Terminal.Gui/IListDataSource.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 @@ -19,6 +20,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -37,6 +39,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -60,6 +63,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -92,6 +96,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void diff --git a/ecmadocs/en/Terminal.Gui/Key.xml b/ecmadocs/en/Terminal.Gui/Key.xml index 882fe7ea7..a5a648bb2 100644 --- a/ecmadocs/en/Terminal.Gui/Key.xml +++ b/ecmadocs/en/Terminal.Gui/Key.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -33,6 +34,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -50,6 +52,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -66,6 +69,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -82,12 +86,17 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key - To be added. + + Mask that indictes that this is a character value, values outside this range + indicate special characters like Alt-key combinations or special keys on the + keyboard like function keys, arrows keys and so on. + @@ -96,6 +105,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -112,6 +122,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -128,6 +139,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -144,6 +156,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -160,6 +173,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -176,6 +190,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -192,6 +207,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -208,6 +224,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -224,6 +241,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -240,6 +258,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -256,6 +275,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -272,6 +292,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -288,6 +309,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -304,6 +326,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -320,6 +343,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -336,6 +360,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -352,6 +377,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -368,6 +394,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -384,6 +411,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -394,12 +422,29 @@ + + + + Field + + 1.0.0.0 + + + Terminal.Gui.Key + + + + The key code for the user pressing Control-spacebar + + + Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -416,6 +461,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -432,6 +478,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -448,6 +495,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -464,6 +512,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -480,6 +529,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -496,6 +546,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -512,6 +563,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -528,6 +580,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -544,6 +597,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -560,6 +614,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -576,6 +631,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -592,6 +648,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -608,6 +665,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -624,6 +682,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -640,6 +699,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -656,6 +716,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -672,6 +733,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -688,6 +750,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -704,6 +767,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -720,6 +784,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -736,6 +801,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -752,6 +818,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -768,6 +835,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -784,6 +852,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -800,6 +869,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -816,6 +886,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -832,6 +903,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -848,6 +920,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -864,6 +937,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -880,6 +954,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -896,6 +971,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -913,6 +989,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -929,6 +1006,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key diff --git a/ecmadocs/en/Terminal.Gui/KeyEvent.xml b/ecmadocs/en/Terminal.Gui/KeyEvent.xml index 7f336174d..04e76a295 100644 --- a/ecmadocs/en/Terminal.Gui/KeyEvent.xml +++ b/ecmadocs/en/Terminal.Gui/KeyEvent.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -40,6 +42,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -59,6 +62,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -78,6 +82,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -95,6 +100,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/Label.xml b/ecmadocs/en/Terminal.Gui/Label.xml index ee33665cb..2db2af798 100644 --- a/ecmadocs/en/Terminal.Gui/Label.xml +++ b/ecmadocs/en/Terminal.Gui/Label.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -63,6 +65,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -110,6 +113,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 @@ -155,6 +159,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -174,6 +179,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring @@ -192,6 +198,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.TextAlignment @@ -210,6 +217,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Attribute diff --git a/ecmadocs/en/Terminal.Gui/ListView.xml b/ecmadocs/en/Terminal.Gui/ListView.xml index 9571b4727..97f1d72c4 100644 --- a/ecmadocs/en/Terminal.Gui/ListView.xml +++ b/ecmadocs/en/Terminal.Gui/ListView.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -43,6 +44,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -63,6 +65,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -83,6 +86,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -102,6 +106,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -122,6 +127,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -140,6 +146,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -163,6 +170,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -184,6 +192,7 @@ Event 0.0.0.0 + 1.0.0.0 System.Action @@ -201,6 +210,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -219,6 +229,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -241,6 +252,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.IListDataSource @@ -259,6 +271,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/MenuBar.xml b/ecmadocs/en/Terminal.Gui/MenuBar.xml index bf7a0556e..2b3e4d5f2 100644 --- a/ecmadocs/en/Terminal.Gui/MenuBar.xml +++ b/ecmadocs/en/Terminal.Gui/MenuBar.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -40,6 +42,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.MenuBarItem[] @@ -58,6 +61,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -78,6 +82,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -94,6 +99,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -114,6 +120,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -134,6 +141,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void diff --git a/ecmadocs/en/Terminal.Gui/MenuBarItem.xml b/ecmadocs/en/Terminal.Gui/MenuBarItem.xml index 216e5f0c3..f186feaee 100644 --- a/ecmadocs/en/Terminal.Gui/MenuBarItem.xml +++ b/ecmadocs/en/Terminal.Gui/MenuBarItem.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -40,6 +42,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.MenuItem[] @@ -58,6 +61,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/MenuItem.xml b/ecmadocs/en/Terminal.Gui/MenuItem.xml index a8c5c9818..2a51edc60 100644 --- a/ecmadocs/en/Terminal.Gui/MenuItem.xml +++ b/ecmadocs/en/Terminal.Gui/MenuItem.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -63,6 +65,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Action @@ -81,6 +84,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring @@ -99,6 +103,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Rune @@ -118,6 +123,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Key @@ -135,6 +141,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/MessageBox.xml b/ecmadocs/en/Terminal.Gui/MessageBox.xml index fb6c6470d..fc274800b 100644 --- a/ecmadocs/en/Terminal.Gui/MessageBox.xml +++ b/ecmadocs/en/Terminal.Gui/MessageBox.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -39,6 +40,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -52,6 +54,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 @@ -88,6 +91,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/MouseEvent.xml b/ecmadocs/en/Terminal.Gui/MouseEvent.xml index aa975eab7..328508a83 100644 --- a/ecmadocs/en/Terminal.Gui/MouseEvent.xml +++ b/ecmadocs/en/Terminal.Gui/MouseEvent.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -22,6 +23,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -39,6 +41,7 @@ Method 0.0.0.0 + 1.0.0.0 System.String @@ -58,6 +61,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 @@ -75,6 +79,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/MouseFlags.xml b/ecmadocs/en/Terminal.Gui/MouseFlags.xml index 1c652460e..a08ff9e22 100644 --- a/ecmadocs/en/Terminal.Gui/MouseFlags.xml +++ b/ecmadocs/en/Terminal.Gui/MouseFlags.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -28,6 +29,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -44,6 +46,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -60,6 +63,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -76,6 +80,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -92,6 +97,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -108,6 +114,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -124,6 +131,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -140,6 +148,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -156,6 +165,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -172,6 +182,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -188,6 +199,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -204,6 +216,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -220,6 +233,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -236,6 +250,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -252,6 +267,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -268,6 +284,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -284,6 +301,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -300,6 +318,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -316,6 +335,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -332,6 +352,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -348,6 +369,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -364,6 +386,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -380,6 +403,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -396,6 +420,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags @@ -412,6 +437,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.MouseFlags diff --git a/ecmadocs/en/Terminal.Gui/Point.xml b/ecmadocs/en/Terminal.Gui/Point.xml index 9a9e203f3..e347ef7ef 100644 --- a/ecmadocs/en/Terminal.Gui/Point.xml +++ b/ecmadocs/en/Terminal.Gui/Point.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -42,6 +44,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -64,6 +67,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -88,6 +92,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -107,6 +112,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -131,6 +137,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 @@ -152,6 +159,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -172,6 +180,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -194,6 +203,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -219,6 +229,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -246,6 +257,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -274,6 +286,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -299,6 +312,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -327,6 +341,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -354,6 +369,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -378,6 +394,7 @@ Method 0.0.0.0 + 1.0.0.0 System.String @@ -399,6 +416,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 @@ -416,6 +434,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/ProgressBar.xml b/ecmadocs/en/Terminal.Gui/ProgressBar.xml index 08afd937a..db366d156 100644 --- a/ecmadocs/en/Terminal.Gui/ProgressBar.xml +++ b/ecmadocs/en/Terminal.Gui/ProgressBar.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -32,6 +33,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -50,6 +52,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Single @@ -68,6 +71,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -89,6 +93,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void diff --git a/ecmadocs/en/Terminal.Gui/RadioGroup.xml b/ecmadocs/en/Terminal.Gui/RadioGroup.xml index 260261020..d9d342b8d 100644 --- a/ecmadocs/en/Terminal.Gui/RadioGroup.xml +++ b/ecmadocs/en/Terminal.Gui/RadioGroup.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -45,6 +47,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -71,6 +74,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -91,6 +95,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -101,6 +106,26 @@ To be added. + + + + Method + + 1.0.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -127,6 +152,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -147,6 +173,7 @@ Property 0.0.0.0 + 1.0.0.0 System.String[] @@ -165,6 +192,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -184,6 +212,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -202,6 +231,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Action<System.Int32> diff --git a/ecmadocs/en/Terminal.Gui/Rect.xml b/ecmadocs/en/Terminal.Gui/Rect.xml index ac539041c..44b5d485f 100644 --- a/ecmadocs/en/Terminal.Gui/Rect.xml +++ b/ecmadocs/en/Terminal.Gui/Rect.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -44,6 +46,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -71,6 +74,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -92,6 +96,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -116,6 +121,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -141,6 +147,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -167,6 +174,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -186,6 +194,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -210,6 +219,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -241,6 +251,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 @@ -262,6 +273,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 @@ -279,6 +291,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -302,6 +315,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -327,6 +341,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -356,6 +371,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -380,6 +396,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -407,6 +424,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -431,6 +449,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -451,6 +470,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -472,6 +492,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -492,6 +513,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -515,6 +537,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -540,6 +563,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -568,6 +592,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -596,6 +621,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -617,6 +643,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -637,6 +664,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -658,6 +686,7 @@ Method 0.0.0.0 + 1.0.0.0 System.String @@ -679,6 +708,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -706,6 +736,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 @@ -723,6 +754,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 @@ -740,6 +772,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/Responder.xml b/ecmadocs/en/Terminal.Gui/Responder.xml index bdad29ce5..262a46b9b 100644 --- a/ecmadocs/en/Terminal.Gui/Responder.xml +++ b/ecmadocs/en/Terminal.Gui/Responder.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Object @@ -20,6 +21,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -33,6 +35,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -49,6 +52,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -65,6 +69,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -88,6 +93,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -127,6 +133,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -166,6 +173,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/ScrollBarView.xml b/ecmadocs/en/Terminal.Gui/ScrollBarView.xml index e02b044fc..d9b3af9cd 100644 --- a/ecmadocs/en/Terminal.Gui/ScrollBarView.xml +++ b/ecmadocs/en/Terminal.Gui/ScrollBarView.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -31,6 +32,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -55,6 +57,7 @@ Event 0.0.0.0 + 1.0.0.0 System.Action @@ -72,6 +75,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -92,6 +96,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -110,6 +115,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -131,6 +137,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/ScrollView.xml b/ecmadocs/en/Terminal.Gui/ScrollView.xml index 6e1849f35..c3647909c 100644 --- a/ecmadocs/en/Terminal.Gui/ScrollView.xml +++ b/ecmadocs/en/Terminal.Gui/ScrollView.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -29,6 +30,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -45,6 +47,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -66,6 +69,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -84,6 +88,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -102,6 +107,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -118,6 +124,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -138,6 +145,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -157,6 +165,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -180,6 +189,7 @@ Event 0.0.0.0 + 1.0.0.0 System.Action<Terminal.Gui.ScrollView> @@ -197,6 +207,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -220,6 +231,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -243,6 +255,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -266,6 +279,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -285,6 +299,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/Size.xml b/ecmadocs/en/Terminal.Gui/Size.xml index 6768a2cab..f67c8a384 100644 --- a/ecmadocs/en/Terminal.Gui/Size.xml +++ b/ecmadocs/en/Terminal.Gui/Size.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.ValueType @@ -22,6 +23,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -42,6 +44,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -64,6 +67,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -88,6 +92,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -105,6 +110,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -129,6 +135,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Int32 @@ -150,6 +157,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -170,6 +178,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -190,6 +199,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -216,6 +226,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -244,6 +255,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -269,6 +281,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -297,6 +310,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -323,6 +337,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Size @@ -345,6 +360,7 @@ Method 0.0.0.0 + 1.0.0.0 System.String @@ -366,6 +382,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 diff --git a/ecmadocs/en/Terminal.Gui/SpecialChar.xml b/ecmadocs/en/Terminal.Gui/SpecialChar.xml index 8d0ff9eb3..f9cdccd46 100644 --- a/ecmadocs/en/Terminal.Gui/SpecialChar.xml +++ b/ecmadocs/en/Terminal.Gui/SpecialChar.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -21,6 +22,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -37,6 +39,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -53,6 +56,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -69,6 +73,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -85,6 +90,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -101,6 +107,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -117,6 +124,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -133,6 +141,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -149,6 +158,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -165,6 +175,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -181,6 +192,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar @@ -197,6 +209,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.SpecialChar diff --git a/ecmadocs/en/Terminal.Gui/TextAlignment.xml b/ecmadocs/en/Terminal.Gui/TextAlignment.xml index 0346f2645..efb1d4c0b 100644 --- a/ecmadocs/en/Terminal.Gui/TextAlignment.xml +++ b/ecmadocs/en/Terminal.Gui/TextAlignment.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 System.Enum @@ -21,6 +22,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.TextAlignment @@ -37,6 +39,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.TextAlignment @@ -53,6 +56,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.TextAlignment @@ -69,6 +73,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.TextAlignment diff --git a/ecmadocs/en/Terminal.Gui/TextField.xml b/ecmadocs/en/Terminal.Gui/TextField.xml index 6ff5d9d31..c7a064528 100644 --- a/ecmadocs/en/Terminal.Gui/TextField.xml +++ b/ecmadocs/en/Terminal.Gui/TextField.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -25,6 +26,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -49,6 +51,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -65,6 +68,7 @@ Event 0.0.0.0 + 1.0.0.0 System.EventHandler @@ -85,6 +89,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Int32 @@ -103,6 +108,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -123,6 +129,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -141,6 +148,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -161,6 +169,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -180,6 +189,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -200,6 +210,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/Terminal.Gui/Toplevel.xml b/ecmadocs/en/Terminal.Gui/Toplevel.xml index c97103c68..97d28d4eb 100644 --- a/ecmadocs/en/Terminal.Gui/Toplevel.xml +++ b/ecmadocs/en/Terminal.Gui/Toplevel.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -16,7 +17,14 @@ Toplevels can be modally executing views, and they return control - to the caller when the "Running" property is set to false. + to the caller when the "Running" property is set to false, or + by calling + + There will be a toplevel created for you on the first time use + and can be accessed from the property , + but new toplevels can be created and ran on top of it. To run, create the + toplevel and then invoke with the + new toplevel. @@ -27,6 +35,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -45,6 +54,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -61,6 +71,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Toplevel @@ -80,6 +91,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -100,6 +112,7 @@ Field 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/View.xml b/ecmadocs/en/Terminal.Gui/View.xml index b552c3097..953e402f0 100644 --- a/ecmadocs/en/Terminal.Gui/View.xml +++ b/ecmadocs/en/Terminal.Gui/View.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.Responder @@ -67,6 +68,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -85,6 +87,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -106,6 +109,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -155,6 +159,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -180,6 +185,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -198,6 +204,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -216,6 +223,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -238,6 +246,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -259,6 +268,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -277,6 +287,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -296,6 +307,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.ColorScheme @@ -335,6 +347,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -360,6 +373,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -385,6 +399,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -454,6 +469,7 @@ Field 0.0.0.0 + 1.0.0.0 Terminal.Gui.ConsoleDriver @@ -472,6 +488,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -490,6 +507,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -508,6 +526,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -526,6 +545,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -544,6 +564,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -564,6 +585,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -584,6 +606,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -605,6 +628,7 @@ Method 0.0.0.0 + 1.0.0.0 @@ -629,6 +653,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean @@ -648,6 +673,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring @@ -666,6 +692,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -686,6 +713,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -704,6 +732,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -728,6 +757,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -746,6 +776,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -766,6 +797,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -786,6 +818,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -806,6 +839,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -832,6 +866,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -853,6 +888,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -871,6 +907,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Point @@ -895,6 +932,7 @@ Method 0.0.0.0 + 1.0.0.0 Terminal.Gui.Rect @@ -917,6 +955,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -938,6 +977,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -957,6 +997,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -978,6 +1019,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Collections.Generic.IList<Terminal.Gui.View> @@ -996,6 +1038,7 @@ Property 0.0.0.0 + 1.0.0.0 Terminal.Gui.View @@ -1014,6 +1057,7 @@ Method 0.0.0.0 + 1.0.0.0 System.String @@ -1033,6 +1077,7 @@ Property 0.0.0.0 + 1.0.0.0 System.Boolean diff --git a/ecmadocs/en/Terminal.Gui/Window.xml b/ecmadocs/en/Terminal.Gui/Window.xml index 09e71d6a0..a8ada5acb 100644 --- a/ecmadocs/en/Terminal.Gui/Window.xml +++ b/ecmadocs/en/Terminal.Gui/Window.xml @@ -4,6 +4,7 @@ Terminal.Gui 0.0.0.0 + 1.0.0.0 Terminal.Gui.Toplevel @@ -26,6 +27,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -63,6 +65,7 @@ Constructor 0.0.0.0 + 1.0.0.0 @@ -87,6 +90,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -108,6 +112,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Collections.IEnumerator @@ -127,6 +132,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Boolean @@ -147,6 +153,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -166,6 +173,7 @@ Method 0.0.0.0 + 1.0.0.0 System.Void @@ -187,6 +195,7 @@ Property 0.0.0.0 + 1.0.0.0 NStack.ustring diff --git a/ecmadocs/en/index.xml b/ecmadocs/en/index.xml index cc403a82e..12cdd523a 100644 --- a/ecmadocs/en/index.xml +++ b/ecmadocs/en/index.xml @@ -1,10 +1,31 @@ - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) + + System.Reflection.AssemblyCompany("Miguel de Icaza") + + + System.Reflection.AssemblyConfiguration("Release") + + + System.Reflection.AssemblyDescription("Console-based user interface toolkit for .NET applications.") + + + System.Reflection.AssemblyFileVersion("1.0.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.0.0") + + + System.Reflection.AssemblyProduct("Terminal.Gui") + + + System.Reflection.AssemblyTitle("Terminal.Gui") + System.Runtime.CompilerServices.CompilationRelaxations(8) @@ -38,6 +59,7 @@ + @@ -50,17 +72,20 @@ + + +