[cosmetic] cleanup copyright headers
[vuplus_xbmc] / xbmc / windowing / egl / wayland / Callback.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2011-2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22 #include <boost/noncopyable.hpp>
23 #include <boost/function.hpp>
24
25 #include <wayland-client.h>
26
27 class IDllWaylandClient;
28
29 namespace xbmc
30 {
31 namespace wayland
32 {
33 /* Callback encapsulates a callback object that might be called
34  * by the compositor through the client library at an arbitrary point
35  * in time. A custom closure can be provided as func to be called
36  * whenever this callback is fired
37  */
38 class Callback :
39   boost::noncopyable
40 {
41 public:
42
43   typedef boost::function<void(uint32_t)> Func;
44
45   Callback(IDllWaylandClient &clientLibrary,
46            struct wl_callback *callback,
47            const Func &func);
48   ~Callback();
49
50   struct wl_callback * GetWlCallback();
51
52   static const struct wl_callback_listener m_listener;
53
54   static void OnCallback(void *,
55                          struct wl_callback *,
56                          uint32_t);
57
58 private:
59
60   IDllWaylandClient &m_clientLibrary;
61   struct wl_callback *m_callback;
62   Func m_func;
63 };
64 }
65 }