1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_EVENTS_OZONE_EVDEV_KEY_EVENT_CONVERTER_EVDEV_H_
6 #define UI_EVENTS_OZONE_EVDEV_KEY_EVENT_CONVERTER_EVDEV_H_
8 #include "base/files/file_path.h"
9 #include "base/message_loop/message_pump_libevent.h"
10 #include "ui/events/event.h"
11 #include "ui/events/events_export.h"
12 #include "ui/events/ozone/evdev/event_converter_evdev.h"
13 #include "ui/events/ozone/evdev/event_modifiers_evdev.h"
19 class EVENTS_EXPORT KeyEventConverterEvdev
20 : public EventConverterEvdev
,
21 base::MessagePumpLibevent::Watcher
{
23 KeyEventConverterEvdev(int fd
,
25 EventModifiersEvdev
* modifiers
);
26 virtual ~KeyEventConverterEvdev();
28 // Start & stop watching for events.
29 virtual void Start() OVERRIDE
;
30 virtual void Stop() OVERRIDE
;
32 // Overidden from base::MessagePumpLibevent::Watcher.
33 virtual void OnFileCanReadWithoutBlocking(int fd
) OVERRIDE
;
34 virtual void OnFileCanWriteWithoutBlocking(int fd
) OVERRIDE
;
36 void ProcessEvents(const struct input_event
* inputs
, int count
);
39 // File descriptor for the /dev/input/event* instance.
42 // Path to input device.
45 // Shared modifier state.
46 EventModifiersEvdev
* modifiers_
;
48 // Controller for watching the input fd.
49 base::MessagePumpLibevent::FileDescriptorWatcher controller_
;
51 void ConvertKeyEvent(int key
, int value
);
53 DISALLOW_COPY_AND_ASSIGN(KeyEventConverterEvdev
);
58 #endif // UI_EVENTS_OZONE_EVDEV_KEY_EVENT_CONVERTER_EVDEV_H_