mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Add timefield from Jörg Preiß
This commit is contained in:
@@ -13,6 +13,7 @@ items:
|
||||
- Terminal.Gui.Colors
|
||||
- Terminal.Gui.ColorScheme
|
||||
- Terminal.Gui.ConsoleDriver
|
||||
- Terminal.Gui.CursesDriver
|
||||
- Terminal.Gui.Dialog
|
||||
- Terminal.Gui.Dim
|
||||
- Terminal.Gui.FileDialog
|
||||
@@ -45,6 +46,7 @@ items:
|
||||
- Terminal.Gui.TextAlignment
|
||||
- Terminal.Gui.TextField
|
||||
- Terminal.Gui.TextView
|
||||
- Terminal.Gui.TimeField
|
||||
- Terminal.Gui.Toplevel
|
||||
- Terminal.Gui.View
|
||||
- Terminal.Gui.Window
|
||||
@@ -115,6 +117,12 @@ references:
|
||||
name: ConsoleDriver
|
||||
nameWithType: ConsoleDriver
|
||||
fullName: Terminal.Gui.ConsoleDriver
|
||||
- uid: Terminal.Gui.CursesDriver
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: CursesDriver
|
||||
nameWithType: CursesDriver
|
||||
fullName: Terminal.Gui.CursesDriver
|
||||
- uid: Terminal.Gui.Dialog
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
@@ -307,6 +315,12 @@ references:
|
||||
name: TextView
|
||||
nameWithType: TextView
|
||||
fullName: Terminal.Gui.TextView
|
||||
- uid: Terminal.Gui.TimeField
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: TimeField
|
||||
nameWithType: TimeField
|
||||
fullName: Terminal.Gui.TimeField
|
||||
- uid: Terminal.Gui.Toplevel
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
|
||||
@@ -4,6 +4,7 @@ items:
|
||||
id: Attribute
|
||||
children:
|
||||
- Terminal.Gui.Attribute.#ctor(System.Int32)
|
||||
- Terminal.Gui.Attribute.Make(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
- Terminal.Gui.Attribute.op_Implicit(System.Int32 to Terminal.Gui.Attribute)
|
||||
- Terminal.Gui.Attribute.op_Implicit(Terminal.Gui.Attribute to System.Int32)
|
||||
langs:
|
||||
@@ -46,6 +47,33 @@ items:
|
||||
description: Value.
|
||||
overload: Terminal.Gui.Attribute.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Attribute.Make(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
id: Make(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
parent: Terminal.Gui.Attribute
|
||||
langs:
|
||||
- csharp
|
||||
name: Make(Color, Color)
|
||||
nameWithType: Attribute.Make(Color, Color)
|
||||
fullName: Attribute.Make(Color, Color)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Creates an attribute from the specified foreground and background.
|
||||
syntax:
|
||||
content: public static Terminal.Gui.Attribute Make (Terminal.Gui.Color foreground, Terminal.Gui.Color background);
|
||||
parameters:
|
||||
- id: foreground
|
||||
type: Terminal.Gui.Color
|
||||
description: Foreground color to use.
|
||||
- id: background
|
||||
type: Terminal.Gui.Color
|
||||
description: Background color to use.
|
||||
return:
|
||||
type: Terminal.Gui.Attribute
|
||||
description: The make.
|
||||
overload: Terminal.Gui.Attribute.Make*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit(System.Int32 to Terminal.Gui.Attribute)
|
||||
id: op_Implicit(System.Int32 to Terminal.Gui.Attribute)
|
||||
parent: Terminal.Gui.Attribute
|
||||
@@ -58,15 +86,16 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Implicitly convert an integer value into an attribute
|
||||
syntax:
|
||||
content: public static Terminal.Gui.Attribute op_Implicit (int v);
|
||||
parameters:
|
||||
- id: v
|
||||
type: System.Int32
|
||||
description: To be added.
|
||||
description: value
|
||||
return:
|
||||
type: Terminal.Gui.Attribute
|
||||
description: To be added.
|
||||
description: An attribute with the specified integer value.
|
||||
overload: Terminal.Gui.Attribute.op_Implicit*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit(Terminal.Gui.Attribute to System.Int32)
|
||||
@@ -81,15 +110,16 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Implicit conversion from an attribute to the underlying Int32 representation
|
||||
syntax:
|
||||
content: public static int op_Implicit (Terminal.Gui.Attribute c);
|
||||
parameters:
|
||||
- id: c
|
||||
type: Terminal.Gui.Attribute
|
||||
description: To be added.
|
||||
description: The attribute to convert
|
||||
return:
|
||||
type: System.Int32
|
||||
description: To be added.
|
||||
description: The integer value stored in the attribute.
|
||||
overload: Terminal.Gui.Attribute.op_Implicit*
|
||||
exceptions: []
|
||||
references:
|
||||
@@ -111,18 +141,30 @@ references:
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit(System.Int32 to Terminal.Gui.Attribute)
|
||||
- uid: Terminal.Gui.Attribute.Make(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
parent: Terminal.Gui.Attribute
|
||||
isExternal: false
|
||||
name: op_Implicit(Int32 to Attribute)
|
||||
nameWithType: Attribute.op_Implicit(Int32 to Attribute)
|
||||
fullName: Attribute.op_Implicit(Int32 to Attribute)
|
||||
name: Make(Color, Color)
|
||||
nameWithType: Attribute.Make(Color, Color)
|
||||
fullName: Attribute.Make(Color, Color)
|
||||
- uid: Terminal.Gui.Attribute
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: Attribute
|
||||
nameWithType: Attribute
|
||||
fullName: Terminal.Gui.Attribute
|
||||
- uid: Terminal.Gui.Color
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: Color
|
||||
nameWithType: Color
|
||||
fullName: Terminal.Gui.Color
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit(System.Int32 to Terminal.Gui.Attribute)
|
||||
parent: Terminal.Gui.Attribute
|
||||
isExternal: false
|
||||
name: op_Implicit(Int32 to Attribute)
|
||||
nameWithType: Attribute.op_Implicit(Int32 to Attribute)
|
||||
fullName: Attribute.op_Implicit(Int32 to Attribute)
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit(Terminal.Gui.Attribute to System.Int32)
|
||||
parent: Terminal.Gui.Attribute
|
||||
isExternal: false
|
||||
@@ -135,6 +177,12 @@ references:
|
||||
name: Attribute
|
||||
nameWithType: Attribute.Attribute
|
||||
fullName: Attribute.Attribute
|
||||
- uid: Terminal.Gui.Attribute.Make*
|
||||
parent: Terminal.Gui.Attribute
|
||||
isExternal: false
|
||||
name: Make
|
||||
nameWithType: Attribute.Make
|
||||
fullName: Attribute.Make
|
||||
- uid: Terminal.Gui.Attribute.op_Implicit*
|
||||
parent: Terminal.Gui.Attribute
|
||||
isExternal: false
|
||||
|
||||
@@ -18,6 +18,7 @@ items:
|
||||
- Terminal.Gui.ConsoleDriver.LeftTee
|
||||
- Terminal.Gui.ConsoleDriver.LLCorner
|
||||
- Terminal.Gui.ConsoleDriver.LRCorner
|
||||
- Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
- Terminal.Gui.ConsoleDriver.Move(System.Int32,System.Int32)
|
||||
- Terminal.Gui.ConsoleDriver.PrepareToRun(Mono.Terminal.MainLoop,System.Action{Terminal.Gui.KeyEvent},System.Action{Terminal.Gui.MouseEvent})
|
||||
- Terminal.Gui.ConsoleDriver.Refresh
|
||||
@@ -51,6 +52,8 @@ items:
|
||||
content: public abstract class ConsoleDriver
|
||||
inheritance:
|
||||
- System.Object
|
||||
derivedClasses:
|
||||
- Terminal.Gui.CursesDriver
|
||||
implements: []
|
||||
inheritedMembers: []
|
||||
- uid: Terminal.Gui.ConsoleDriver.#ctor
|
||||
@@ -350,6 +353,32 @@ items:
|
||||
type: System.Rune
|
||||
description: To be added.
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
id: MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
langs:
|
||||
- csharp
|
||||
name: MakeAttribute(Color, Color)
|
||||
nameWithType: ConsoleDriver.MakeAttribute(Color, Color)
|
||||
fullName: ConsoleDriver.MakeAttribute(Color, Color)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
syntax:
|
||||
content: public abstract Terminal.Gui.Attribute MakeAttribute (Terminal.Gui.Color fore, Terminal.Gui.Color back);
|
||||
parameters:
|
||||
- id: fore
|
||||
type: Terminal.Gui.Color
|
||||
description: To be added.
|
||||
- id: back
|
||||
type: Terminal.Gui.Color
|
||||
description: To be added.
|
||||
return:
|
||||
type: Terminal.Gui.Attribute
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.ConsoleDriver.MakeAttribute*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.ConsoleDriver.Move(System.Int32,System.Int32)
|
||||
id: Move(System.Int32,System.Int32)
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
@@ -859,6 +888,24 @@ references:
|
||||
name: LRCorner
|
||||
nameWithType: ConsoleDriver.LRCorner
|
||||
fullName: ConsoleDriver.LRCorner
|
||||
- uid: Terminal.Gui.ConsoleDriver.MakeAttribute(Terminal.Gui.Color,Terminal.Gui.Color)
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
isExternal: false
|
||||
name: MakeAttribute(Color, Color)
|
||||
nameWithType: ConsoleDriver.MakeAttribute(Color, Color)
|
||||
fullName: ConsoleDriver.MakeAttribute(Color, Color)
|
||||
- uid: Terminal.Gui.Attribute
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: Attribute
|
||||
nameWithType: Attribute
|
||||
fullName: Terminal.Gui.Attribute
|
||||
- uid: Terminal.Gui.Color
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: Color
|
||||
nameWithType: Color
|
||||
fullName: Terminal.Gui.Color
|
||||
- uid: Terminal.Gui.ConsoleDriver.Move(System.Int32,System.Int32)
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
isExternal: false
|
||||
@@ -955,12 +1002,6 @@ references:
|
||||
name: SetAttribute(Attribute)
|
||||
nameWithType: ConsoleDriver.SetAttribute(Attribute)
|
||||
fullName: ConsoleDriver.SetAttribute(Attribute)
|
||||
- uid: Terminal.Gui.Attribute
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: Attribute
|
||||
nameWithType: Attribute
|
||||
fullName: Terminal.Gui.Attribute
|
||||
- uid: Terminal.Gui.ConsoleDriver.SetColors(System.ConsoleColor,System.ConsoleColor)
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
isExternal: false
|
||||
@@ -1105,6 +1146,12 @@ references:
|
||||
name: Init
|
||||
nameWithType: ConsoleDriver.Init
|
||||
fullName: ConsoleDriver.Init
|
||||
- uid: Terminal.Gui.ConsoleDriver.MakeAttribute*
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
isExternal: false
|
||||
name: MakeAttribute
|
||||
nameWithType: ConsoleDriver.MakeAttribute
|
||||
fullName: ConsoleDriver.MakeAttribute
|
||||
- uid: Terminal.Gui.ConsoleDriver.Move*
|
||||
parent: Terminal.Gui.ConsoleDriver
|
||||
isExternal: false
|
||||
|
||||
@@ -16,7 +16,11 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: "The dialog box is a window that by default is centered and contains one \n or more buttons."
|
||||
summary: "The dialog box is a window that by default is centered and contains one \n or more buttons. It defaults to the Colors.Dialog color scheme and has a\n 1 cell padding around the edges."
|
||||
remarks: >-
|
||||
To run the dialog modally, create the Dialog, and pass this to Application.Run which
|
||||
will execute the dialog until it terminates via the [ESC] key, or when one of the views
|
||||
or buttons added to the dialog set the Running property on the Dialog to false.
|
||||
syntax:
|
||||
content: 'public class Dialog : Terminal.Gui.Window'
|
||||
inheritance:
|
||||
|
||||
@@ -6,6 +6,7 @@ items:
|
||||
- Terminal.Gui.IListDataSource.Count
|
||||
- Terminal.Gui.IListDataSource.IsMarked(System.Int32)
|
||||
- Terminal.Gui.IListDataSource.Render(System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)
|
||||
- Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)
|
||||
- Terminal.Gui.IListDataSource.SetMark(System.Int32,System.Boolean)
|
||||
langs:
|
||||
- csharp
|
||||
@@ -73,8 +74,7 @@ items:
|
||||
nameWithType: IListDataSource.Render(Boolean, Int32, Int32, Int32, Int32)
|
||||
fullName: IListDataSource.Render(Boolean, Int32, Int32, Int32, Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
assemblies: []
|
||||
namespace: Terminal.Gui
|
||||
summary: This method is invoked to render a specified item, the method should cover the entire provided width.
|
||||
remarks: The default color will be set before this method is invoked, and will be based on whether the item is selected or not.
|
||||
@@ -98,6 +98,46 @@ items:
|
||||
description: The width that must be filled out.
|
||||
overload: Terminal.Gui.IListDataSource.Render*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)
|
||||
id: Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)
|
||||
parent: Terminal.Gui.IListDataSource
|
||||
langs:
|
||||
- csharp
|
||||
name: Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
nameWithType: IListDataSource.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
fullName: IListDataSource.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: This method is invoked to render a specified item, the method should cover the entire provided width.
|
||||
remarks: The default color will be set before this method is invoked, and will be based on whether the item is selected or not.
|
||||
syntax:
|
||||
content: public void Render (Terminal.Gui.ListView container, Terminal.Gui.ConsoleDriver driver, bool selected, int item, int col, int line, int width);
|
||||
parameters:
|
||||
- id: container
|
||||
type: Terminal.Gui.ListView
|
||||
description: To be added.
|
||||
- id: driver
|
||||
type: Terminal.Gui.ConsoleDriver
|
||||
description: To be added.
|
||||
- id: selected
|
||||
type: System.Boolean
|
||||
description: Describes whether the item being rendered is currently selected by the user.
|
||||
- id: item
|
||||
type: System.Int32
|
||||
description: The index of the item to render, zero for the first item and so on.
|
||||
- id: col
|
||||
type: System.Int32
|
||||
description: The column where the rendering will start
|
||||
- id: line
|
||||
type: System.Int32
|
||||
description: The line where the rendering will be done.
|
||||
- id: width
|
||||
type: System.Int32
|
||||
description: The width that must be filled out.
|
||||
overload: Terminal.Gui.IListDataSource.Render*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.IListDataSource.SetMark(System.Int32,System.Boolean)
|
||||
id: SetMark(System.Int32,System.Boolean)
|
||||
parent: Terminal.Gui.IListDataSource
|
||||
@@ -153,6 +193,24 @@ references:
|
||||
name: Render(Boolean, Int32, Int32, Int32, Int32)
|
||||
nameWithType: IListDataSource.Render(Boolean, Int32, Int32, Int32, Int32)
|
||||
fullName: IListDataSource.Render(Boolean, Int32, Int32, Int32, Int32)
|
||||
- uid: Terminal.Gui.IListDataSource.Render(Terminal.Gui.ListView,Terminal.Gui.ConsoleDriver,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)
|
||||
parent: Terminal.Gui.IListDataSource
|
||||
isExternal: false
|
||||
name: Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
nameWithType: IListDataSource.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
fullName: IListDataSource.Render(ListView, ConsoleDriver, Boolean, Int32, Int32, Int32, Int32)
|
||||
- uid: Terminal.Gui.ListView
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: ListView
|
||||
nameWithType: ListView
|
||||
fullName: Terminal.Gui.ListView
|
||||
- uid: Terminal.Gui.ConsoleDriver
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: ConsoleDriver
|
||||
nameWithType: ConsoleDriver
|
||||
fullName: Terminal.Gui.ConsoleDriver
|
||||
- uid: Terminal.Gui.IListDataSource.SetMark(System.Int32,System.Boolean)
|
||||
parent: Terminal.Gui.IListDataSource
|
||||
isExternal: false
|
||||
|
||||
@@ -6,6 +6,7 @@ items:
|
||||
- Terminal.Gui.Label.#ctor(NStack.ustring)
|
||||
- Terminal.Gui.Label.#ctor(Terminal.Gui.Rect,NStack.ustring)
|
||||
- Terminal.Gui.Label.#ctor(System.Int32,System.Int32,NStack.ustring)
|
||||
- Terminal.Gui.Label.MaxWidth(NStack.ustring,System.Int32)
|
||||
- Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
|
||||
- Terminal.Gui.Label.Redraw(Terminal.Gui.Rect)
|
||||
- Terminal.Gui.Label.Text
|
||||
@@ -157,6 +158,33 @@ items:
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.Label.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Label.MaxWidth(NStack.ustring,System.Int32)
|
||||
id: MaxWidth(NStack.ustring,System.Int32)
|
||||
parent: Terminal.Gui.Label
|
||||
langs:
|
||||
- csharp
|
||||
name: MaxWidth(ustring, Int32)
|
||||
nameWithType: Label.MaxWidth(ustring, Int32)
|
||||
fullName: Label.MaxWidth(ustring, Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Computes the the max width of a line or multilines needed to render by the Label control
|
||||
syntax:
|
||||
content: public static int MaxWidth (NStack.ustring text, int width);
|
||||
parameters:
|
||||
- id: text
|
||||
type: NStack.ustring
|
||||
description: Text, may contain newlines.
|
||||
- id: width
|
||||
type: System.Int32
|
||||
description: The width for the text.
|
||||
return:
|
||||
type: System.Int32
|
||||
description: Max width of lines.
|
||||
overload: Terminal.Gui.Label.MaxWidth*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
|
||||
id: MeasureLines(NStack.ustring,System.Int32)
|
||||
parent: Terminal.Gui.Label
|
||||
@@ -307,6 +335,12 @@ references:
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Terminal.Gui.Label.MaxWidth(NStack.ustring,System.Int32)
|
||||
parent: Terminal.Gui.Label
|
||||
isExternal: false
|
||||
name: MaxWidth(ustring, Int32)
|
||||
nameWithType: Label.MaxWidth(ustring, Int32)
|
||||
fullName: Label.MaxWidth(ustring, Int32)
|
||||
- uid: Terminal.Gui.Label.MeasureLines(NStack.ustring,System.Int32)
|
||||
parent: Terminal.Gui.Label
|
||||
isExternal: false
|
||||
@@ -355,6 +389,12 @@ references:
|
||||
name: Label
|
||||
nameWithType: Label.Label
|
||||
fullName: Label.Label
|
||||
- uid: Terminal.Gui.Label.MaxWidth*
|
||||
parent: Terminal.Gui.Label
|
||||
isExternal: false
|
||||
name: MaxWidth
|
||||
nameWithType: Label.MaxWidth
|
||||
fullName: Label.MaxWidth
|
||||
- uid: Terminal.Gui.Label.MeasureLines*
|
||||
parent: Terminal.Gui.Label
|
||||
isExternal: false
|
||||
|
||||
@@ -91,7 +91,7 @@ items:
|
||||
parameters:
|
||||
- id: menus
|
||||
type: Terminal.Gui.MenuBarItem[]
|
||||
description: Menus.
|
||||
description: Individual menu items, if one of those contains a null, then a separator is drawn.
|
||||
overload: Terminal.Gui.MenuBar.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.MenuBar.Menus
|
||||
|
||||
@@ -6,6 +6,7 @@ items:
|
||||
- Terminal.Gui.RadioGroup.#ctor(System.String[],System.Int32)
|
||||
- Terminal.Gui.RadioGroup.#ctor(Terminal.Gui.Rect,System.String[],System.Int32)
|
||||
- Terminal.Gui.RadioGroup.#ctor(System.Int32,System.Int32,System.String[],System.Int32)
|
||||
- Terminal.Gui.RadioGroup.Cursor
|
||||
- Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent)
|
||||
- Terminal.Gui.RadioGroup.PositionCursor
|
||||
- Terminal.Gui.RadioGroup.ProcessColdKey(Terminal.Gui.KeyEvent)
|
||||
@@ -163,6 +164,26 @@ items:
|
||||
description: The item to be selected, the value is clamped to the number of items.
|
||||
overload: Terminal.Gui.RadioGroup.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.RadioGroup.Cursor
|
||||
id: Cursor
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
langs:
|
||||
- csharp
|
||||
name: Cursor
|
||||
nameWithType: RadioGroup.Cursor
|
||||
fullName: RadioGroup.Cursor
|
||||
type: Property
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: The location of the cursor in the radio group
|
||||
syntax:
|
||||
content: public int Cursor { get; set; }
|
||||
return:
|
||||
type: System.Int32
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.RadioGroup.Cursor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent)
|
||||
id: MouseEvent(Terminal.Gui.MouseEvent)
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
@@ -382,6 +403,12 @@ references:
|
||||
name: RadioGroup(Int32, Int32, String[], Int32)
|
||||
nameWithType: RadioGroup.RadioGroup(Int32, Int32, String[], Int32)
|
||||
fullName: RadioGroup.RadioGroup(Int32, Int32, String[], Int32)
|
||||
- uid: Terminal.Gui.RadioGroup.Cursor
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
isExternal: false
|
||||
name: Cursor
|
||||
nameWithType: RadioGroup.Cursor
|
||||
fullName: RadioGroup.Cursor
|
||||
- uid: Terminal.Gui.RadioGroup.MouseEvent(Terminal.Gui.MouseEvent)
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
isExternal: false
|
||||
@@ -479,6 +506,12 @@ references:
|
||||
name: RadioGroup
|
||||
nameWithType: RadioGroup.RadioGroup
|
||||
fullName: RadioGroup.RadioGroup
|
||||
- uid: Terminal.Gui.RadioGroup.Cursor*
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
isExternal: false
|
||||
name: Cursor
|
||||
nameWithType: RadioGroup.Cursor
|
||||
fullName: RadioGroup.Cursor
|
||||
- uid: Terminal.Gui.RadioGroup.MouseEvent*
|
||||
parent: Terminal.Gui.RadioGroup
|
||||
isExternal: false
|
||||
|
||||
@@ -16,6 +16,7 @@ items:
|
||||
- Terminal.Gui.TextField.Redraw(Terminal.Gui.Rect)
|
||||
- Terminal.Gui.TextField.Secret
|
||||
- Terminal.Gui.TextField.Text
|
||||
- Terminal.Gui.TextField.Used
|
||||
langs:
|
||||
- csharp
|
||||
name: TextField
|
||||
@@ -35,6 +36,8 @@ items:
|
||||
- System.Object
|
||||
- Terminal.Gui.Responder
|
||||
- Terminal.Gui.View
|
||||
derivedClasses:
|
||||
- Terminal.Gui.TimeField
|
||||
implements: []
|
||||
inheritedMembers:
|
||||
- Terminal.Gui.View.Add(Terminal.Gui.View)
|
||||
@@ -206,9 +209,9 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: The current cursor position.
|
||||
summary: Sets or gets the current cursor position.
|
||||
syntax:
|
||||
content: public int CursorPosition { get; }
|
||||
content: public int CursorPosition { get; set; }
|
||||
return:
|
||||
type: System.Int32
|
||||
description: To be added.
|
||||
@@ -358,6 +361,26 @@ items:
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.TextField.Text*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextField.Used
|
||||
id: Used
|
||||
parent: Terminal.Gui.TextField
|
||||
langs:
|
||||
- csharp
|
||||
name: Used
|
||||
nameWithType: TextField.Used
|
||||
fullName: TextField.Used
|
||||
type: Property
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Tracks whether the text field should be considered "used", that is, that the user has moved in the entry, so new input should be appended at the cursor position, rather than clearing the entry
|
||||
syntax:
|
||||
content: public bool Used { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.TextField.Used*
|
||||
exceptions: []
|
||||
references:
|
||||
- uid: Terminal.Gui.View
|
||||
parent: Terminal.Gui
|
||||
@@ -491,6 +514,12 @@ references:
|
||||
name: Text
|
||||
nameWithType: TextField.Text
|
||||
fullName: TextField.Text
|
||||
- uid: Terminal.Gui.TextField.Used
|
||||
parent: Terminal.Gui.TextField
|
||||
isExternal: false
|
||||
name: Used
|
||||
nameWithType: TextField.Used
|
||||
fullName: TextField.Used
|
||||
- uid: Terminal.Gui.TextField.#ctor*
|
||||
parent: Terminal.Gui.TextField
|
||||
isExternal: false
|
||||
@@ -551,6 +580,12 @@ references:
|
||||
name: Text
|
||||
nameWithType: TextField.Text
|
||||
fullName: TextField.Text
|
||||
- uid: Terminal.Gui.TextField.Used*
|
||||
parent: Terminal.Gui.TextField
|
||||
isExternal: false
|
||||
name: Used
|
||||
nameWithType: TextField.Used
|
||||
fullName: TextField.Used
|
||||
- uid: Terminal.Gui.View.HasFocus
|
||||
parent: Terminal.Gui.View
|
||||
isExternal: false
|
||||
|
||||
@@ -15,6 +15,7 @@ items:
|
||||
- Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent)
|
||||
- Terminal.Gui.TextView.ReadOnly
|
||||
- Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect)
|
||||
- Terminal.Gui.TextView.ScrollTo(System.Int32)
|
||||
- Terminal.Gui.TextView.Text
|
||||
langs:
|
||||
- csharp
|
||||
@@ -299,11 +300,12 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Indicates readonly attribute of TextView
|
||||
syntax:
|
||||
content: public bool ReadOnly { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: To be added.
|
||||
description: Boolean value(Default false)
|
||||
overload: Terminal.Gui.TextView.ReadOnly*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect)
|
||||
@@ -327,6 +329,27 @@ items:
|
||||
description: The region to redraw.
|
||||
overload: Terminal.Gui.TextView.Redraw*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextView.ScrollTo(System.Int32)
|
||||
id: ScrollTo(System.Int32)
|
||||
parent: Terminal.Gui.TextView
|
||||
langs:
|
||||
- csharp
|
||||
name: ScrollTo(Int32)
|
||||
nameWithType: TextView.ScrollTo(Int32)
|
||||
fullName: TextView.ScrollTo(Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Will scroll the view to display the specified row at the top
|
||||
syntax:
|
||||
content: public void ScrollTo (int row);
|
||||
parameters:
|
||||
- id: row
|
||||
type: System.Int32
|
||||
description: Row that should be displayed at the top, if the value is negative it will be reset to zero
|
||||
overload: Terminal.Gui.TextView.ScrollTo*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextView.Text
|
||||
id: Text
|
||||
parent: Terminal.Gui.TextView
|
||||
@@ -468,6 +491,12 @@ references:
|
||||
name: Redraw(Rect)
|
||||
nameWithType: TextView.Redraw(Rect)
|
||||
fullName: TextView.Redraw(Rect)
|
||||
- uid: Terminal.Gui.TextView.ScrollTo(System.Int32)
|
||||
parent: Terminal.Gui.TextView
|
||||
isExternal: false
|
||||
name: ScrollTo(Int32)
|
||||
nameWithType: TextView.ScrollTo(Int32)
|
||||
fullName: TextView.ScrollTo(Int32)
|
||||
- uid: Terminal.Gui.TextView.Text
|
||||
parent: Terminal.Gui.TextView
|
||||
isExternal: false
|
||||
@@ -546,6 +575,12 @@ references:
|
||||
name: Redraw
|
||||
nameWithType: TextView.Redraw
|
||||
fullName: TextView.Redraw
|
||||
- uid: Terminal.Gui.TextView.ScrollTo*
|
||||
parent: Terminal.Gui.TextView
|
||||
isExternal: false
|
||||
name: ScrollTo
|
||||
nameWithType: TextView.ScrollTo
|
||||
fullName: TextView.ScrollTo
|
||||
- uid: Terminal.Gui.TextView.Text*
|
||||
parent: Terminal.Gui.TextView
|
||||
isExternal: false
|
||||
|
||||
@@ -33,6 +33,8 @@
|
||||
name: ColorScheme
|
||||
- uid: Terminal.Gui.ConsoleDriver
|
||||
name: ConsoleDriver
|
||||
- uid: Terminal.Gui.CursesDriver
|
||||
name: CursesDriver
|
||||
- uid: Terminal.Gui.Dialog
|
||||
name: Dialog
|
||||
- uid: Terminal.Gui.Dim
|
||||
@@ -97,9 +99,22 @@
|
||||
name: TextField
|
||||
- uid: Terminal.Gui.TextView
|
||||
name: TextView
|
||||
- uid: Terminal.Gui.TimeField
|
||||
name: TimeField
|
||||
- uid: Terminal.Gui.Toplevel
|
||||
name: Toplevel
|
||||
- uid: Terminal.Gui.View
|
||||
name: View
|
||||
- uid: Terminal.Gui.Window
|
||||
name: Window
|
||||
- uid: Unix.Terminal
|
||||
name: Unix.Terminal
|
||||
items:
|
||||
- uid: Unix.Terminal.Curses
|
||||
name: Curses
|
||||
- uid: Unix.Terminal.Curses.Event
|
||||
name: Curses.Event
|
||||
- uid: Unix.Terminal.Curses.MouseEvent
|
||||
name: Curses.MouseEvent
|
||||
- uid: Unix.Terminal.Curses.Window
|
||||
name: Curses.Window
|
||||
|
||||
Reference in New Issue
Block a user