Mir
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
input_dispatcher.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2014 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Andreas Pokorny <andreas.pokorny@canonical.com>
17  */
18 
19 #ifndef MIR_INPUT_INPUT_DISPATCHER_H
20 #define MIR_INPUT_INPUT_DISPATCHER_H
21 
22 #include "mir_toolkit/event.h"
23 
24 namespace mir
25 {
26 namespace input
27 {
28 
37 {
38 public:
42  virtual void configuration_changed(nsecs_t when) = 0;
46  virtual void device_reset(int32_t device_id, nsecs_t when) = 0;
47  virtual void dispatch(MirEvent const& event) = 0;
48  virtual void start() = 0;
49  virtual void stop() = 0;
50 
51  virtual ~InputDispatcher() = default;
52 };
53 
54 }
55 }
56 
57 #endif
58 
All things Mir.
Definition: aging_buffer.h:24
The InputDispatchers role is to decide what should happen with user input events. ...
Definition: input_dispatcher.h:36
virtual void dispatch(MirEvent const &event)=0
int64_t nsecs_t
Definition: event.h:36
virtual void device_reset(int32_t device_id, nsecs_t when)=0
Called when the device device_id was added removed or was reset.
virtual ~InputDispatcher()=default
Definition: event.h:227
virtual void configuration_changed(nsecs_t when)=0
Called when the device configuration changed.

Copyright © 2012,2013 Canonical Ltd.
Generated on Fri Oct 10 14:07:14 UTC 2014