From e3d126400d41092e84e3a4ab5c7b95e25c69d27b Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 16 Jan 2018 20:12:15 -0500 Subject: [PATCH] Doc update --- Event.cs | 7 ++++++ Types/Point.cs | 32 +++++++++++++++++++++++++-- Types/Rect.cs | 22 +++++++++++++++++- Types/Size.cs | 13 +++++++++++ docfx/api/Terminal/Terminal.Point.yml | 13 +++++++---- docfx/api/Terminal/Terminal.Rect.yml | 5 +++++ docfx/api/Terminal/Terminal.Size.yml | 9 +++++--- docs/api/Terminal.html | 9 +++++--- docs/api/Terminal/Terminal.Point.html | 23 +++++++++++-------- docs/api/Terminal/Terminal.Rect.html | 15 ++++++++----- docs/api/Terminal/Terminal.Size.html | 15 ++++++++----- docs/manifest.json | 2 +- ecmadocs/en/Terminal/Point.xml | 29 ++++++++++++++++-------- ecmadocs/en/Terminal/Rect.xml | 20 ++++++++++++----- ecmadocs/en/Terminal/Size.xml | 18 ++++++++++----- 15 files changed, 178 insertions(+), 54 deletions(-) diff --git a/Event.cs b/Event.cs index 02f66010b..d235ce815 100644 --- a/Event.cs +++ b/Event.cs @@ -23,7 +23,14 @@ namespace Terminal { /// public enum Key : uint { CharMask = 0xfffff, + + /// + /// If the SpecialMask is set, then the value is that of the special mask, + /// otherwise, the value is the one of the lower bits (as extracted by CharMask). + /// SpecialMask = 0xfff00000, + + ControlA = 1, ControlB, ControlC, diff --git a/Types/Point.cs b/Types/Point.cs index 4b6b4c9d9..49e9152de 100644 --- a/Types/Point.cs +++ b/Types/Point.cs @@ -13,10 +13,20 @@ using System.Globalization; namespace Terminal { + /// + /// Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane. + /// public struct Point { - // Private x and y coordinate fields. - public int X, Y; + /// + /// Gets or sets the x-coordinate of this Point. + /// + public int X; + + /// + /// Gets or sets the y-coordinate of this Point. + /// + public int Y; // ----------------------- // Public Shared Members @@ -208,16 +218,34 @@ namespace Terminal return string.Format ("{{X={0},Y={1}}}", X.ToString (CultureInfo.InvariantCulture), Y.ToString (CultureInfo.InvariantCulture)); } + + /// + /// Adds the specified Size to the specified Point. + /// + /// The Point that is the result of the addition operation. + /// The Point to add. + /// The Size to add. public static Point Add (Point pt, Size sz) { return new Point (pt.X + sz.Width, pt.Y + sz.Height); } + /// + /// Translates this Point by the specified Point. + /// + /// The offset. + /// The Point used offset this Point. public void Offset (Point p) { Offset (p.X, p.Y); } + /// + /// Returns the result of subtracting specified Size from the specified Point. + /// + /// The Point that is the result of the subtraction operation. + /// The Point to be subtracted from. + /// The Size to subtract from the Point. public static Point Subtract (Point pt, Size sz) { return new Point (pt.X - sz.Width, pt.Y - sz.Height); diff --git a/Types/Rect.cs b/Types/Rect.cs index 9ac19383e..42ef43134 100644 --- a/Types/Rect.cs +++ b/Types/Rect.cs @@ -12,9 +12,29 @@ using System; namespace Terminal { + /// + /// Stores a set of four integers that represent the location and size of a rectangle + /// public struct Rect { - public int X, Y, Width, Height; + /// + /// Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure. + /// + public int X; + /// + /// Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure. + /// + public int Y; + + /// + /// Gets or sets the width of this Rect structure. + /// + public int Width; + + /// + /// Gets or sets the height of this Rectangle structure. + /// + public int Height; /// /// Empty Shared Field diff --git a/Types/Size.cs b/Types/Size.cs index 2e1891aab..532487826 100644 --- a/Types/Size.cs +++ b/Types/Size.cs @@ -11,9 +11,16 @@ using System; namespace Terminal { + /// + /// Stores an ordered pair of integers, which specify a Height and Width. + /// public struct Size { private int width, height; + + /// + /// Gets a Size structure that has a Height and Width value of 0. + /// public static readonly Size Empty; /// @@ -208,6 +215,12 @@ namespace Terminal { return String.Format ("{{Width={0}, Height={1}}}", width, height); } + /// + /// Adds the width and height of one Size structure to the width and height of another Size structure. + /// + /// The add. + /// The first Size structure to add. + /// The second Size structure to add. public static Size Add (Size sz1, Size sz2) { return new Size (sz1.Width + sz2.Width, diff --git a/docfx/api/Terminal/Terminal.Point.yml b/docfx/api/Terminal/Terminal.Point.yml index e0ff36cad..0d233bce4 100644 --- a/docfx/api/Terminal/Terminal.Point.yml +++ b/docfx/api/Terminal/Terminal.Point.yml @@ -30,6 +30,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane. syntax: content: public struct Point inheritance: @@ -94,18 +95,19 @@ items: assemblies: - Terminal namespace: Terminal + summary: Adds the specified Size to the specified Point. syntax: content: public static Terminal.Point Add (Terminal.Point pt, Terminal.Size sz); parameters: - id: pt type: Terminal.Point - description: To be added. + description: The Point to add. - id: sz type: Terminal.Size - description: To be added. + description: The Size to add. return: type: Terminal.Point - description: To be added. + description: The Point that is the result of the addition operation. overload: Terminal.Point.Add* exceptions: [] - uid: Terminal.Point.Empty @@ -233,12 +235,13 @@ items: assemblies: - Terminal namespace: Terminal + summary: Offset the specified p. syntax: content: public void Offset (Terminal.Point p); parameters: - id: p type: Terminal.Point - description: To be added. + description: P. overload: Terminal.Point.Offset* exceptions: [] - uid: Terminal.Point.op_Addition(Terminal.Point,Terminal.Size) @@ -440,6 +443,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the x-coordinate of this Point. syntax: content: public int X; return: @@ -458,6 +462,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the y-coordinate of this Point. syntax: content: public int Y; return: diff --git a/docfx/api/Terminal/Terminal.Rect.yml b/docfx/api/Terminal/Terminal.Rect.yml index 5ce64178d..0178b97ea 100644 --- a/docfx/api/Terminal/Terminal.Rect.yml +++ b/docfx/api/Terminal/Terminal.Rect.yml @@ -44,6 +44,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Stores a set of four integers that represent the location and size of a rectangle syntax: content: public struct Rect inheritance: @@ -323,6 +324,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the height of this Rectangle structure. syntax: content: public int Height; return: @@ -781,6 +783,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the width of this Rect structure. syntax: content: public int Width; return: @@ -799,6 +802,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure. syntax: content: public int X; return: @@ -817,6 +821,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure. syntax: content: public int Y; return: diff --git a/docfx/api/Terminal/Terminal.Size.yml b/docfx/api/Terminal/Terminal.Size.yml index 045d6b7ae..928341ce3 100644 --- a/docfx/api/Terminal/Terminal.Size.yml +++ b/docfx/api/Terminal/Terminal.Size.yml @@ -28,6 +28,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Stores an ordered pair of integers, which specify a Height and Width. syntax: content: public struct Size inheritance: @@ -92,18 +93,19 @@ items: assemblies: - Terminal namespace: Terminal + summary: Adds the width and height of one Size structure to the width and height of another Size structure. syntax: content: public static Terminal.Size Add (Terminal.Size sz1, Terminal.Size sz2); parameters: - id: sz1 type: Terminal.Size - description: To be added. + description: The first Size structure to add. - id: sz2 type: Terminal.Size - description: To be added. + description: The second Size structure to add. return: type: Terminal.Size - description: To be added. + description: The add. overload: Terminal.Size.Add* exceptions: [] - uid: Terminal.Size.Empty @@ -118,6 +120,7 @@ items: assemblies: - Terminal namespace: Terminal + summary: Gets a Size structure that has a Height and Width value of 0. syntax: content: public static readonly Terminal.Size Empty; return: diff --git a/docs/api/Terminal.html b/docs/api/Terminal.html index 5eaf87f2f..a850f0401 100644 --- a/docs/api/Terminal.html +++ b/docs/api/Terminal.html @@ -147,11 +147,14 @@

Describes a mouse event

Point

-
+

Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.

+

Rect

-
+

Stores a set of four integers that represent the location and size of a rectangle

+

Size

-
+

Stores an ordered pair of integers, which specify a Height and Width.

+

Enums

Color

diff --git a/docs/api/Terminal/Terminal.Point.html b/docs/api/Terminal/Terminal.Point.html index d70bd1e01..19194389b 100644 --- a/docs/api/Terminal/Terminal.Point.html +++ b/docs/api/Terminal/Terminal.Point.html @@ -72,7 +72,8 @@

Struct Point

-
+

Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.

+
Namespace: Terminal
Assembly: Terminal.dll
@@ -186,7 +187,8 @@

X

-
+

Gets or sets the x-coordinate of this Point.

+
Declaration
@@ -211,7 +213,8 @@

Y

-
+

Gets or sets the y-coordinate of this Point.

+
Declaration
@@ -271,7 +274,8 @@

Add(Point, Size)

-
+

Adds the specified Size to the specified Point.

+
Declaration
@@ -290,13 +294,13 @@ Point pt -

To be added.

+

The Point to add.

Size sz -

To be added.

+

The Size to add.

@@ -312,7 +316,7 @@ Point -

To be added.

+

The Point that is the result of the addition operation.

@@ -437,7 +441,8 @@

Offset(Point)

-
+

Offset the specified p.

+
Declaration
@@ -456,7 +461,7 @@ Point p -

To be added.

+

P.

diff --git a/docs/api/Terminal/Terminal.Rect.html b/docs/api/Terminal/Terminal.Rect.html index c1bb77fd1..0418e7c44 100644 --- a/docs/api/Terminal/Terminal.Rect.html +++ b/docs/api/Terminal/Terminal.Rect.html @@ -72,7 +72,8 @@

Struct Rect

-
+

Stores a set of four integers that represent the location and size of a rectangle

+
Namespace: Terminal
Assembly: Terminal.dll
@@ -205,7 +206,8 @@

Height

-
+

Gets or sets the height of this Rectangle structure.

+
Declaration
@@ -230,7 +232,8 @@

Width

-
+

Gets or sets the width of this Rect structure.

+
Declaration
@@ -255,7 +258,8 @@

X

-
+

Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure.

+
Declaration
@@ -280,7 +284,8 @@

Y

-
+

Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure.

+
Declaration
diff --git a/docs/api/Terminal/Terminal.Size.html b/docs/api/Terminal/Terminal.Size.html index aec1fa2a8..6c2281d70 100644 --- a/docs/api/Terminal/Terminal.Size.html +++ b/docs/api/Terminal/Terminal.Size.html @@ -72,7 +72,8 @@

Struct Size

-
+

Stores an ordered pair of integers, which specify a Height and Width.

+
Namespace: Terminal
Assembly: Terminal.dll
@@ -157,7 +158,8 @@

Empty

-
+

Gets a Size structure that has a Height and Width value of 0.

+
Declaration
@@ -277,7 +279,8 @@

Add(Size, Size)

-
+

Adds the width and height of one Size structure to the width and height of another Size structure.

+
Declaration
@@ -296,13 +299,13 @@ Size sz1 -

To be added.

+

The first Size structure to add.

Size sz2 -

To be added.

+

The second Size structure to add.

@@ -318,7 +321,7 @@ Size -

To be added.

+

The add.

diff --git a/docs/manifest.json b/docs/manifest.json index bc8cb7503..6d65e4422 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":"/1PuhFzoQidfNv/AYOeP3Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Button.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Button.html","hash":"AOrIPmOl0LyuL4Q/Cuu8BA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ColorScheme.html","hash":"6FoPQFMOgLRgfGsmkgmkaA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Colors.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Colors.html","hash":"hTNKl1AMUmC3DJCMsvGY/A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBar.html","hash":"JlY39x34qaenJ2sqRvbSmA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal.yml","output":{".html":{"relative_path":"api/Terminal.html","hash":"gKZ6HXyXx9kNlkc/A80Bxw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Point.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Point.html","hash":"cailyrfD9Y/tr5b2596SYw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Toplevel.html","hash":"6QFcwHvBMGr4KRO14KdUeg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseFlags.html","hash":"HuTdvqKEXLOsX6vasFWkKw=="}},"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/Terminal.Key.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Key.html","hash":"Own6isULkMxAXV/FAnz6Cg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Label.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Label.html","hash":"GNOBfpMNzt2uVW2Q+1Ey5A=="}},"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":"R83rZy9pvm8QGnzp5wLbVw=="}},"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":"ENFDgaI1CPsZ7cP3ufSnZQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Size.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Size.html","hash":"dbCoQlSvlIB2xUcAe5/e0g=="}},"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":"PFSt/2ITlr9wLK74F8m00A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Color.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Color.html","hash":"QNYr3es+bd7JHveIbEflog=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CursesDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CursesDriver.html","hash":"LEZNZrmyRxai7iKgBohTRw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.RadioGroup.html","hash":"QkLYZiszmBsvejc4WEQFoQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextField.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextField.html","hash":"VzXgT8lAfrrwVgGjkD42Ig=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MessageBox.html","hash":"94sXhl7NmT8q7uBZbSy8hA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.View.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.View.html","hash":"llGOc9vdREYzWTnQmkROaQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Window.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Window.html","hash":"OW2Ls4Mv/Inyh4ICiG3r0w=="}},"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.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ConsoleDriver.html","hash":"/ImK0726/L9Ybxj8sFUZ2A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Dialog.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Dialog.html","hash":"FPmLQK56P2foDCD+uZGAUA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.KeyEvent.html","hash":"qCPAyivNpN13W4XhvZhTIw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.html","hash":"FAr59mG5AW6pAQJFGZ7MXw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBarItem.html","hash":"6L7xElRY0i4gyn9ONrpJ6w=="}},"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.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CheckBox.html","hash":"QV/9sfxbXNgScZkUqgolqg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Rect.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Rect.html","hash":"z7sIdX73IQ86xDKIzN3RGw=="}},"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":"my+anBngoc09+75CBxOGEQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Key.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Key.html","hash":"Own6isULkMxAXV/FAnz6Cg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MouseFlags.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MouseFlags.html","hash":"HuTdvqKEXLOsX6vasFWkKw=="}},"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/Terminal.MenuBarItem.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBarItem.html","hash":"6L7xElRY0i4gyn9ONrpJ6w=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Window.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Window.html","hash":"OW2Ls4Mv/Inyh4ICiG3r0w=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Button.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Button.html","hash":"AOrIPmOl0LyuL4Q/Cuu8BA=="}},"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.Color.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Color.html","hash":"QNYr3es+bd7JHveIbEflog=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Dialog.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Dialog.html","hash":"FPmLQK56P2foDCD+uZGAUA=="}},"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":"R83rZy9pvm8QGnzp5wLbVw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ConsoleDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ConsoleDriver.html","hash":"/ImK0726/L9Ybxj8sFUZ2A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MessageBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MessageBox.html","hash":"94sXhl7NmT8q7uBZbSy8hA=="}},"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/Terminal.Application.RunState.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.RunState.html","hash":"ENFDgaI1CPsZ7cP3ufSnZQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.MenuBar.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.MenuBar.html","hash":"JlY39x34qaenJ2sqRvbSmA=="}},"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":"llGOc9vdREYzWTnQmkROaQ=="}},"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.ColorScheme.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ColorScheme.html","hash":"6FoPQFMOgLRgfGsmkgmkaA=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Colors.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Colors.html","hash":"hTNKl1AMUmC3DJCMsvGY/A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CursesDriver.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CursesDriver.html","hash":"LEZNZrmyRxai7iKgBohTRw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.TextField.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.TextField.html","hash":"VzXgT8lAfrrwVgGjkD42Ig=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.KeyEvent.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.KeyEvent.html","hash":"qCPAyivNpN13W4XhvZhTIw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Point.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Point.html","hash":"fMCyg/evG2XS41SB6tnchg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.CheckBox.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.CheckBox.html","hash":"QV/9sfxbXNgScZkUqgolqg=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Label.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Label.html","hash":"GNOBfpMNzt2uVW2Q+1Ey5A=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.RadioGroup.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.RadioGroup.html","hash":"QkLYZiszmBsvejc4WEQFoQ=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Application.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Application.html","hash":"FAr59mG5AW6pAQJFGZ7MXw=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.ScrollView.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.ScrollView.html","hash":"PFSt/2ITlr9wLK74F8m00A=="}},"is_incremental":false,"version":""},{"type":"Toc","source_relative_path":"api/toc.yml","output":{".html":{"relative_path":"api/toc.html","hash":"/1PuhFzoQidfNv/AYOeP3Q=="}},"is_incremental":false,"version":""},{"type":"ManagedReference","source_relative_path":"api/Terminal/Terminal.Toplevel.yml","output":{".html":{"relative_path":"api/Terminal/Terminal.Toplevel.html","hash":"6QFcwHvBMGr4KRO14KdUeg=="}},"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":""}],"version_info":{}} \ No newline at end of file diff --git a/ecmadocs/en/Terminal/Point.xml b/ecmadocs/en/Terminal/Point.xml index b834325f1..b65abd706 100644 --- a/ecmadocs/en/Terminal/Point.xml +++ b/ecmadocs/en/Terminal/Point.xml @@ -10,7 +10,9 @@ - To be added. + + Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane. + To be added. @@ -71,10 +73,12 @@ - To be added. - To be added. - To be added. - To be added. + The Point to add. + The Size to add. + + Adds the specified Size to the specified Point. + + The Point that is the result of the addition operation. To be added. @@ -176,8 +180,11 @@ - To be added. - To be added. + P. + + Offset the specified p. + + The offset. To be added. @@ -395,7 +402,9 @@ System.Int32 - To be added. + + Gets or sets the x-coordinate of this Point. + To be added. @@ -410,7 +419,9 @@ System.Int32 - To be added. + + Gets or sets the y-coordinate of this Point. + To be added. diff --git a/ecmadocs/en/Terminal/Rect.xml b/ecmadocs/en/Terminal/Rect.xml index b7e043d70..9ab0d3003 100644 --- a/ecmadocs/en/Terminal/Rect.xml +++ b/ecmadocs/en/Terminal/Rect.xml @@ -10,7 +10,9 @@ - To be added. + + Stores a set of four integers that represent the location and size of a rectangle + To be added. @@ -265,7 +267,9 @@ System.Int32 - To be added. + + Gets or sets the height of this Rectangle structure. + To be added. @@ -707,7 +711,9 @@ System.Int32 - To be added. + + Gets or sets the width of this Rect structure. + To be added. @@ -722,7 +728,9 @@ System.Int32 - To be added. + + Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure. + To be added. @@ -737,7 +745,9 @@ System.Int32 - To be added. + + Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure. + To be added. diff --git a/ecmadocs/en/Terminal/Size.xml b/ecmadocs/en/Terminal/Size.xml index 4863744ea..b90851808 100644 --- a/ecmadocs/en/Terminal/Size.xml +++ b/ecmadocs/en/Terminal/Size.xml @@ -10,7 +10,9 @@ - To be added. + + Stores an ordered pair of integers, which specify a Height and Width. + To be added. @@ -71,10 +73,12 @@ - To be added. - To be added. - To be added. - To be added. + The first Size structure to add. + The second Size structure to add. + + Adds the width and height of one Size structure to the width and height of another Size structure. + + The add. To be added. @@ -89,7 +93,9 @@ Terminal.Size - To be added. + + Gets a Size structure that has a Height and Width value of 0. + To be added.