Merge pull request #4630 from Red-F/gotham-resume-pvr-lastplayedposition
[vuplus_xbmc] / xbmc / windowing / WinEventsWayland.h
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #ifndef WINDOW_EVENTS_WAYLAND_H
22 #define WINDOW_EVENTS_WAYLAND_H
23
24 #pragma once
25 #include "windowing/WinEvents.h"
26
27 struct wl_display;
28 struct wl_seat;
29 struct wl_surface;
30
31 class IDllWaylandClient;
32 class IDllXKBCommon;
33
34 namespace xbmc
35 {
36 namespace wayland
37 {
38 namespace events
39 {
40 class IEventQueueStrategy;
41 }
42 }
43 }
44
45 class CWinEventsWayland : public IWinEvents
46 {
47 public:
48   CWinEventsWayland();
49   bool MessagePump();
50   size_t GetQueueSize();
51   static void RefreshDevices();
52   static bool IsRemoteLowBattery();
53
54   static void SetEventQueueStrategy(xbmc::wayland::events::IEventQueueStrategy &strategy);
55   static void DestroyEventQueueStrategy();
56
57   static void SetWaylandSeat(IDllWaylandClient &clientLibrary,
58                              IDllXKBCommon &xkbCommonLibrary,
59                              struct wl_seat *seat);
60   static void DestroyWaylandSeat();
61   
62   static void SetXBMCSurface(struct wl_surface *surf);
63 };
64
65 #endif