From c3e45f7cbb91c671cdc409b66772bb77d467c960 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 20 Feb 2018 23:08:22 -0500 Subject: [PATCH] Update docs --- .../Mono.Terminal.MainLoop.Condition.yml | 2 +- .../Mono.Terminal/Mono.Terminal.MainLoop.yml | 3 ++ .../Terminal.Gui/Terminal.Gui.Application.yml | 24 +++++------ .../api/Terminal.Gui/Terminal.Gui.Button.yml | 8 ++-- .../Terminal.Gui.ConsoleDriver.yml | 10 +++-- .../Terminal.Gui/Terminal.Gui.FrameView.yml | 2 +- .../Terminal.Gui/Terminal.Gui.ListView.yml | 1 + .../Terminal.Gui/Terminal.Gui.Responder.yml | 8 ++-- .../Terminal.Gui/Terminal.Gui.Toplevel.yml | 2 +- docfx/api/Terminal.Gui/Terminal.Gui.View.yml | 6 +-- .../api/Terminal.Gui/Terminal.Gui.Window.yml | 4 +- docs/api/Mono.Terminal.html | 2 +- .../Mono.Terminal.MainLoop.Condition.html | 2 +- .../Mono.Terminal/Mono.Terminal.MainLoop.html | 4 ++ .../Terminal.Gui.Application.html | 35 ++++++++++++---- .../api/Terminal.Gui/Terminal.Gui.Button.html | 8 ++-- .../Terminal.Gui.ConsoleDriver.html | 14 ++++--- .../Terminal.Gui/Terminal.Gui.FrameView.html | 2 +- .../Terminal.Gui/Terminal.Gui.ListView.html | 20 ++++++++++ .../Terminal.Gui/Terminal.Gui.Responder.html | 8 ++-- .../Terminal.Gui/Terminal.Gui.Toplevel.html | 2 +- docs/api/Terminal.Gui/Terminal.Gui.View.html | 6 +-- .../api/Terminal.Gui/Terminal.Gui.Window.html | 4 +- docs/manifest.json | 2 +- .../en/Mono.Terminal/MainLoop+Condition.xml | 14 +++---- ecmadocs/en/Mono.Terminal/MainLoop.xml | 5 ++- ecmadocs/en/Terminal.Gui/Application.xml | 40 ++++++++++++++----- ecmadocs/en/Terminal.Gui/Button.xml | 24 +++++------ ecmadocs/en/Terminal.Gui/ConsoleDriver.xml | 16 +++++--- ecmadocs/en/Terminal.Gui/FrameView.xml | 4 +- ecmadocs/en/Terminal.Gui/ListView.xml | 23 ++++++++++- ecmadocs/en/Terminal.Gui/Responder.xml | 18 ++++----- ecmadocs/en/Terminal.Gui/Toplevel.xml | 6 +-- ecmadocs/en/Terminal.Gui/View.xml | 18 ++++----- ecmadocs/en/Terminal.Gui/Window.xml | 10 ++--- 35 files changed, 227 insertions(+), 130 deletions(-) diff --git a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml index 7920a9c33..a38d0b203 100644 --- a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml +++ b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.yml @@ -18,7 +18,7 @@ items: assemblies: - Terminal.Gui namespace: Mono.Terminal - summary: Condition on which to wake up from file descriptor activity + summary: Condition on which to wake up from file descriptor activity. These match the Linux/BSD poll definitions. syntax: content: >- [System.Flags] diff --git a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml index ebaf578a8..a0ee0383d 100644 --- a/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml +++ b/docfx/api/Mono.Terminal/Mono.Terminal.MainLoop.yml @@ -27,6 +27,9 @@ items: summary: >- Simple main loop implementation that can be used to monitor file descriptor, run timers and idle handlers. + remarks: >- + Monitoring of file descriptors is only available on Unix, there + does not seem to be a way of supporting this on Windows. syntax: content: public class MainLoop inheritance: diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml index 325afd07d..5d2c10316 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Application.yml @@ -68,15 +68,17 @@ items: assemblies: - Terminal.Gui namespace: Terminal.Gui + summary: 'Building block API: Prepares the provided toplevel for execution.' + remarks: "This method prepares the provided toplevel for running with the focus,\n it adds this to the list of toplevels, sets up the mainloop to process the \n event, lays out the subviews, focuses the first element, and draws the\n toplevel in the screen. This is usually followed by executing\n the method, and then the method upon termination which will\n undo these changes." syntax: content: public static Terminal.Gui.Application.RunState Begin (Terminal.Gui.Toplevel toplevel); parameters: - id: toplevel type: Terminal.Gui.Toplevel - description: To be added. + description: Toplevel to prepare execution for. return: type: Terminal.Gui.Application+RunState - description: To be added. + description: The runstate handle that needs to be passed to the End() method upon completion. overload: Terminal.Gui.Application.Begin* exceptions: [] - uid: Terminal.Gui.Application.Current @@ -130,6 +132,7 @@ items: assemblies: - Terminal.Gui 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); parameters: @@ -329,16 +332,7 @@ items: - Terminal.Gui namespace: Terminal.Gui summary: Runs the main loop on the given container. - remarks: >- -

- This method is used to start processing events - for the main application, but it is also used to - run modal dialog boxes. -

-

- To make a toplevel stop execution, set the "Running" - property to false. -

+ remarks: "

\n This method is used to start processing events\n for the main application, but it is also used to\n run modal dialog boxes.\n

\n

\n To make a toplevel stop execution, set the \"Running\"\n property to false.\n

\n

\n This is equivalent to calling Begin on the toplevel view, followed by RunLoop with the\n returned value, and then calling end on the return value.\n

\n

\n Alternatively, if your program needs to control the main loop and needs to \n process events manually, you can invoke Begin to set things up manually and then\n repeatedly call RunLoop with the wait parameter set to false. By doing this\n the RunLoop method will only process any pending events, timers, idle handlers and\n then return control immediately.\n

" syntax: content: public static void Run (Terminal.Gui.Toplevel view); parameters: @@ -359,7 +353,7 @@ items: assemblies: - Terminal.Gui namespace: Terminal.Gui - summary: Runs the main loop for the created dialog + summary: 'Building block API: Runs the main loop for the created dialog' remarks: >- Use the wait parameter to control whether this is a blocking or non-blocking call. @@ -368,10 +362,10 @@ items: parameters: - id: state type: Terminal.Gui.Application+RunState - description: To be added. + description: The state returned by the Begin method. - id: wait type: System.Boolean - description: To be added. + description: By default this is true which will execute the runloop waiting for events, if you pass false, you can use this method to run a single iteration of the events. overload: Terminal.Gui.Application.RunLoop* exceptions: [] - uid: Terminal.Gui.Application.Top diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml index dbc92267b..05ef75493 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Button.yml @@ -107,7 +107,7 @@ items: The size of the button is computed based on the text length. This button is not a default button. syntax: - content: public Button (string s); + content: public Button (string text); parameters: - id: s type: System.String @@ -134,7 +134,7 @@ items: decoration is used, and the enter key on a dialog would implicitly activate this button. syntax: - content: public Button (string s, bool is_default); + content: public Button (string text, bool is_default); parameters: - id: s type: System.String @@ -163,7 +163,7 @@ items: 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, string s); + content: public Button (int x, int y, string text); parameters: - id: x type: System.Int32 @@ -196,7 +196,7 @@ items: decoration is used, and the enter key on a dialog would implicitly activate this button. syntax: - content: public Button (int x, int y, string s, bool is_default); + content: public Button (int x, int y, string text, bool is_default); parameters: - id: x type: System.Int32 diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml b/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml index a3fdd1520..21ecc87d9 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.yml @@ -282,18 +282,19 @@ items: assemblies: - Terminal.Gui namespace: Terminal.Gui + summary: Draws a frame on the specified region with the specified padding around the frame. syntax: content: public virtual void DrawFrame (Terminal.Gui.Rect region, int padding, bool fill); parameters: - id: region type: Terminal.Gui.Rect - description: To be added. + description: Region where the frame will be drawn.. - id: padding type: System.Int32 - description: To be added. + description: Padding to add on the sides. - id: fill type: System.Boolean - description: To be added. + description: If set to true it will clear the contents with the current color, otherwise the contents will be left untouched. overload: Terminal.Gui.ConsoleDriver.DrawFrame* exceptions: [] - uid: Terminal.Gui.ConsoleDriver.End @@ -547,12 +548,13 @@ items: assemblies: - Terminal.Gui namespace: Terminal.Gui + summary: Selects the specified attribute as the attribute to use for future calls to AddRune, AddString. syntax: content: public abstract void SetAttribute (Terminal.Gui.Attribute c); parameters: - id: c type: Terminal.Gui.Attribute - description: To be added. + description: C. overload: Terminal.Gui.ConsoleDriver.SetAttribute* exceptions: [] - uid: Terminal.Gui.ConsoleDriver.SetColors(System.Int16,System.Int16) diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.FrameView.yml b/docfx/api/Terminal.Gui/Terminal.Gui.FrameView.yml index 830cd8b0e..da553b65c 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.FrameView.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.FrameView.yml @@ -153,7 +153,7 @@ items: namespace: Terminal.Gui summary: Removes a widget from this container. syntax: - content: public virtual void Remove (Terminal.Gui.View view); + content: public override void Remove (Terminal.Gui.View view); parameters: - id: view type: Terminal.Gui.View diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.ListView.yml b/docfx/api/Terminal.Gui/Terminal.Gui.ListView.yml index 805278452..3e2fbe726 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.ListView.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.ListView.yml @@ -25,6 +25,7 @@ items: - Terminal.Gui namespace: Terminal.Gui summary: ListView widget renders a list of data. + remarks: "

\n The ListView displays lists of data and allows the user to scroll through the data\n and optionally mark elements of the list (controlled by the AllowsMark property). \n

\n

\n The ListView can either render an arbitrary IList object (for example, arrays, List\n and other collections) which are drawn by drawing the string/ustring contents or the \n result of calling ToString(). Alternatively, you can provide you own IListDataSource\n object that gives you full control of what is rendered.\n

\n

\n The ListView can display any object that implements the System.Collection.IList interface,\n string values are converted into ustring values before rendering, and other values are\n converted into ustrings by calling ToString() and then converting to ustring.\n

\n

\n If you must change the contents of the ListView, set the Source property (when you are\n providing your own rendering via the IListDataSource implementation) or call SetSource\n when you are providing an IList.\n

" syntax: content: 'public class ListView : Terminal.Gui.View' inheritance: diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Responder.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Responder.yml index 291c6ab1e..7c42e8355 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Responder.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Responder.yml @@ -96,11 +96,11 @@ items: namespace: Terminal.Gui summary: Method invoked when a mouse event is generated syntax: - content: public virtual bool MouseEvent (Terminal.Gui.MouseEvent me); + content: public virtual bool MouseEvent (Terminal.Gui.MouseEvent mouseEvent); parameters: - id: me type: Terminal.Gui.MouseEvent - description: Me. + description: To be added. return: type: System.Boolean description: true, if the event was handled, false otherwise. @@ -138,7 +138,7 @@ items: keypress when they have the focus.

syntax: - content: public virtual bool ProcessColdKey (Terminal.Gui.KeyEvent kb); + content: public virtual bool ProcessColdKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent @@ -207,7 +207,7 @@ items: chance to process the keystroke. remarks: "

\n Views can override this method if they are\n interested in processing the given keystroke.\n If they consume the keystroke, they must\n return true to stop the keystroke from being\n processed by other widgets or consumed by the\n widget engine. If they return false, the\n keystroke will be passed using the ProcessColdKey\n method to other views to process.\n

\n

\n The View implementation does nothing but return false,\n so it is not necessary to call base.ProcessKey if you \n derive directly from View, but you should if you derive\n other View subclasses.\n

" syntax: - content: public virtual bool ProcessKey (Terminal.Gui.KeyEvent kb); + content: public virtual bool ProcessKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml index 1b8a8f864..bc8363839 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Toplevel.yml @@ -154,7 +154,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb); + content: public override bool ProcessKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.View.yml b/docfx/api/Terminal.Gui/Terminal.Gui.View.yml index 0f187593a..263f506e9 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.View.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.View.yml @@ -816,7 +816,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public override bool ProcessColdKey (Terminal.Gui.KeyEvent kb); + content: public override bool ProcessColdKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent @@ -839,7 +839,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public override bool ProcessHotKey (Terminal.Gui.KeyEvent kb); + content: public override bool ProcessHotKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent @@ -862,7 +862,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb); + content: public override bool ProcessKey (Terminal.Gui.KeyEvent keyEvent); parameters: - id: kb type: Terminal.Gui.KeyEvent diff --git a/docfx/api/Terminal.Gui/Terminal.Gui.Window.yml b/docfx/api/Terminal.Gui/Terminal.Gui.Window.yml index 8b771c472..4a839d30b 100644 --- a/docfx/api/Terminal.Gui/Terminal.Gui.Window.yml +++ b/docfx/api/Terminal.Gui/Terminal.Gui.Window.yml @@ -209,7 +209,7 @@ items: - Terminal.Gui namespace: Terminal.Gui syntax: - content: public override bool MouseEvent (Terminal.Gui.MouseEvent me); + content: public override bool MouseEvent (Terminal.Gui.MouseEvent mouseEvent); parameters: - id: me type: Terminal.Gui.MouseEvent @@ -253,7 +253,7 @@ items: namespace: Terminal.Gui summary: Removes a widget from this container. syntax: - content: public virtual void Remove (Terminal.Gui.View view); + content: public override void Remove (Terminal.Gui.View view); parameters: - id: view type: Terminal.Gui.View diff --git a/docs/api/Mono.Terminal.html b/docs/api/Mono.Terminal.html index d16aa015e..9a354f53a 100644 --- a/docs/api/Mono.Terminal.html +++ b/docs/api/Mono.Terminal.html @@ -83,7 +83,7 @@

Enums

MainLoop.Condition

-

Condition on which to wake up from file descriptor activity

+

Condition on which to wake up from file descriptor activity. These match the Linux/BSD poll definitions.

diff --git a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html index 4c652c6f5..04365b6f1 100644 --- a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html +++ b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.Condition.html @@ -72,7 +72,7 @@

Enum MainLoop.Condition

-

Condition on which to wake up from file descriptor activity

+

Condition on which to wake up from file descriptor activity. These match the Linux/BSD poll definitions.

Namespace: Mono.Terminal
diff --git a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html index a0b6faa42..87372f986 100644 --- a/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html +++ b/docs/api/Mono.Terminal/Mono.Terminal.MainLoop.html @@ -87,6 +87,10 @@
public class MainLoop
+
Remarks
+

Monitoring of file descriptors is only available on Unix, there + does not seem to be a way of supporting this on Windows.

+

Constructors

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Application.html b/docs/api/Terminal.Gui/Terminal.Gui.Application.html index 8ec50c89b..831e68239 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Application.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Application.html @@ -280,7 +280,8 @@

Begin(Toplevel)

-
+

Building block API: Prepares the provided toplevel for execution.

+
Declaration
@@ -299,7 +300,7 @@ Toplevel toplevel -

To be added.

+

Toplevel to prepare execution for.

@@ -315,16 +316,25 @@ -

To be added.

+

The runstate handle that needs to be passed to the End() method upon completion.

+
Remarks
+

This method prepares the provided toplevel for running with the focus, + it adds this to the list of toplevels, sets up the mainloop to process the + event, lays out the subviews, focuses the first element, and draws the + toplevel in the screen. This is usually followed by executing + the RunLoop(Application+RunState, Boolean) method, and then the End(Application+RunState) method upon termination which will + undo these changes.

+

End(Application+RunState)

-
+

Building block API: completes the exection of a Toplevel that was started with Begin.

+
Declaration
@@ -504,12 +514,23 @@

To make a toplevel stop execution, set the "Running" property to false. +

+

+ This is equivalent to calling Begin on the toplevel view, followed by RunLoop with the + returned value, and then calling end on the return value. +

+

+ Alternatively, if your program needs to control the main loop and needs to + process events manually, you can invoke Begin to set things up manually and then + repeatedly call RunLoop with the wait parameter set to false. By doing this + the RunLoop method will only process any pending events, timers, idle handlers and + then return control immediately.

RunLoop(Application+RunState, Boolean)

-

Runs the main loop for the created dialog

+

Building block API: Runs the main loop for the created dialog

Declaration
@@ -529,13 +550,13 @@ state -

To be added.

+

The state returned by the Begin method.

System.Boolean wait -

To be added.

+

By default this is true which will execute the runloop waiting for events, if you pass false, you can use this method to run a single iteration of the events.

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Button.html b/docs/api/Terminal.Gui/Terminal.Gui.Button.html index ca92a7954..0540d6b0e 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Button.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Button.html @@ -243,7 +243,7 @@
Declaration
-
public Button (string s);
+
public Button (string text);
Parameters
@@ -277,7 +277,7 @@
Declaration
-
public Button (string s, bool is_default);
+
public Button (string text, bool is_default);
Parameters
@@ -318,7 +318,7 @@
Declaration
-
public Button (int x, int y, string s);
+
public Button (int x, int y, string text);
Parameters
@@ -364,7 +364,7 @@
Declaration
-
public Button (int x, int y, string s, bool is_default);
+
public Button (int x, int y, string text, bool is_default);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html index 4a4b50857..093c52b82 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html @@ -657,7 +657,8 @@

DrawFrame(Rect, Int32, Boolean)

-
+

Draws a frame on the specified region with the specified padding around the frame.

+
Declaration
@@ -676,19 +677,19 @@
- - - @@ -833,7 +834,8 @@

SetAttribute(Attribute)

-
+

Selects the specified attribute as the attribute to use for future calls to AddRune, AddString.

+
Declaration
@@ -852,7 +854,7 @@
- diff --git a/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html b/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html index 02036e2e6..02b625bd5 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.FrameView.html @@ -364,7 +364,7 @@
Declaration
-
public virtual void Remove (Terminal.Gui.View view);
+
public override void Remove (Terminal.Gui.View view);
Parameters
Rect region

To be added.

+

Region where the frame will be drawn..

System.Int32 padding

To be added.

+

Padding to add on the sides.

System.Boolean fill

To be added.

+

If set to true it will clear the contents with the current color, otherwise the contents will be left untouched.

Attribute c

To be added.

+

C.

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.ListView.html b/docs/api/Terminal.Gui/Terminal.Gui.ListView.html index 37c0ebdb4..b1bdcac51 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.ListView.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.ListView.html @@ -226,6 +226,26 @@
public class ListView : Terminal.Gui.View
+
Remarks
+

+ The ListView displays lists of data and allows the user to scroll through the data + and optionally mark elements of the list (controlled by the AllowsMark property).

+

+ The ListView can either render an arbitrary IList object (for example, arrays, List + and other collections) which are drawn by drawing the string/ustring contents or the + result of calling ToString(). Alternatively, you can provide you own IListDataSource + object that gives you full control of what is rendered. +

+

+ The ListView can display any object that implements the System.Collection.IList interface, + string values are converted into ustring values before rendering, and other values are + converted into ustrings by calling ToString() and then converting to ustring. +

+

+ If you must change the contents of the ListView, set the Source property (when you are + providing your own rendering via the IListDataSource implementation) or call SetSource + when you are providing an IList. +

Constructors

diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Responder.html b/docs/api/Terminal.Gui/Terminal.Gui.Responder.html index e04fa1d4a..cb530a08a 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Responder.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Responder.html @@ -163,7 +163,7 @@
Declaration
-
public virtual bool MouseEvent (Terminal.Gui.MouseEvent me);
+
public virtual bool MouseEvent (Terminal.Gui.MouseEvent mouseEvent);
Parameters
@@ -178,7 +178,7 @@ - @@ -211,7 +211,7 @@
Declaration
-
public virtual bool ProcessColdKey (Terminal.Gui.KeyEvent kb);
+
public virtual bool ProcessColdKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
MouseEvent me

Me.

+

To be added.

@@ -333,7 +333,7 @@
Declaration
-
public virtual bool ProcessKey (Terminal.Gui.KeyEvent kb);
+
public virtual bool ProcessKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html b/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html index 6a69166e5..d271dcff9 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Toplevel.html @@ -363,7 +363,7 @@
Declaration
-
public override bool ProcessKey (Terminal.Gui.KeyEvent kb);
+
public override bool ProcessKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.View.html b/docs/api/Terminal.Gui/Terminal.Gui.View.html index 3f7574743..e7e2c1fee 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.View.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.View.html @@ -1142,7 +1142,7 @@ public System.Collections.IEnumerator GetEnumerator ();
Declaration
-
public override bool ProcessColdKey (Terminal.Gui.KeyEvent kb);
+
public override bool ProcessColdKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
@@ -1186,7 +1186,7 @@ public System.Collections.IEnumerator GetEnumerator ();
Declaration
-
public override bool ProcessHotKey (Terminal.Gui.KeyEvent kb);
+
public override bool ProcessHotKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
@@ -1230,7 +1230,7 @@ public System.Collections.IEnumerator GetEnumerator ();
Declaration
-
public override bool ProcessKey (Terminal.Gui.KeyEvent kb);
+
public override bool ProcessKey (Terminal.Gui.KeyEvent keyEvent);
Parameters
diff --git a/docs/api/Terminal.Gui/Terminal.Gui.Window.html b/docs/api/Terminal.Gui/Terminal.Gui.Window.html index 6e2e82474..d9e001aed 100644 --- a/docs/api/Terminal.Gui/Terminal.Gui.Window.html +++ b/docs/api/Terminal.Gui/Terminal.Gui.Window.html @@ -441,7 +441,7 @@
Declaration
-
public override bool MouseEvent (Terminal.Gui.MouseEvent me);
+
public override bool MouseEvent (Terminal.Gui.MouseEvent mouseEvent);
Parameters
@@ -514,7 +514,7 @@
Declaration
-
public virtual void Remove (Terminal.Gui.View view);
+
public override void Remove (Terminal.Gui.View view);
Parameters
diff --git a/docs/manifest.json b/docs/manifest.json index 6fa7d29a7..daaca4750 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1 +1 @@ -{"homepages":[],"source_base_path":"/cvs/gui.cs/docfx","xrefmap":"xrefmap.yml","files":[{"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/Mono.Terminal.yml","output":{".html":{"relative_path":"api/Mono.Terminal.html","hash":"hVuYUVEF4TqIwRNoksJwSg=="}},"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.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.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.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.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html","hash":"TLXwJ2OemNCL/eWYUsjUHg=="}},"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.Rect.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Rect.html","hash":"UbrMVw16YFF223fCoch2Xg=="}},"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":"pMAXO+EHEOBNK8P3aW673A=="}},"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.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.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.FrameView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.FrameView.html","hash":"IHX4vwHcEc+9WCwyyrwUPA=="}},"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.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.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.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.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.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.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/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.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.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Application.html","hash":"iHIWeYV/6FR2QG3OJ0QheQ=="}},"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.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.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.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.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/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.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.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.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/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.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.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.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.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/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.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.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.Responder.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Responder.html","hash":"3MEwnqJ+fYJGc0od42x/jQ=="}},"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.Gui/Terminal.Gui.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Toplevel.html","hash":"rvsMsn8vEh3a4syA5yIIJQ=="}},"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":"XCEy+x4xsvkojbAoLUTCMg=="}},"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.Gui/Terminal.Gui.ListView.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.ListView.html","hash":"OvgzQ76dA9ssA+d2pNPyQQ=="}},"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.Window.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Window.html","hash":"JlVbUTAs2CK0J/+qyf+fyw=="}},"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.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.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.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/Mono.Terminal/Mono.Terminal.MainLoop.yml","output":{".html":{"relative_path":"api/Mono.Terminal/Mono.Terminal.MainLoop.html","hash":"4O26iKaM2Szi+gT94S5K+w=="}},"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.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.Gui/Terminal.Gui.Button.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.Button.html","hash":"ZE05OhGK1H1bKNRgCznkUg=="}},"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/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.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.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.MenuBarItem.html","hash":"rTwo4kYP1ag7+t0B8vtA9A=="}},"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/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/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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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/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.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.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.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.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.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":""},{"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.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.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.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.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.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.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/Terminal.Gui/Terminal.Gui.View.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.View.html","hash":"BFeKPmJ2M14eeldSDIWscQ=="}},"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.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/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.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.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.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.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.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/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.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.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.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.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.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.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.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.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.TextField.yml","output":{".html":{"relative_path":"api/Terminal.Gui/Terminal.Gui.TextField.html","hash":"/aAavG7m+yETkM8BPQQtdQ=="}},"is_incremental":false,"version":""}],"version_info":{}} \ No newline at end of file diff --git a/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml b/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml index 127c5fdfd..996450ad9 100644 --- a/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml +++ b/ecmadocs/en/Mono.Terminal/MainLoop+Condition.xml @@ -15,14 +15,14 @@ - Condition on which to wake up from file descriptor activity + Condition on which to wake up from file descriptor activity. These match the Linux/BSD poll definitions. To be added. - + Field 0.0.0.0 @@ -38,7 +38,7 @@ - + Field 0.0.0.0 @@ -54,7 +54,7 @@ - + Field 0.0.0.0 @@ -70,7 +70,7 @@ - + Field 0.0.0.0 @@ -86,7 +86,7 @@ - + Field 0.0.0.0 @@ -102,7 +102,7 @@ - + Field 0.0.0.0 diff --git a/ecmadocs/en/Mono.Terminal/MainLoop.xml b/ecmadocs/en/Mono.Terminal/MainLoop.xml index 098def9a6..a25a08a08 100644 --- a/ecmadocs/en/Mono.Terminal/MainLoop.xml +++ b/ecmadocs/en/Mono.Terminal/MainLoop.xml @@ -14,7 +14,10 @@ Simple main loop implementation that can be used to monitor file descriptor, run timers and idle handlers. - To be added. + + Monitoring of file descriptors is only available on Unix, there + does not seem to be a way of supporting this on Windows. + diff --git a/ecmadocs/en/Terminal.Gui/Application.xml b/ecmadocs/en/Terminal.Gui/Application.xml index 9233caa5b..0dd13c41d 100644 --- a/ecmadocs/en/Terminal.Gui/Application.xml +++ b/ecmadocs/en/Terminal.Gui/Application.xml @@ -56,10 +56,19 @@ - To be added. - To be added. - To be added. - To be added. + Toplevel to prepare execution for. + + Building block API: Prepares the provided toplevel for execution. + + The runstate handle that needs to be passed to the End() method upon completion. + + This method prepares the provided toplevel for running with the focus, + it adds this to the list of toplevels, sets up the mainloop to process the + event, lays out the subviews, focuses the first element, and draws the + toplevel in the screen. This is usually followed by executing + the method, and then the method upon termination which will + undo these changes. + @@ -112,7 +121,9 @@ To be added. - To be added. + + Building block API: completes the exection of a Toplevel that was started with Begin. + To be added. @@ -314,6 +325,17 @@ To make a toplevel stop execution, set the "Running" property to false. + + This is equivalent to calling Begin on the toplevel view, followed by RunLoop with the + returned value, and then calling end on the return value. + + + Alternatively, if your program needs to control the main loop and needs to + process events manually, you can invoke Begin to set things up manually and then + repeatedly call RunLoop with the wait parameter set to false. By doing this + the RunLoop method will only process any pending events, timers, idle handlers and + then return control immediately. + @@ -332,14 +354,14 @@ - To be added. - To be added. + The state returned by the Begin method. + By default this is true which will execute the runloop waiting for events, if you pass false, you can use this method to run a single iteration of the events. - Runs the main loop for the created dialog + Building block API: Runs the main loop for the created dialog Use the wait parameter to control whether this is a - blocking or non-blocking call. + blocking or non-blocking call. diff --git a/ecmadocs/en/Terminal.Gui/Button.xml b/ecmadocs/en/Terminal.Gui/Button.xml index 44debe028..d3d047ce7 100644 --- a/ecmadocs/en/Terminal.Gui/Button.xml +++ b/ecmadocs/en/Terminal.Gui/Button.xml @@ -28,8 +28,8 @@ - - + + Constructor 0.0.0.0 @@ -38,7 +38,7 @@ - To be added. + To be added. Public constructor, creates a button based on the given text at position 0,0 @@ -50,8 +50,8 @@ - - + + Constructor 0.0.0.0 @@ -61,7 +61,7 @@ - To be added. + To be added. To be added. Public constructor, creates a button based on @@ -75,8 +75,8 @@ - - + + Constructor 0.0.0.0 @@ -89,7 +89,7 @@ To be added. To be added. - To be added. + To be added. Public constructor, creates a button based on the given text at the given position. @@ -101,8 +101,8 @@ - - + + Constructor 0.0.0.0 @@ -116,7 +116,7 @@ To be added. To be added. - To be added. + To be added. To be added. Public constructor, creates a button based on diff --git a/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml b/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml index 29bc482ea..13b440abe 100644 --- a/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml +++ b/ecmadocs/en/Terminal.Gui/ConsoleDriver.xml @@ -229,10 +229,12 @@ - To be added. - To be added. - To be added. - To be added. + Region where the frame will be drawn.. + Padding to add on the sides. + If set to true it will clear the contents with the current color, otherwise the contents will be left untouched. + + Draws a frame on the specified region with the specified padding around the frame. + To be added. @@ -472,8 +474,10 @@ - To be added. - To be added. + C. + + Selects the specified attribute as the attribute to use for future calls to AddRune, AddString. + To be added. diff --git a/ecmadocs/en/Terminal.Gui/FrameView.xml b/ecmadocs/en/Terminal.Gui/FrameView.xml index 85893f854..167b559d8 100644 --- a/ecmadocs/en/Terminal.Gui/FrameView.xml +++ b/ecmadocs/en/Terminal.Gui/FrameView.xml @@ -78,8 +78,8 @@ - - + + Method 0.0.0.0 diff --git a/ecmadocs/en/Terminal.Gui/ListView.xml b/ecmadocs/en/Terminal.Gui/ListView.xml index dbc430182..9571b4727 100644 --- a/ecmadocs/en/Terminal.Gui/ListView.xml +++ b/ecmadocs/en/Terminal.Gui/ListView.xml @@ -13,7 +13,28 @@ ListView widget renders a list of data. - To be added. + + + The ListView displays lists of data and allows the user to scroll through the data + and optionally mark elements of the list (controlled by the AllowsMark property). + + + The ListView can either render an arbitrary IList object (for example, arrays, List<T> + and other collections) which are drawn by drawing the string/ustring contents or the + result of calling ToString(). Alternatively, you can provide you own IListDataSource + object that gives you full control of what is rendered. + + + The ListView can display any object that implements the System.Collection.IList interface, + string values are converted into ustring values before rendering, and other values are + converted into ustrings by calling ToString() and then converting to ustring. + + + If you must change the contents of the ListView, set the Source property (when you are + providing your own rendering via the IListDataSource implementation) or call SetSource + when you are providing an IList. + + diff --git a/ecmadocs/en/Terminal.Gui/Responder.xml b/ecmadocs/en/Terminal.Gui/Responder.xml index 7d4fd56fd..bdad29ce5 100644 --- a/ecmadocs/en/Terminal.Gui/Responder.xml +++ b/ecmadocs/en/Terminal.Gui/Responder.xml @@ -60,8 +60,8 @@ - - + + Method 0.0.0.0 @@ -73,7 +73,7 @@ - Me. + Contains the details about the mouse event. Method invoked when a mouse event is generated @@ -83,8 +83,8 @@ - - + + Method 0.0.0.0 @@ -96,7 +96,7 @@ - To be added. + Contains the details about the key that produced the event. This method can be overwritten by views that want to provide accelerator functionality @@ -161,8 +161,8 @@ - - + + Method 0.0.0.0 @@ -174,7 +174,7 @@ - To be added. + Contains the details about the key that produced the event. If the view is focused, gives the view a chance to process the keystroke. diff --git a/ecmadocs/en/Terminal.Gui/Toplevel.xml b/ecmadocs/en/Terminal.Gui/Toplevel.xml index b61383143..c97103c68 100644 --- a/ecmadocs/en/Terminal.Gui/Toplevel.xml +++ b/ecmadocs/en/Terminal.Gui/Toplevel.xml @@ -75,8 +75,8 @@ - - + + Method 0.0.0.0 @@ -88,7 +88,7 @@ - To be added. + To be added. To be added. To be added. To be added. diff --git a/ecmadocs/en/Terminal.Gui/View.xml b/ecmadocs/en/Terminal.Gui/View.xml index 97d9d861f..b552c3097 100644 --- a/ecmadocs/en/Terminal.Gui/View.xml +++ b/ecmadocs/en/Terminal.Gui/View.xml @@ -741,8 +741,8 @@ - - + + Method 0.0.0.0 @@ -754,15 +754,15 @@ - To be added. + Contains the details about the key that produced the event. To be added. To be added. To be added. - - + + Method 0.0.0.0 @@ -774,15 +774,15 @@ - To be added. + Contains the details about the key that produced the event. To be added. To be added. To be added. - - + + Method 0.0.0.0 @@ -794,7 +794,7 @@ - To be added. + Contains the details about the key that produced the event. To be added. To be added. To be added. diff --git a/ecmadocs/en/Terminal.Gui/Window.xml b/ecmadocs/en/Terminal.Gui/Window.xml index b5d3458ec..09e71d6a0 100644 --- a/ecmadocs/en/Terminal.Gui/Window.xml +++ b/ecmadocs/en/Terminal.Gui/Window.xml @@ -122,8 +122,8 @@ - - + + Method 0.0.0.0 @@ -135,7 +135,7 @@ - To be added. + To be added. To be added. To be added. To be added. @@ -161,8 +161,8 @@ - - + + Method 0.0.0.0