123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- ### YamlMime:ManagedReference
- items:
- - uid: Terminal.Responder
- id: Responder
- children:
- - Terminal.Responder.#ctor
- - Terminal.Responder.CanFocus
- - Terminal.Responder.HasFocus
- - Terminal.Responder.MouseEvent(Terminal.MouseEvent)
- - Terminal.Responder.ProcessColdKey(Terminal.KeyEvent)
- - Terminal.Responder.ProcessHotKey(Terminal.KeyEvent)
- - Terminal.Responder.ProcessKey(Terminal.KeyEvent)
- langs:
- - csharp
- name: Responder
- nameWithType: Responder
- fullName: Terminal.Responder
- type: Class
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public class Responder
- inheritance:
- - System.Object
- derivedClasses:
- - Terminal.View
- implements: []
- inheritedMembers: []
- - uid: Terminal.Responder.#ctor
- id: '#ctor'
- parent: Terminal.Responder
- langs:
- - csharp
- name: Responder()
- nameWithType: Responder.Responder()
- fullName: Responder.Responder()
- type: Constructor
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public Responder ();
- parameters: []
- overload: Terminal.Responder.#ctor*
- exceptions: []
- - uid: Terminal.Responder.CanFocus
- id: CanFocus
- parent: Terminal.Responder
- langs:
- - csharp
- name: CanFocus
- nameWithType: Responder.CanFocus
- fullName: Responder.CanFocus
- type: Property
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public virtual bool CanFocus { get; set; }
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Responder.CanFocus*
- exceptions: []
- - uid: Terminal.Responder.HasFocus
- id: HasFocus
- parent: Terminal.Responder
- langs:
- - csharp
- name: HasFocus
- nameWithType: Responder.HasFocus
- fullName: Responder.HasFocus
- type: Property
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public virtual bool HasFocus { get; }
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Responder.HasFocus*
- exceptions: []
- - uid: Terminal.Responder.MouseEvent(Terminal.MouseEvent)
- id: MouseEvent(Terminal.MouseEvent)
- parent: Terminal.Responder
- langs:
- - csharp
- name: MouseEvent(MouseEvent)
- nameWithType: Responder.MouseEvent(MouseEvent)
- fullName: Responder.MouseEvent(MouseEvent)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- syntax:
- content: public virtual bool MouseEvent (Terminal.MouseEvent me);
- parameters:
- - id: me
- type: Terminal.MouseEvent
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Responder.MouseEvent*
- exceptions: []
- - uid: Terminal.Responder.ProcessColdKey(Terminal.KeyEvent)
- id: ProcessColdKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- langs:
- - csharp
- name: ProcessColdKey(KeyEvent)
- nameWithType: Responder.ProcessColdKey(KeyEvent)
- fullName: Responder.ProcessColdKey(KeyEvent)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: >-
- This method can be overwritten by views that
- want to provide accelerator functionality
- (Alt-key for example), but without
- interefering with normal ProcessKey behavior.
- remarks: >-
- <p>
- After keys are sent to the subviews on the
- current view, all the view are
- processed and the key is passed to the views
- to allow some of them to process the keystroke
- as a cold-key. </p>
- <p>
- This functionality is used, for example, by
- default buttons to act on the enter key.
- Processing this as a hot-key would prevent
- non-default buttons from consuming the enter
- keypress when they have the focus.
- </p>
- syntax:
- content: public virtual bool ProcessColdKey (Terminal.KeyEvent kb);
- parameters:
- - id: kb
- type: Terminal.KeyEvent
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Responder.ProcessColdKey*
- exceptions: []
- - uid: Terminal.Responder.ProcessHotKey(Terminal.KeyEvent)
- id: ProcessHotKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- langs:
- - csharp
- name: ProcessHotKey(KeyEvent)
- nameWithType: Responder.ProcessHotKey(KeyEvent)
- fullName: Responder.ProcessHotKey(KeyEvent)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: >-
- This method can be overwritten by view that
- want to provide accelerator functionality
- (Alt-key for example).
- remarks: >-
- <p>
- Before keys are sent to the subview on the
- current view, all the views are
- processed and the key is passed to the widgets
- to allow some of them to process the keystroke
- as a hot-key. </p>
- <p>
- For example, if you implement a button that
- has a hotkey ok "o", you would catch the
- combination Alt-o here. If the event is
- caught, you must return true to stop the
- keystroke from being dispatched to other
- views.
- </p>
- syntax:
- content: public virtual bool ProcessHotKey (Terminal.KeyEvent kb);
- parameters:
- - id: kb
- type: Terminal.KeyEvent
- description: To be added.
- return:
- type: System.Boolean
- description: To be added.
- overload: Terminal.Responder.ProcessHotKey*
- exceptions: []
- - uid: Terminal.Responder.ProcessKey(Terminal.KeyEvent)
- id: ProcessKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- langs:
- - csharp
- name: ProcessKey(KeyEvent)
- nameWithType: Responder.ProcessKey(KeyEvent)
- fullName: Responder.ProcessKey(KeyEvent)
- type: Method
- assemblies:
- - Terminal
- namespace: Terminal
- summary: >-
- If the view is focused, gives the view a
- chance to process the keystroke.
- remarks: "<p>\n Views can override this method if they are\n interested in processing the given keystroke.\n If they consume the keystroke, they must\n return true to stop the keystroke from being\n processed by other widgets or consumed by the\n widget engine. If they return false, the\n keystroke will be passed using the ProcessColdKey\n method to other views to process.\n </p>\n <p>\n The View implementation does nothing but return false,\n so it is not necessary to call base.ProcessKey if you \n derive directly from View, but you should if you derive\n other View subclasses.\n </p>"
- syntax:
- content: public virtual 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.Responder.ProcessKey*
- exceptions: []
- references:
- - uid: System.Object
- parent: System
- isExternal: true
- name: Object
- nameWithType: Object
- fullName: System.Object
- - uid: Terminal.Responder.#ctor
- parent: Terminal.Responder
- isExternal: false
- name: Responder()
- nameWithType: Responder.Responder()
- fullName: Responder.Responder()
- - uid: Terminal.Responder.CanFocus
- parent: Terminal.Responder
- isExternal: false
- name: CanFocus
- nameWithType: Responder.CanFocus
- fullName: Responder.CanFocus
- - uid: System.Boolean
- parent: System
- isExternal: true
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- - uid: Terminal.Responder.HasFocus
- parent: Terminal.Responder
- isExternal: false
- name: HasFocus
- nameWithType: Responder.HasFocus
- fullName: Responder.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.MouseEvent
- parent: Terminal
- isExternal: false
- name: MouseEvent
- nameWithType: MouseEvent
- fullName: Terminal.MouseEvent
- - uid: Terminal.Responder.ProcessColdKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- isExternal: false
- name: ProcessColdKey(KeyEvent)
- nameWithType: Responder.ProcessColdKey(KeyEvent)
- fullName: Responder.ProcessColdKey(KeyEvent)
- - uid: Terminal.KeyEvent
- parent: Terminal
- isExternal: false
- name: KeyEvent
- nameWithType: KeyEvent
- fullName: Terminal.KeyEvent
- - uid: Terminal.Responder.ProcessHotKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- isExternal: false
- name: ProcessHotKey(KeyEvent)
- nameWithType: Responder.ProcessHotKey(KeyEvent)
- fullName: Responder.ProcessHotKey(KeyEvent)
- - uid: Terminal.Responder.ProcessKey(Terminal.KeyEvent)
- parent: Terminal.Responder
- isExternal: false
- name: ProcessKey(KeyEvent)
- nameWithType: Responder.ProcessKey(KeyEvent)
- fullName: Responder.ProcessKey(KeyEvent)
- - uid: Terminal.Responder.#ctor*
- parent: Terminal.Responder
- isExternal: false
- name: Responder
- nameWithType: Responder.Responder
- fullName: Responder.Responder
- - uid: Terminal.Responder.CanFocus*
- parent: Terminal.Responder
- isExternal: false
- name: CanFocus
- nameWithType: Responder.CanFocus
- fullName: Responder.CanFocus
- - uid: Terminal.Responder.HasFocus*
- parent: Terminal.Responder
- isExternal: false
- name: HasFocus
- nameWithType: Responder.HasFocus
- fullName: Responder.HasFocus
- - uid: Terminal.Responder.MouseEvent*
- parent: Terminal.Responder
- isExternal: false
- name: MouseEvent
- nameWithType: Responder.MouseEvent
- fullName: Responder.MouseEvent
- - uid: Terminal.Responder.ProcessColdKey*
- parent: Terminal.Responder
- isExternal: false
- name: ProcessColdKey
- nameWithType: Responder.ProcessColdKey
- fullName: Responder.ProcessColdKey
- - uid: Terminal.Responder.ProcessHotKey*
- parent: Terminal.Responder
- isExternal: false
- name: ProcessHotKey
- nameWithType: Responder.ProcessHotKey
- fullName: Responder.ProcessHotKey
- - uid: Terminal.Responder.ProcessKey*
- parent: Terminal.Responder
- isExternal: false
- name: ProcessKey
- nameWithType: Responder.ProcessKey
- fullName: Responder.ProcessKey
|