mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
512 lines
15 KiB
YAML
512 lines
15 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: Terminal.Dialog
|
|
id: Dialog
|
|
children:
|
|
- Terminal.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Button[])
|
|
- Terminal.Dialog.AddButton(Terminal.Button)
|
|
- Terminal.Dialog.LayoutSubviews
|
|
- Terminal.Dialog.ProcessKey(Terminal.KeyEvent)
|
|
langs:
|
|
- csharp
|
|
name: Dialog
|
|
nameWithType: Dialog
|
|
fullName: Terminal.Dialog
|
|
type: Class
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: "The dialog box is a window that by default is centered and contains one \n or more buttons."
|
|
syntax:
|
|
content: 'public class Dialog : Terminal.Window'
|
|
inheritance:
|
|
- System.Object
|
|
- Terminal.Responder
|
|
- Terminal.View
|
|
- Terminal.Toplevel
|
|
- Terminal.Window
|
|
implements: []
|
|
inheritedMembers:
|
|
- Terminal.Responder.MouseEvent(Terminal.MouseEvent)
|
|
- Terminal.Toplevel.CanFocus
|
|
- Terminal.Toplevel.Create
|
|
- Terminal.Toplevel.Running
|
|
- Terminal.View.Add(Terminal.View[])
|
|
- Terminal.View.AddCh(System.Int32,System.Int32,System.Int32)
|
|
- Terminal.View.Bounds
|
|
- Terminal.View.ChildNeedsDisplay
|
|
- Terminal.View.Clear
|
|
- Terminal.View.ClearNeedsDisplay
|
|
- Terminal.View.DrawFrame(Terminal.Rect,System.Boolean)
|
|
- Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
|
|
- Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
|
|
- Terminal.View.Driver
|
|
- Terminal.View.EnsureFocus
|
|
- Terminal.View.Focused
|
|
- Terminal.View.FocusFirst
|
|
- Terminal.View.FocusLast
|
|
- Terminal.View.FocusNext
|
|
- Terminal.View.FocusPrev
|
|
- Terminal.View.Frame
|
|
- Terminal.View.HasFocus
|
|
- Terminal.View.Id
|
|
- Terminal.View.MostFocused
|
|
- Terminal.View.Move(System.Int32,System.Int32)
|
|
- Terminal.View.PositionCursor
|
|
- Terminal.View.ProcessColdKey(Terminal.KeyEvent)
|
|
- Terminal.View.ProcessHotKey(Terminal.KeyEvent)
|
|
- Terminal.View.Remove(Terminal.View)
|
|
- Terminal.View.RemoveAll
|
|
- Terminal.View.ScreenToView(System.Int32,System.Int32)
|
|
- Terminal.View.SetFocus(Terminal.View)
|
|
- Terminal.View.SetNeedsDisplay
|
|
- Terminal.View.SetNeedsDisplay(Terminal.Rect)
|
|
- Terminal.View.Subviews
|
|
- Terminal.View.SuperView
|
|
- Terminal.View.ToString
|
|
- Terminal.View.WantMousePositionReports
|
|
- Terminal.Window.Add(Terminal.View)
|
|
- Terminal.Window.GetEnumerator
|
|
- Terminal.Window.Redraw(Terminal.Rect)
|
|
- Terminal.Window.Title
|
|
- uid: Terminal.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Button[])
|
|
id: '#ctor(System.String,System.Int32,System.Int32,Terminal.Button[])'
|
|
parent: Terminal.Dialog
|
|
langs:
|
|
- csharp
|
|
name: Dialog(String, Int32, Int32, Button[])
|
|
nameWithType: Dialog.Dialog(String, Int32, Int32, Button[])
|
|
fullName: Dialog.Dialog(String, Int32, Int32, Button[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: Initializes a new instance of the <xref href="Terminal.Dialog"></xref> class with an optional set of buttons to display
|
|
syntax:
|
|
content: public Dialog (string title, int width, int height, Terminal.Button[] buttons);
|
|
parameters:
|
|
- id: title
|
|
type: System.String
|
|
description: Title for the dialog.
|
|
- id: width
|
|
type: System.Int32
|
|
description: Width for the dialog.
|
|
- id: height
|
|
type: System.Int32
|
|
description: Height for the dialog.
|
|
- id: buttons
|
|
type: Terminal.Button[]
|
|
description: Optional buttons to lay out at the bottom of the dialog.
|
|
overload: Terminal.Dialog.#ctor*
|
|
exceptions: []
|
|
- uid: Terminal.Dialog.AddButton(Terminal.Button)
|
|
id: AddButton(Terminal.Button)
|
|
parent: Terminal.Dialog
|
|
langs:
|
|
- csharp
|
|
name: AddButton(Button)
|
|
nameWithType: Dialog.AddButton(Button)
|
|
fullName: Dialog.AddButton(Button)
|
|
type: Method
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
summary: Adds a button to the dialog, its layout will be controled by the dialog
|
|
syntax:
|
|
content: public void AddButton (Terminal.Button button);
|
|
parameters:
|
|
- id: button
|
|
type: Terminal.Button
|
|
description: Button to add.
|
|
overload: Terminal.Dialog.AddButton*
|
|
exceptions: []
|
|
- uid: Terminal.Dialog.LayoutSubviews
|
|
id: LayoutSubviews
|
|
parent: Terminal.Dialog
|
|
langs:
|
|
- csharp
|
|
name: LayoutSubviews()
|
|
nameWithType: Dialog.LayoutSubviews()
|
|
fullName: Dialog.LayoutSubviews()
|
|
type: Method
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
syntax:
|
|
content: public override void LayoutSubviews ();
|
|
parameters: []
|
|
overload: Terminal.Dialog.LayoutSubviews*
|
|
exceptions: []
|
|
- uid: Terminal.Dialog.ProcessKey(Terminal.KeyEvent)
|
|
id: ProcessKey(Terminal.KeyEvent)
|
|
parent: Terminal.Dialog
|
|
langs:
|
|
- csharp
|
|
name: ProcessKey(KeyEvent)
|
|
nameWithType: Dialog.ProcessKey(KeyEvent)
|
|
fullName: Dialog.ProcessKey(KeyEvent)
|
|
type: Method
|
|
assemblies:
|
|
- Terminal
|
|
namespace: Terminal
|
|
syntax:
|
|
content: public override bool ProcessKey (Terminal.KeyEvent kb);
|
|
parameters:
|
|
- id: kb
|
|
type: Terminal.KeyEvent
|
|
description: To be added.
|
|
return:
|
|
type: System.Boolean
|
|
description: To be added.
|
|
overload: Terminal.Dialog.ProcessKey*
|
|
exceptions: []
|
|
references:
|
|
- uid: Terminal.Window
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: Window
|
|
nameWithType: Window
|
|
fullName: Terminal.Window
|
|
- uid: Terminal.Dialog.#ctor(System.String,System.Int32,System.Int32,Terminal.Button[])
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: Dialog(String, Int32, Int32, Button[])
|
|
nameWithType: Dialog.Dialog(String, Int32, Int32, Button[])
|
|
fullName: Dialog.Dialog(String, Int32, Int32, Button[])
|
|
- uid: System.String
|
|
parent: System
|
|
isExternal: true
|
|
name: String
|
|
nameWithType: String
|
|
fullName: System.String
|
|
- uid: System.Int32
|
|
parent: System
|
|
isExternal: true
|
|
name: Int32
|
|
nameWithType: Int32
|
|
fullName: System.Int32
|
|
- uid: Terminal.Button
|
|
name: Button
|
|
nameWithType: Button
|
|
fullName: Terminal.Button
|
|
- uid: Terminal.Button[]
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: Button[]
|
|
nameWithType: Button[]
|
|
fullName: Terminal.Button[]
|
|
spec.csharp:
|
|
- uid: Terminal.Button
|
|
name: Button
|
|
nameWithType: Button
|
|
fullName: Terminal.Button
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- uid: Terminal.Dialog.AddButton(Terminal.Button)
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: AddButton(Button)
|
|
nameWithType: Dialog.AddButton(Button)
|
|
fullName: Dialog.AddButton(Button)
|
|
- uid: Terminal.Dialog.LayoutSubviews
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: LayoutSubviews()
|
|
nameWithType: Dialog.LayoutSubviews()
|
|
fullName: Dialog.LayoutSubviews()
|
|
- uid: Terminal.Dialog.ProcessKey(Terminal.KeyEvent)
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: ProcessKey(KeyEvent)
|
|
nameWithType: Dialog.ProcessKey(KeyEvent)
|
|
fullName: Dialog.ProcessKey(KeyEvent)
|
|
- uid: System.Boolean
|
|
parent: System
|
|
isExternal: true
|
|
name: Boolean
|
|
nameWithType: Boolean
|
|
fullName: System.Boolean
|
|
- uid: Terminal.KeyEvent
|
|
parent: Terminal
|
|
isExternal: false
|
|
name: KeyEvent
|
|
nameWithType: KeyEvent
|
|
fullName: Terminal.KeyEvent
|
|
- uid: Terminal.Dialog.#ctor*
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: Dialog
|
|
nameWithType: Dialog.Dialog
|
|
fullName: Dialog.Dialog
|
|
- uid: Terminal.Dialog.AddButton*
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: AddButton
|
|
nameWithType: Dialog.AddButton
|
|
fullName: Dialog.AddButton
|
|
- uid: Terminal.Dialog.LayoutSubviews*
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: LayoutSubviews
|
|
nameWithType: Dialog.LayoutSubviews
|
|
fullName: Dialog.LayoutSubviews
|
|
- uid: Terminal.Dialog.ProcessKey*
|
|
parent: Terminal.Dialog
|
|
isExternal: false
|
|
name: ProcessKey
|
|
nameWithType: Dialog.ProcessKey
|
|
fullName: Dialog.ProcessKey
|
|
- uid: Terminal.Toplevel.CanFocus
|
|
parent: Terminal.Toplevel
|
|
isExternal: false
|
|
name: CanFocus
|
|
nameWithType: Toplevel.CanFocus
|
|
fullName: Toplevel.CanFocus
|
|
- uid: Terminal.View.HasFocus
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: HasFocus
|
|
nameWithType: View.HasFocus
|
|
fullName: View.HasFocus
|
|
- uid: Terminal.Responder.MouseEvent(Terminal.MouseEvent)
|
|
parent: Terminal.Responder
|
|
isExternal: false
|
|
name: MouseEvent(MouseEvent)
|
|
nameWithType: Responder.MouseEvent(MouseEvent)
|
|
fullName: Responder.MouseEvent(MouseEvent)
|
|
- uid: Terminal.View.ProcessColdKey(Terminal.KeyEvent)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ProcessColdKey(KeyEvent)
|
|
nameWithType: View.ProcessColdKey(KeyEvent)
|
|
fullName: View.ProcessColdKey(KeyEvent)
|
|
- uid: Terminal.View.ProcessHotKey(Terminal.KeyEvent)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ProcessHotKey(KeyEvent)
|
|
nameWithType: View.ProcessHotKey(KeyEvent)
|
|
fullName: View.ProcessHotKey(KeyEvent)
|
|
- uid: Terminal.Window.Add(Terminal.View)
|
|
parent: Terminal.Window
|
|
isExternal: false
|
|
name: Add(View)
|
|
nameWithType: Window.Add(View)
|
|
fullName: Window.Add(View)
|
|
- uid: Terminal.View.Add(Terminal.View[])
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Add(View[])
|
|
nameWithType: View.Add(View[])
|
|
fullName: View.Add(View[])
|
|
- uid: Terminal.View.AddCh(System.Int32,System.Int32,System.Int32)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: AddCh(Int32, Int32, Int32)
|
|
nameWithType: View.AddCh(Int32, Int32, Int32)
|
|
fullName: View.AddCh(Int32, Int32, Int32)
|
|
- uid: Terminal.View.Bounds
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Bounds
|
|
nameWithType: View.Bounds
|
|
fullName: View.Bounds
|
|
- uid: Terminal.View.ChildNeedsDisplay
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ChildNeedsDisplay()
|
|
nameWithType: View.ChildNeedsDisplay()
|
|
fullName: View.ChildNeedsDisplay()
|
|
- uid: Terminal.View.Clear
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Clear()
|
|
nameWithType: View.Clear()
|
|
fullName: View.Clear()
|
|
- uid: Terminal.View.ClearNeedsDisplay
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ClearNeedsDisplay()
|
|
nameWithType: View.ClearNeedsDisplay()
|
|
fullName: View.ClearNeedsDisplay()
|
|
- uid: Terminal.View.DrawFrame(Terminal.Rect,System.Boolean)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: DrawFrame(Rect, Boolean)
|
|
nameWithType: View.DrawFrame(Rect, Boolean)
|
|
fullName: View.DrawFrame(Rect, Boolean)
|
|
- uid: Terminal.View.DrawHotString(System.String,Terminal.Attribute,Terminal.Attribute)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: DrawHotString(String, Attribute, Attribute)
|
|
nameWithType: View.DrawHotString(String, Attribute, Attribute)
|
|
fullName: View.DrawHotString(String, Attribute, Attribute)
|
|
- uid: Terminal.View.DrawHotString(System.String,System.Boolean,Terminal.ColorScheme)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: DrawHotString(String, Boolean, ColorScheme)
|
|
nameWithType: View.DrawHotString(String, Boolean, ColorScheme)
|
|
fullName: View.DrawHotString(String, Boolean, ColorScheme)
|
|
- uid: Terminal.View.Driver
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Driver
|
|
nameWithType: View.Driver
|
|
fullName: View.Driver
|
|
- uid: Terminal.View.EnsureFocus
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: EnsureFocus()
|
|
nameWithType: View.EnsureFocus()
|
|
fullName: View.EnsureFocus()
|
|
- uid: Terminal.View.Focused
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Focused
|
|
nameWithType: View.Focused
|
|
fullName: View.Focused
|
|
- uid: Terminal.View.FocusFirst
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: FocusFirst()
|
|
nameWithType: View.FocusFirst()
|
|
fullName: View.FocusFirst()
|
|
- uid: Terminal.View.FocusLast
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: FocusLast()
|
|
nameWithType: View.FocusLast()
|
|
fullName: View.FocusLast()
|
|
- uid: Terminal.View.FocusNext
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: FocusNext()
|
|
nameWithType: View.FocusNext()
|
|
fullName: View.FocusNext()
|
|
- uid: Terminal.View.FocusPrev
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: FocusPrev()
|
|
nameWithType: View.FocusPrev()
|
|
fullName: View.FocusPrev()
|
|
- uid: Terminal.View.Frame
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Frame
|
|
nameWithType: View.Frame
|
|
fullName: View.Frame
|
|
- uid: Terminal.Window.GetEnumerator
|
|
parent: Terminal.Window
|
|
isExternal: false
|
|
name: GetEnumerator()
|
|
nameWithType: Window.GetEnumerator()
|
|
fullName: Window.GetEnumerator()
|
|
- uid: Terminal.View.Id
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Id
|
|
nameWithType: View.Id
|
|
fullName: View.Id
|
|
- uid: Terminal.View.MostFocused
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: MostFocused
|
|
nameWithType: View.MostFocused
|
|
fullName: View.MostFocused
|
|
- uid: Terminal.View.Move(System.Int32,System.Int32)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Move(Int32, Int32)
|
|
nameWithType: View.Move(Int32, Int32)
|
|
fullName: View.Move(Int32, Int32)
|
|
- uid: Terminal.View.PositionCursor
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: PositionCursor()
|
|
nameWithType: View.PositionCursor()
|
|
fullName: View.PositionCursor()
|
|
- uid: Terminal.Window.Redraw(Terminal.Rect)
|
|
parent: Terminal.Window
|
|
isExternal: false
|
|
name: Redraw(Rect)
|
|
nameWithType: Window.Redraw(Rect)
|
|
fullName: Window.Redraw(Rect)
|
|
- uid: Terminal.View.Remove(Terminal.View)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Remove(View)
|
|
nameWithType: View.Remove(View)
|
|
fullName: View.Remove(View)
|
|
- uid: Terminal.View.RemoveAll
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: RemoveAll()
|
|
nameWithType: View.RemoveAll()
|
|
fullName: View.RemoveAll()
|
|
- uid: Terminal.View.ScreenToView(System.Int32,System.Int32)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ScreenToView(Int32, Int32)
|
|
nameWithType: View.ScreenToView(Int32, Int32)
|
|
fullName: View.ScreenToView(Int32, Int32)
|
|
- uid: Terminal.View.SetFocus(Terminal.View)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: SetFocus(View)
|
|
nameWithType: View.SetFocus(View)
|
|
fullName: View.SetFocus(View)
|
|
- uid: Terminal.View.SetNeedsDisplay
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: SetNeedsDisplay()
|
|
nameWithType: View.SetNeedsDisplay()
|
|
fullName: View.SetNeedsDisplay()
|
|
- uid: Terminal.View.SetNeedsDisplay(Terminal.Rect)
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: SetNeedsDisplay(Rect)
|
|
nameWithType: View.SetNeedsDisplay(Rect)
|
|
fullName: View.SetNeedsDisplay(Rect)
|
|
- uid: Terminal.View.Subviews
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: Subviews
|
|
nameWithType: View.Subviews
|
|
fullName: View.Subviews
|
|
- uid: Terminal.View.SuperView
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: SuperView
|
|
nameWithType: View.SuperView
|
|
fullName: View.SuperView
|
|
- uid: Terminal.View.ToString
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: ToString()
|
|
nameWithType: View.ToString()
|
|
fullName: View.ToString()
|
|
- uid: Terminal.View.WantMousePositionReports
|
|
parent: Terminal.View
|
|
isExternal: false
|
|
name: WantMousePositionReports
|
|
nameWithType: View.WantMousePositionReports
|
|
fullName: View.WantMousePositionReports
|
|
- uid: Terminal.Toplevel.Create
|
|
parent: Terminal.Toplevel
|
|
isExternal: false
|
|
name: Create()
|
|
nameWithType: Toplevel.Create()
|
|
fullName: Toplevel.Create()
|
|
- uid: Terminal.Toplevel.Running
|
|
parent: Terminal.Toplevel
|
|
isExternal: false
|
|
name: Running
|
|
nameWithType: Toplevel.Running
|
|
fullName: Toplevel.Running
|
|
- uid: Terminal.Window.Title
|
|
parent: Terminal.Window
|
|
isExternal: false
|
|
name: Title
|
|
nameWithType: Window.Title
|
|
fullName: Window.Title
|