Mir
seat.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2015-2016 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:
17  * Andreas Pokorny <andreas.pokorny@canonical.com>
18  */
19 
20 #ifndef MIR_INPUT_SEAT_H_
21 #define MIR_INPUT_SEAT_H_
22 
23 #include "mir/geometry/rectangle.h"
24 #include "mir_toolkit/event.h"
25 
26 #include <memory>
27 
28 namespace mir
29 {
30 namespace input
31 {
32 class Device;
33 class Seat
34 {
35 public:
36  Seat()=default;
37  virtual ~Seat() = default;
38  virtual void add_device(Device const& device) = 0;
39  virtual void remove_device(Device const& device) = 0;
40  virtual void dispatch_event(MirEvent& event) = 0;
41  virtual geometry::Rectangle get_rectangle_for(Device const& dev) = 0;
42 private:
43  Seat(Seat const&) = delete;
44  Seat& operator=(Seat const&) = delete;
45 };
46 
47 }
48 }
49 
50 #endif
All things Mir.
Definition: atomic_callback.h:25
Definition: seat.h:33
virtual void dispatch_event(MirEvent &event)=0
virtual geometry::Rectangle get_rectangle_for(Device const &dev)=0
Definition: rectangle.h:33
Definition: event_private.h:181
virtual void add_device(Device const &device)=0
virtual ~Seat()=default
Definition: device.h:37
virtual void remove_device(Device const &device)=0

Copyright © 2012-2015 Canonical Ltd.
Generated on Wed Mar 30 00:29:56 UTC 2016