OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StickyKeys
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ash/wm/
sticky_keys.h
27
//
StickyKeys
is an accessibility feature for users to be able to compose key
56
// In the case of Chrome OS,
StickyKeys
supports Shift,Alt,Ctrl modifiers. Each
59
//
StickyKeys
is disabled by default.
60
class ASH_EXPORT
StickyKeys
: public ui::EventHandler {
62
StickyKeys
();
63
virtual ~
StickyKeys
();
91
DISALLOW_COPY_AND_ASSIGN(
StickyKeys
);
94
// StickyKeysHandler handles key event and performs
StickyKeys
for specific
121
// Here, (*) means key event will be consumed by
StickyKeys
, and (#) means event
sticky_keys.cc
90
//
StickyKeys
91
StickyKeys
::
StickyKeys
()
104
StickyKeys
::~
StickyKeys
() {
107
void
StickyKeys
::Enable(bool enabled) {
127
bool
StickyKeys
::HandleKeyEvent(ui::KeyEvent* event) {
134
bool
StickyKeys
::HandleMouseEvent(ui::MouseEvent* event) {
140
bool
StickyKeys
::HandleScrollEvent(ui::ScrollEvent* event) {
146
void
StickyKeys
::OnKeyEvent(ui::KeyEvent* event)
[
all
...]
/external/chromium_org/ash/
shell.h
104
class
StickyKeys
;
532
StickyKeys
* sticky_keys() {
678
scoped_ptr<
StickyKeys
> sticky_keys_;
shell.cc
804
// The
StickyKeys
event filter also rewrites events and must be added
806
sticky_keys_.reset(new
StickyKeys
);
[
all
...]
Completed in 41 milliseconds