mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Rebuild docs
This commit is contained in:
@@ -3,8 +3,10 @@ items:
|
||||
- uid: Mono.Terminal
|
||||
id: Mono.Terminal
|
||||
children:
|
||||
- Mono.Terminal.IMainLoopDriver
|
||||
- Mono.Terminal.MainLoop
|
||||
- Mono.Terminal.MainLoop.Condition
|
||||
- Mono.Terminal.UnixMainLoop
|
||||
- Mono.Terminal.UnixMainLoop.Condition
|
||||
langs:
|
||||
- csharp
|
||||
name: Mono.Terminal
|
||||
@@ -12,15 +14,27 @@ items:
|
||||
fullName: Mono.Terminal
|
||||
type: Namespace
|
||||
references:
|
||||
- uid: Mono.Terminal.IMainLoopDriver
|
||||
parent: Mono.Terminal
|
||||
isExternal: false
|
||||
name: IMainLoopDriver
|
||||
nameWithType: IMainLoopDriver
|
||||
fullName: Mono.Terminal.IMainLoopDriver
|
||||
- uid: Mono.Terminal.MainLoop
|
||||
parent: Mono.Terminal
|
||||
isExternal: false
|
||||
name: MainLoop
|
||||
nameWithType: MainLoop
|
||||
fullName: Mono.Terminal.MainLoop
|
||||
- uid: Mono.Terminal.MainLoop.Condition
|
||||
- uid: Mono.Terminal.UnixMainLoop
|
||||
parent: Mono.Terminal
|
||||
isExternal: false
|
||||
name: MainLoop.Condition
|
||||
nameWithType: MainLoop.Condition
|
||||
fullName: Mono.Terminal.MainLoop.Condition
|
||||
name: UnixMainLoop
|
||||
nameWithType: UnixMainLoop
|
||||
fullName: Mono.Terminal.UnixMainLoop
|
||||
- uid: Mono.Terminal.UnixMainLoop.Condition
|
||||
parent: Mono.Terminal
|
||||
isExternal: false
|
||||
name: UnixMainLoop.Condition
|
||||
nameWithType: UnixMainLoop.Condition
|
||||
fullName: Mono.Terminal.UnixMainLoop.Condition
|
||||
|
||||
@@ -4,10 +4,11 @@ items:
|
||||
id: MainLoop
|
||||
children:
|
||||
- Mono.Terminal.MainLoop.#ctor
|
||||
- Mono.Terminal.MainLoop.#ctor(System.Boolean)
|
||||
- Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
|
||||
- Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean})
|
||||
- Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean})
|
||||
- Mono.Terminal.MainLoop.AddWatch(System.Int32,Mono.Terminal.MainLoop.Condition,System.Func{Mono.Terminal.MainLoop,System.Boolean})
|
||||
- Mono.Terminal.MainLoop.Driver
|
||||
- Mono.Terminal.MainLoop.EventsPending(System.Boolean)
|
||||
- Mono.Terminal.MainLoop.Invoke(System.Action)
|
||||
- Mono.Terminal.MainLoop.MainIteration
|
||||
@@ -47,8 +48,7 @@ items:
|
||||
nameWithType: MainLoop.MainLoop()
|
||||
fullName: MainLoop.MainLoop()
|
||||
type: Constructor
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
assemblies: []
|
||||
namespace: Mono.Terminal
|
||||
summary: Default constructor
|
||||
syntax:
|
||||
@@ -56,23 +56,26 @@ items:
|
||||
parameters: []
|
||||
overload: Mono.Terminal.MainLoop.#ctor*
|
||||
exceptions: []
|
||||
- uid: Mono.Terminal.MainLoop.#ctor(System.Boolean)
|
||||
id: '#ctor(System.Boolean)'
|
||||
- uid: Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
|
||||
id: '#ctor(Mono.Terminal.IMainLoopDriver)'
|
||||
parent: Mono.Terminal.MainLoop
|
||||
langs:
|
||||
- csharp
|
||||
name: MainLoop(Boolean)
|
||||
nameWithType: MainLoop.MainLoop(Boolean)
|
||||
fullName: MainLoop.MainLoop(Boolean)
|
||||
name: MainLoop(IMainLoopDriver)
|
||||
nameWithType: MainLoop.MainLoop(IMainLoopDriver)
|
||||
fullName: MainLoop.MainLoop(IMainLoopDriver)
|
||||
type: Constructor
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Mono.Terminal
|
||||
summary: >-
|
||||
Creates a new Mainloop, to run it you must provide a driver, and choose
|
||||
one of the implementations UnixMainLoop, NetMainLoop or WindowsMainLoop.
|
||||
syntax:
|
||||
content: public MainLoop (bool useUnix);
|
||||
content: public MainLoop (Mono.Terminal.IMainLoopDriver driver);
|
||||
parameters:
|
||||
- id: useUnix
|
||||
type: System.Boolean
|
||||
- id: driver
|
||||
type: Mono.Terminal.IMainLoopDriver
|
||||
description: To be added.
|
||||
overload: Mono.Terminal.MainLoop.#ctor*
|
||||
exceptions: []
|
||||
@@ -137,8 +140,7 @@ items:
|
||||
nameWithType: MainLoop.AddWatch(Int32, MainLoop+Condition, Func<MainLoop,Boolean>)
|
||||
fullName: MainLoop.AddWatch(Int32, MainLoop+Condition, Func<MainLoop,Boolean>)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
assemblies: []
|
||||
namespace: Mono.Terminal
|
||||
summary: Watches a file descriptor for activity.
|
||||
remarks: "When the condition is met, the provided callback\n is invoked. If the callback returns false, the\n watch is automatically removed.\n \n The return value is a token that represents this watch, you can\n use this token to remove the watch by calling RemoveWatch."
|
||||
@@ -159,6 +161,26 @@ items:
|
||||
description: To be added.
|
||||
overload: Mono.Terminal.MainLoop.AddWatch*
|
||||
exceptions: []
|
||||
- uid: Mono.Terminal.MainLoop.Driver
|
||||
id: Driver
|
||||
parent: Mono.Terminal.MainLoop
|
||||
langs:
|
||||
- csharp
|
||||
name: Driver
|
||||
nameWithType: MainLoop.Driver
|
||||
fullName: MainLoop.Driver
|
||||
type: Property
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Mono.Terminal
|
||||
summary: The current IMainLoopDriver in use.
|
||||
syntax:
|
||||
content: public Mono.Terminal.IMainLoopDriver Driver { get; }
|
||||
return:
|
||||
type: Mono.Terminal.IMainLoopDriver
|
||||
description: The driver.
|
||||
overload: Mono.Terminal.MainLoop.Driver*
|
||||
exceptions: []
|
||||
- uid: Mono.Terminal.MainLoop.EventsPending(System.Boolean)
|
||||
id: EventsPending(System.Boolean)
|
||||
parent: Mono.Terminal.MainLoop
|
||||
@@ -279,8 +301,7 @@ items:
|
||||
nameWithType: MainLoop.RemoveWatch(Object)
|
||||
fullName: MainLoop.RemoveWatch(Object)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
assemblies: []
|
||||
namespace: Mono.Terminal
|
||||
summary: Removes an active watch from the mainloop.
|
||||
remarks: The token parameter is the value returned from AddWatch
|
||||
@@ -337,8 +358,7 @@ items:
|
||||
nameWithType: MainLoop.WindowsKeyPressed
|
||||
fullName: MainLoop.WindowsKeyPressed
|
||||
type: Field
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
assemblies: []
|
||||
namespace: Mono.Terminal
|
||||
summary: This event is raised when a key is pressed when using the Windows driver.
|
||||
syntax:
|
||||
@@ -360,18 +380,18 @@ references:
|
||||
name: MainLoop()
|
||||
nameWithType: MainLoop.MainLoop()
|
||||
fullName: MainLoop.MainLoop()
|
||||
- uid: Mono.Terminal.MainLoop.#ctor(System.Boolean)
|
||||
- uid: Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
name: MainLoop(Boolean)
|
||||
nameWithType: MainLoop.MainLoop(Boolean)
|
||||
fullName: MainLoop.MainLoop(Boolean)
|
||||
- uid: System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
name: Boolean
|
||||
nameWithType: Boolean
|
||||
fullName: System.Boolean
|
||||
name: MainLoop(IMainLoopDriver)
|
||||
nameWithType: MainLoop.MainLoop(IMainLoopDriver)
|
||||
fullName: MainLoop.MainLoop(IMainLoopDriver)
|
||||
- uid: Mono.Terminal.IMainLoopDriver
|
||||
parent: Mono.Terminal
|
||||
isExternal: false
|
||||
name: IMainLoopDriver
|
||||
nameWithType: IMainLoopDriver
|
||||
fullName: Mono.Terminal.IMainLoopDriver
|
||||
- uid: Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean})
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
@@ -382,6 +402,10 @@ references:
|
||||
name: Func
|
||||
nameWithType: Func
|
||||
fullName: System.Func
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
nameWithType: Boolean
|
||||
fullName: System.Boolean
|
||||
- uid: System.Func{System.Boolean}
|
||||
parent: System
|
||||
isExternal: true
|
||||
@@ -463,6 +487,12 @@ references:
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Mono.Terminal.MainLoop.Driver
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
name: Driver
|
||||
nameWithType: MainLoop.Driver
|
||||
fullName: MainLoop.Driver
|
||||
- uid: Mono.Terminal.MainLoop.EventsPending(System.Boolean)
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
@@ -576,6 +606,12 @@ references:
|
||||
name: AddWatch
|
||||
nameWithType: MainLoop.AddWatch
|
||||
fullName: MainLoop.AddWatch
|
||||
- uid: Mono.Terminal.MainLoop.Driver*
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
name: Driver
|
||||
nameWithType: MainLoop.Driver
|
||||
fullName: MainLoop.Driver
|
||||
- uid: Mono.Terminal.MainLoop.EventsPending*
|
||||
parent: Mono.Terminal.MainLoop
|
||||
isExternal: false
|
||||
|
||||
@@ -17,6 +17,7 @@ items:
|
||||
- Terminal.Gui.Dim
|
||||
- Terminal.Gui.FileDialog
|
||||
- Terminal.Gui.FrameView
|
||||
- Terminal.Gui.HexView
|
||||
- Terminal.Gui.IListDataSource
|
||||
- Terminal.Gui.Key
|
||||
- Terminal.Gui.KeyEvent
|
||||
@@ -138,6 +139,12 @@ references:
|
||||
name: FrameView
|
||||
nameWithType: FrameView
|
||||
fullName: Terminal.Gui.FrameView
|
||||
- uid: Terminal.Gui.HexView
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
name: HexView
|
||||
nameWithType: HexView
|
||||
fullName: Terminal.Gui.HexView
|
||||
- uid: Terminal.Gui.IListDataSource
|
||||
parent: Terminal.Gui
|
||||
isExternal: false
|
||||
|
||||
@@ -32,6 +32,7 @@ items:
|
||||
- Terminal.Gui.Toplevel.CanFocus
|
||||
- Terminal.Gui.Toplevel.Create
|
||||
- Terminal.Gui.Toplevel.Running
|
||||
- Terminal.Gui.Toplevel.WillPresent
|
||||
- Terminal.Gui.View.Add(Terminal.Gui.View[])
|
||||
- Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
|
||||
- Terminal.Gui.View.Bounds
|
||||
@@ -568,6 +569,12 @@ references:
|
||||
name: Running
|
||||
nameWithType: Toplevel.Running
|
||||
fullName: Toplevel.Running
|
||||
- uid: Terminal.Gui.Toplevel.WillPresent
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: Toplevel.WillPresent()
|
||||
fullName: Toplevel.WillPresent()
|
||||
- uid: Terminal.Gui.Window.Title
|
||||
parent: Terminal.Gui.Window
|
||||
isExternal: false
|
||||
|
||||
@@ -10,6 +10,7 @@ items:
|
||||
- Terminal.Gui.Dim.op_Implicit(System.Int32 to Terminal.Gui.Dim)
|
||||
- Terminal.Gui.Dim.op_Subtraction(Terminal.Gui.Dim,Terminal.Gui.Dim)
|
||||
- Terminal.Gui.Dim.Percent(System.Single)
|
||||
- Terminal.Gui.Dim.Sized(System.Int32)
|
||||
- Terminal.Gui.Dim.Width(Terminal.Gui.View)
|
||||
langs:
|
||||
- csharp
|
||||
@@ -203,6 +204,30 @@ items:
|
||||
description: The percent Dim object.
|
||||
overload: Terminal.Gui.Dim.Percent*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Dim.Sized(System.Int32)
|
||||
id: Sized(System.Int32)
|
||||
parent: Terminal.Gui.Dim
|
||||
langs:
|
||||
- csharp
|
||||
name: Sized(Int32)
|
||||
nameWithType: Dim.Sized(Int32)
|
||||
fullName: Dim.Sized(Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Creates an Absolute Pos from the specified integer value.
|
||||
syntax:
|
||||
content: public static Terminal.Gui.Dim Sized (int n);
|
||||
parameters:
|
||||
- id: n
|
||||
type: System.Int32
|
||||
description: The value to convert to the pos.
|
||||
return:
|
||||
type: Terminal.Gui.Dim
|
||||
description: The Absolute Pos.
|
||||
overload: Terminal.Gui.Dim.Sized*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Dim.Width(Terminal.Gui.View)
|
||||
id: Width(Terminal.Gui.View)
|
||||
parent: Terminal.Gui.Dim
|
||||
@@ -300,6 +325,12 @@ references:
|
||||
name: Single
|
||||
nameWithType: Single
|
||||
fullName: System.Single
|
||||
- uid: Terminal.Gui.Dim.Sized(System.Int32)
|
||||
parent: Terminal.Gui.Dim
|
||||
isExternal: false
|
||||
name: Sized(Int32)
|
||||
nameWithType: Dim.Sized(Int32)
|
||||
fullName: Dim.Sized(Int32)
|
||||
- uid: Terminal.Gui.Dim.Width(Terminal.Gui.View)
|
||||
parent: Terminal.Gui.Dim
|
||||
isExternal: false
|
||||
@@ -348,6 +379,12 @@ references:
|
||||
name: Percent
|
||||
nameWithType: Dim.Percent
|
||||
fullName: Dim.Percent
|
||||
- uid: Terminal.Gui.Dim.Sized*
|
||||
parent: Terminal.Gui.Dim
|
||||
isExternal: false
|
||||
name: Sized
|
||||
nameWithType: Dim.Sized
|
||||
fullName: Dim.Sized
|
||||
- uid: Terminal.Gui.Dim.Width*
|
||||
parent: Terminal.Gui.Dim
|
||||
isExternal: false
|
||||
|
||||
@@ -13,6 +13,7 @@ items:
|
||||
- Terminal.Gui.FileDialog.Message
|
||||
- Terminal.Gui.FileDialog.NameFieldLabel
|
||||
- Terminal.Gui.FileDialog.Prompt
|
||||
- Terminal.Gui.FileDialog.WillPresent
|
||||
langs:
|
||||
- csharp
|
||||
name: FileDialog
|
||||
@@ -22,6 +23,7 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Base class for the OpenDialog and the SaveDialog
|
||||
syntax:
|
||||
content: 'public class FileDialog : Terminal.Gui.Dialog'
|
||||
inheritance:
|
||||
@@ -299,6 +301,23 @@ items:
|
||||
description: The prompt.
|
||||
overload: Terminal.Gui.FileDialog.Prompt*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.FileDialog.WillPresent
|
||||
id: WillPresent
|
||||
parent: Terminal.Gui.FileDialog
|
||||
langs:
|
||||
- csharp
|
||||
name: WillPresent()
|
||||
nameWithType: FileDialog.WillPresent()
|
||||
fullName: FileDialog.WillPresent()
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
syntax:
|
||||
content: public override void WillPresent ();
|
||||
parameters: []
|
||||
overload: Terminal.Gui.FileDialog.WillPresent*
|
||||
exceptions: []
|
||||
references:
|
||||
- uid: Terminal.Gui.Dialog
|
||||
parent: Terminal.Gui
|
||||
@@ -396,6 +415,12 @@ references:
|
||||
name: Prompt
|
||||
nameWithType: FileDialog.Prompt
|
||||
fullName: FileDialog.Prompt
|
||||
- uid: Terminal.Gui.FileDialog.WillPresent
|
||||
parent: Terminal.Gui.FileDialog
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: FileDialog.WillPresent()
|
||||
fullName: FileDialog.WillPresent()
|
||||
- uid: Terminal.Gui.FileDialog.#ctor*
|
||||
parent: Terminal.Gui.FileDialog
|
||||
isExternal: false
|
||||
@@ -456,6 +481,12 @@ references:
|
||||
name: Prompt
|
||||
nameWithType: FileDialog.Prompt
|
||||
fullName: FileDialog.Prompt
|
||||
- uid: Terminal.Gui.FileDialog.WillPresent*
|
||||
parent: Terminal.Gui.FileDialog
|
||||
isExternal: false
|
||||
name: WillPresent
|
||||
nameWithType: FileDialog.WillPresent
|
||||
fullName: FileDialog.WillPresent
|
||||
- uid: Terminal.Gui.Toplevel.CanFocus
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
|
||||
@@ -17,6 +17,21 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: The Open Dialog provides an interactive dialog box for users to select files or directories.
|
||||
remarks: >-
|
||||
<p>
|
||||
The open dialog can be used to select files for opening, it can be configured to allow
|
||||
multiple items to be selected (based on the AllowsMultipleSelection) variable and
|
||||
you can control whether this should allow files or directories to be selected.
|
||||
</p>
|
||||
<p>
|
||||
To use it, create an instance of the OpenDialog, configure its properties, and then
|
||||
call Application.Run on the resulting instance. This will run the dialog modally,
|
||||
and when this returns, the list of filds will be available on the FilePaths property.
|
||||
</p>
|
||||
<p>
|
||||
To select more than one file, users can use the spacebar, or control-t.
|
||||
</p>
|
||||
syntax:
|
||||
content: 'public class OpenDialog : Terminal.Gui.FileDialog'
|
||||
inheritance:
|
||||
@@ -41,6 +56,7 @@ items:
|
||||
- Terminal.Gui.FileDialog.Message
|
||||
- Terminal.Gui.FileDialog.NameFieldLabel
|
||||
- Terminal.Gui.FileDialog.Prompt
|
||||
- Terminal.Gui.FileDialog.WillPresent
|
||||
- Terminal.Gui.Toplevel.CanFocus
|
||||
- Terminal.Gui.Toplevel.Create
|
||||
- Terminal.Gui.Toplevel.Running
|
||||
@@ -132,7 +148,7 @@ items:
|
||||
content: public bool AllowsMultipleSelection { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: <code>true</code> if allows multiple selection; otherwise, <code>false</code>.
|
||||
description: <code>true</code> if allows multiple selection; otherwise, <code>false</code>, defaults to false.
|
||||
overload: Terminal.Gui.OpenDialog.AllowsMultipleSelection*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.OpenDialog.CanChooseDirectories
|
||||
@@ -152,7 +168,7 @@ items:
|
||||
content: public bool CanChooseDirectories { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: <code>true</code> if can choose directories; otherwise, <code>false</code>.
|
||||
description: <code>true</code> if can choose directories; otherwise, <code>false</code> defaults to <code>false</code>.
|
||||
overload: Terminal.Gui.OpenDialog.CanChooseDirectories*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.OpenDialog.CanChooseFiles
|
||||
@@ -172,7 +188,7 @@ items:
|
||||
content: public bool CanChooseFiles { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: <code>true</code> if can choose files; otherwise, <code>false</code>.
|
||||
description: <code>true</code> if can choose files; otherwise, <code>false</code>. Defaults to <code>true</code>
|
||||
overload: Terminal.Gui.OpenDialog.CanChooseFiles*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.OpenDialog.FilePaths
|
||||
@@ -187,11 +203,11 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Gets the file paths selected
|
||||
summary: Returns the selected files, or an empty list if nothing has been selected
|
||||
syntax:
|
||||
content: public System.Collections.Generic.IReadOnlyList<NStack.ustring> FilePaths { get; }
|
||||
content: public System.Collections.Generic.IReadOnlyList<string> FilePaths { get; }
|
||||
return:
|
||||
type: System.Collections.Generic.IReadOnlyList{NStack.ustring}
|
||||
type: System.Collections.Generic.IReadOnlyList{System.String}
|
||||
description: The file paths.
|
||||
overload: Terminal.Gui.OpenDialog.FilePaths*
|
||||
exceptions: []
|
||||
@@ -248,12 +264,16 @@ references:
|
||||
name: IReadOnlyList
|
||||
nameWithType: IReadOnlyList
|
||||
fullName: System.Collections.Generic.IReadOnlyList
|
||||
- uid: System.Collections.Generic.IReadOnlyList{NStack.ustring}
|
||||
- uid: System.String
|
||||
name: String
|
||||
nameWithType: String
|
||||
fullName: System.String
|
||||
- uid: System.Collections.Generic.IReadOnlyList{System.String}
|
||||
parent: System.Collections.Generic
|
||||
isExternal: true
|
||||
name: IReadOnlyList<ustring>
|
||||
nameWithType: IReadOnlyList<ustring>
|
||||
fullName: System.Collections.Generic.IReadOnlyList<NStack.ustring>
|
||||
name: IReadOnlyList<String>
|
||||
nameWithType: IReadOnlyList<String>
|
||||
fullName: System.Collections.Generic.IReadOnlyList<System.String>
|
||||
spec.csharp:
|
||||
- uid: System.Collections.Generic.IReadOnlyList`1
|
||||
name: IReadOnlyList
|
||||
@@ -262,10 +282,10 @@ references:
|
||||
- name: <
|
||||
nameWithType: <
|
||||
fullName: <
|
||||
- uid: NStack.ustring
|
||||
name: ustring
|
||||
nameWithType: ustring
|
||||
fullName: NStack.ustring
|
||||
- uid: System.String
|
||||
name: String
|
||||
nameWithType: String
|
||||
fullName: System.String
|
||||
- name: '>'
|
||||
nameWithType: '>'
|
||||
fullName: '>'
|
||||
@@ -611,6 +631,12 @@ references:
|
||||
name: Running
|
||||
nameWithType: Toplevel.Running
|
||||
fullName: Toplevel.Running
|
||||
- uid: Terminal.Gui.FileDialog.WillPresent
|
||||
parent: Terminal.Gui.FileDialog
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: FileDialog.WillPresent()
|
||||
fullName: FileDialog.WillPresent()
|
||||
- uid: Terminal.Gui.Window.Title
|
||||
parent: Terminal.Gui.Window
|
||||
isExternal: false
|
||||
|
||||
@@ -5,6 +5,7 @@ items:
|
||||
children:
|
||||
- Terminal.Gui.Pos.#ctor
|
||||
- Terminal.Gui.Pos.AnchorEnd(System.Int32)
|
||||
- Terminal.Gui.Pos.At(System.Int32)
|
||||
- Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
|
||||
- Terminal.Gui.Pos.Center
|
||||
- Terminal.Gui.Pos.Left(Terminal.Gui.View)
|
||||
@@ -88,6 +89,30 @@ items:
|
||||
description: The Pos object anchored to the end (the bottom or the right side).
|
||||
overload: Terminal.Gui.Pos.AnchorEnd*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Pos.At(System.Int32)
|
||||
id: At(System.Int32)
|
||||
parent: Terminal.Gui.Pos
|
||||
langs:
|
||||
- csharp
|
||||
name: At(Int32)
|
||||
nameWithType: Pos.At(Int32)
|
||||
fullName: Pos.At(Int32)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Creates an Absolute Pos from the specified integer value.
|
||||
syntax:
|
||||
content: public static Terminal.Gui.Pos At (int n);
|
||||
parameters:
|
||||
- id: n
|
||||
type: System.Int32
|
||||
description: The value to convert to the pos.
|
||||
return:
|
||||
type: Terminal.Gui.Pos
|
||||
description: The Absolute Pos.
|
||||
overload: Terminal.Gui.Pos.At*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
|
||||
id: Bottom(Terminal.Gui.View)
|
||||
parent: Terminal.Gui.Pos
|
||||
@@ -386,6 +411,12 @@ references:
|
||||
name: Int32
|
||||
nameWithType: Int32
|
||||
fullName: System.Int32
|
||||
- uid: Terminal.Gui.Pos.At(System.Int32)
|
||||
parent: Terminal.Gui.Pos
|
||||
isExternal: false
|
||||
name: At(Int32)
|
||||
nameWithType: Pos.At(Int32)
|
||||
fullName: Pos.At(Int32)
|
||||
- uid: Terminal.Gui.Pos.Bottom(Terminal.Gui.View)
|
||||
parent: Terminal.Gui.Pos
|
||||
isExternal: false
|
||||
@@ -476,6 +507,12 @@ references:
|
||||
name: AnchorEnd
|
||||
nameWithType: Pos.AnchorEnd
|
||||
fullName: Pos.AnchorEnd
|
||||
- uid: Terminal.Gui.Pos.At*
|
||||
parent: Terminal.Gui.Pos
|
||||
isExternal: false
|
||||
name: At
|
||||
nameWithType: Pos.At
|
||||
fullName: Pos.At
|
||||
- uid: Terminal.Gui.Pos.Bottom*
|
||||
parent: Terminal.Gui.Pos
|
||||
isExternal: false
|
||||
|
||||
@@ -19,6 +19,7 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Responder base class implemented by objects that want to participate on keyboard and mouse input.
|
||||
syntax:
|
||||
content: public class Responder
|
||||
inheritance:
|
||||
@@ -56,11 +57,12 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.Responder"></xref> can focus.
|
||||
syntax:
|
||||
content: public virtual bool CanFocus { get; set; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: To be added.
|
||||
description: <code>true</code> if can focus; otherwise, <code>false</code>.
|
||||
overload: Terminal.Gui.Responder.CanFocus*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Responder.HasFocus
|
||||
@@ -75,11 +77,12 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.Responder"></xref> has focus.
|
||||
syntax:
|
||||
content: public virtual bool HasFocus { get; }
|
||||
return:
|
||||
type: System.Boolean
|
||||
description: To be added.
|
||||
description: <code>true</code> if has focus; otherwise, <code>false</code>.
|
||||
overload: Terminal.Gui.Responder.HasFocus*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Responder.MouseEvent(Terminal.Gui.MouseEvent)
|
||||
|
||||
@@ -4,6 +4,7 @@ items:
|
||||
id: SaveDialog
|
||||
children:
|
||||
- Terminal.Gui.SaveDialog.#ctor(NStack.ustring,NStack.ustring)
|
||||
- Terminal.Gui.SaveDialog.FileName
|
||||
langs:
|
||||
- csharp
|
||||
name: SaveDialog
|
||||
@@ -13,6 +14,8 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: "The save dialog provides an interactive dialog box for users to pick a file to \n save."
|
||||
remarks: "<p>\n To use it, create an instance of the SaveDialog, and then\n call Application.Run on the resulting instance. This will run the dialog modally,\n and when this returns, the FileName property will contain the selected value or \n null if the user canceled. \n </p>"
|
||||
syntax:
|
||||
content: 'public class SaveDialog : Terminal.Gui.FileDialog'
|
||||
inheritance:
|
||||
@@ -37,6 +40,7 @@ items:
|
||||
- Terminal.Gui.FileDialog.Message
|
||||
- Terminal.Gui.FileDialog.NameFieldLabel
|
||||
- Terminal.Gui.FileDialog.Prompt
|
||||
- Terminal.Gui.FileDialog.WillPresent
|
||||
- Terminal.Gui.Toplevel.CanFocus
|
||||
- Terminal.Gui.Toplevel.Create
|
||||
- Terminal.Gui.Toplevel.Running
|
||||
@@ -111,6 +115,28 @@ items:
|
||||
description: To be added.
|
||||
overload: Terminal.Gui.SaveDialog.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.SaveDialog.FileName
|
||||
id: FileName
|
||||
parent: Terminal.Gui.SaveDialog
|
||||
langs:
|
||||
- csharp
|
||||
name: FileName
|
||||
nameWithType: SaveDialog.FileName
|
||||
fullName: SaveDialog.FileName
|
||||
type: Property
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: >-
|
||||
Gets the name of the file the user selected for saving, or null
|
||||
if the user canceled the dialog box.
|
||||
syntax:
|
||||
content: public NStack.ustring FileName { get; }
|
||||
return:
|
||||
type: NStack.ustring
|
||||
description: The name of the file.
|
||||
overload: Terminal.Gui.SaveDialog.FileName*
|
||||
exceptions: []
|
||||
references:
|
||||
- uid: Terminal.Gui.FileDialog
|
||||
parent: Terminal.Gui
|
||||
@@ -130,12 +156,24 @@ references:
|
||||
name: ustring
|
||||
nameWithType: ustring
|
||||
fullName: NStack.ustring
|
||||
- uid: Terminal.Gui.SaveDialog.FileName
|
||||
parent: Terminal.Gui.SaveDialog
|
||||
isExternal: false
|
||||
name: FileName
|
||||
nameWithType: SaveDialog.FileName
|
||||
fullName: SaveDialog.FileName
|
||||
- uid: Terminal.Gui.SaveDialog.#ctor*
|
||||
parent: Terminal.Gui.SaveDialog
|
||||
isExternal: false
|
||||
name: SaveDialog
|
||||
nameWithType: SaveDialog.SaveDialog
|
||||
fullName: SaveDialog.SaveDialog
|
||||
- uid: Terminal.Gui.SaveDialog.FileName*
|
||||
parent: Terminal.Gui.SaveDialog
|
||||
isExternal: false
|
||||
name: FileName
|
||||
nameWithType: SaveDialog.FileName
|
||||
fullName: SaveDialog.FileName
|
||||
- uid: Terminal.Gui.Toplevel.CanFocus
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
@@ -448,6 +486,12 @@ references:
|
||||
name: Running
|
||||
nameWithType: Toplevel.Running
|
||||
fullName: Toplevel.Running
|
||||
- uid: Terminal.Gui.FileDialog.WillPresent
|
||||
parent: Terminal.Gui.FileDialog
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: FileDialog.WillPresent()
|
||||
fullName: FileDialog.WillPresent()
|
||||
- uid: Terminal.Gui.Window.Title
|
||||
parent: Terminal.Gui.Window
|
||||
isExternal: false
|
||||
|
||||
@@ -4,6 +4,7 @@ items:
|
||||
id: TextField
|
||||
children:
|
||||
- Terminal.Gui.TextField.#ctor(NStack.ustring)
|
||||
- Terminal.Gui.TextField.#ctor(System.String)
|
||||
- Terminal.Gui.TextField.#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring)
|
||||
- Terminal.Gui.TextField.CanFocus
|
||||
- Terminal.Gui.TextField.Changed
|
||||
@@ -101,6 +102,27 @@ items:
|
||||
description: Initial text contents.
|
||||
overload: Terminal.Gui.TextField.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextField.#ctor(System.String)
|
||||
id: '#ctor(System.String)'
|
||||
parent: Terminal.Gui.TextField
|
||||
langs:
|
||||
- csharp
|
||||
name: TextField(String)
|
||||
nameWithType: TextField.TextField(String)
|
||||
fullName: TextField.TextField(String)
|
||||
type: Constructor
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Public constructor that creates a text field, with layout controlled with X, Y, Width and Height.
|
||||
syntax:
|
||||
content: public TextField (string text);
|
||||
parameters:
|
||||
- id: text
|
||||
type: System.String
|
||||
description: Initial text contents.
|
||||
overload: Terminal.Gui.TextField.#ctor*
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.TextField.#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring)
|
||||
id: '#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring)'
|
||||
parent: Terminal.Gui.TextField
|
||||
@@ -355,6 +377,18 @@ references:
|
||||
name: ustring
|
||||
nameWithType: ustring
|
||||
fullName: NStack.ustring
|
||||
- uid: Terminal.Gui.TextField.#ctor(System.String)
|
||||
parent: Terminal.Gui.TextField
|
||||
isExternal: false
|
||||
name: TextField(String)
|
||||
nameWithType: TextField.TextField(String)
|
||||
fullName: TextField.TextField(String)
|
||||
- uid: System.String
|
||||
parent: System
|
||||
isExternal: true
|
||||
name: String
|
||||
nameWithType: String
|
||||
fullName: System.String
|
||||
- uid: Terminal.Gui.TextField.#ctor(System.Int32,System.Int32,System.Int32,NStack.ustring)
|
||||
parent: Terminal.Gui.TextField
|
||||
isExternal: false
|
||||
|
||||
@@ -24,6 +24,8 @@ items:
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: Multi-line text editing view
|
||||
remarks: "<p>\n The text view provides a multi-line text view. Users interact\n with it with the standard Emacs commands for movement or the arrow\n keys. \n </p>\n <table><thead><tr><th>Shortcut</th><th>Action performed</th></tr></thead><tbody><tr><td>Left cursor, Control-b</td><td>\n Moves the editing point left.\n </td></tr><tr><td>Right cursor, Control-f</td><td>\n Moves the editing point right.\n </td></tr><tr><td>Alt-b</td><td>\n Moves one word back.\n </td></tr><tr><td>Alt-f</td><td>\n Moves one word forward.\n </td></tr><tr><td>Up cursor, Control-p</td><td>\n Moves the editing point one line up.\n </td></tr><tr><td>Down cursor, Control-n</td><td>\n Moves the editing point one line down\n </td></tr><tr><td>Home key, Control-a</td><td>\n Moves the cursor to the beginning of the line.\n </td></tr><tr><td>End key, Control-e</td><td>\n Moves the cursor to the end of the line.\n </td></tr><tr><td>Delete, Control-d</td><td>\n Deletes the character in front of the cursor.\n </td></tr><tr><td>Backspace</td><td>\n Deletes the character behind the cursor.\n </td></tr><tr><td>Control-k</td><td>\n Deletes the text until the end of the line and replaces the kill buffer\n with the deleted text. You can paste this text in a different place by\n using Control-y.\n </td></tr><tr><td>Control-y</td><td>\n Pastes the content of the kill ring into the current position.\n </td></tr><tr><td>Alt-d</td><td>\n Deletes the word above the cursor and adds it to the kill ring. You \n can paste the contents of the kill ring with Control-y.\n </td></tr><tr><td>Control-q</td><td>\n Quotes the next input character, to prevent the normal processing of\n key handling to take place.\n </td></tr></tbody></table>"
|
||||
syntax:
|
||||
content: 'public class TextView : Terminal.Gui.View'
|
||||
inheritance:
|
||||
|
||||
@@ -9,6 +9,7 @@ items:
|
||||
- Terminal.Gui.Toplevel.Create
|
||||
- Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
|
||||
- Terminal.Gui.Toplevel.Running
|
||||
- Terminal.Gui.Toplevel.WillPresent
|
||||
langs:
|
||||
- csharp
|
||||
name: Toplevel
|
||||
@@ -212,6 +213,26 @@ items:
|
||||
type: System.Boolean
|
||||
description: To be added.
|
||||
exceptions: []
|
||||
- uid: Terminal.Gui.Toplevel.WillPresent
|
||||
id: WillPresent
|
||||
parent: Terminal.Gui.Toplevel
|
||||
langs:
|
||||
- csharp
|
||||
name: WillPresent()
|
||||
nameWithType: Toplevel.WillPresent()
|
||||
fullName: Toplevel.WillPresent()
|
||||
type: Method
|
||||
assemblies:
|
||||
- Terminal.Gui
|
||||
namespace: Terminal.Gui
|
||||
summary: >-
|
||||
This method is invoked by Application.Begin as part of the Application.Run after
|
||||
the views have been laid out, and before the views are drawn for the first time.
|
||||
syntax:
|
||||
content: public virtual void WillPresent ();
|
||||
parameters: []
|
||||
overload: Terminal.Gui.Toplevel.WillPresent*
|
||||
exceptions: []
|
||||
references:
|
||||
- uid: Terminal.Gui.View
|
||||
parent: Terminal.Gui
|
||||
@@ -279,6 +300,12 @@ references:
|
||||
name: Running
|
||||
nameWithType: Toplevel.Running
|
||||
fullName: Toplevel.Running
|
||||
- uid: Terminal.Gui.Toplevel.WillPresent
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: Toplevel.WillPresent()
|
||||
fullName: Toplevel.WillPresent()
|
||||
- uid: Terminal.Gui.Toplevel.#ctor*
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
@@ -303,6 +330,12 @@ references:
|
||||
name: ProcessKey
|
||||
nameWithType: Toplevel.ProcessKey
|
||||
fullName: Toplevel.ProcessKey
|
||||
- uid: Terminal.Gui.Toplevel.WillPresent*
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
name: WillPresent
|
||||
nameWithType: Toplevel.WillPresent
|
||||
fullName: Toplevel.WillPresent
|
||||
- uid: Terminal.Gui.View.HasFocus
|
||||
parent: Terminal.Gui.View
|
||||
isExternal: false
|
||||
|
||||
@@ -73,6 +73,7 @@ items:
|
||||
- Terminal.Gui.Button
|
||||
- Terminal.Gui.CheckBox
|
||||
- Terminal.Gui.FrameView
|
||||
- Terminal.Gui.HexView
|
||||
- Terminal.Gui.Label
|
||||
- Terminal.Gui.ListView
|
||||
- Terminal.Gui.MenuBar
|
||||
|
||||
@@ -39,6 +39,7 @@ items:
|
||||
- Terminal.Gui.Toplevel.Create
|
||||
- Terminal.Gui.Toplevel.ProcessKey(Terminal.Gui.KeyEvent)
|
||||
- Terminal.Gui.Toplevel.Running
|
||||
- Terminal.Gui.Toplevel.WillPresent
|
||||
- Terminal.Gui.View.Add(Terminal.Gui.View[])
|
||||
- Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
|
||||
- Terminal.Gui.View.Bounds
|
||||
@@ -737,6 +738,12 @@ references:
|
||||
name: Running
|
||||
nameWithType: Toplevel.Running
|
||||
fullName: Toplevel.Running
|
||||
- uid: Terminal.Gui.Toplevel.WillPresent
|
||||
parent: Terminal.Gui.Toplevel
|
||||
isExternal: false
|
||||
name: WillPresent()
|
||||
nameWithType: Toplevel.WillPresent()
|
||||
fullName: Toplevel.WillPresent()
|
||||
- uid: System.Collections.IEnumerable
|
||||
parent: System.Collections
|
||||
isExternal: true
|
||||
|
||||
@@ -2,10 +2,14 @@
|
||||
- uid: Mono.Terminal
|
||||
name: Mono.Terminal
|
||||
items:
|
||||
- uid: Mono.Terminal.IMainLoopDriver
|
||||
name: IMainLoopDriver
|
||||
- uid: Mono.Terminal.MainLoop
|
||||
name: MainLoop
|
||||
- uid: Mono.Terminal.MainLoop.Condition
|
||||
name: MainLoop.Condition
|
||||
- uid: Mono.Terminal.UnixMainLoop
|
||||
name: UnixMainLoop
|
||||
- uid: Mono.Terminal.UnixMainLoop.Condition
|
||||
name: UnixMainLoop.Condition
|
||||
- uid: Terminal.Gui
|
||||
name: Terminal.Gui
|
||||
items:
|
||||
@@ -37,6 +41,8 @@
|
||||
name: FileDialog
|
||||
- uid: Terminal.Gui.FrameView
|
||||
name: FrameView
|
||||
- uid: Terminal.Gui.HexView
|
||||
name: HexView
|
||||
- uid: Terminal.Gui.IListDataSource
|
||||
name: IListDataSource
|
||||
- uid: Terminal.Gui.Key
|
||||
|
||||
Reference in New Issue
Block a user