nice-curses ~master (2019-06-16T16:28:04Z)
Dub
Repo
UIElement
nice
ui
base
Undocumented in source.
abstract
class
UIElement {
protected
Window
window
;
this
(UI ui, int nlines, int ncols, int y, int x);
bool
visible
;
bool
focusable
;
void
draw
(bool active);
void
focus
();
void
unfocus
();
bool
keystroke
(WChar key);
}
Constructors
this
this
(UI ui, int nlines, int ncols, int y, int x)
Undocumented in source.
Members
Functions
draw
void
draw
(bool active)
Undocumented in source.
focus
void
focus
()
Undocumented in source. Be warned that the author may not have intended to support it.
keystroke
bool
keystroke
(WChar key)
Undocumented in source. Be warned that the author may not have intended to support it.
unfocus
void
unfocus
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
focusable
bool
focusable
;
Undocumented in source.
visible
bool
visible
;
Undocumented in source.
window
Window
window
;
Undocumented in source.
Meta
Source
See Implementation
nice
ui
base
classes
UI
UIElement
UISignal