1 /*
2  * Clutter.
3  *
4  * An OpenGL based 'interactive canvas' library.
5  *
6  * Copyright (C) 2014 Canonical Ltd.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * Authors:
22  *  Marco Trevisan <marco.trevisan@canonical.com>
23  */
24 
25 #ifndef __CLUTTER_BACKEND_MIR_H__
26 #define __CLUTTER_BACKEND_MIR_H__
27 
28 #include <glib-object.h>
29 #include <clutter/clutter-backend.h>
30 
31 G_BEGIN_DECLS
32 
33 #define CLUTTER_TYPE_BACKEND_MIR                (clutter_backend_mir_get_type ())
34 #define CLUTTER_BACKEND_MIR(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_BACKEND_MIR, ClutterBackendMir))
35 #define CLUTTER_IS_BACKEND_MIR(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_BACKEND_MIR))
36 #define CLUTTER_BACKEND_MIR_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_BACKEND_MIR, ClutterBackendMirClass))
37 #define CLUTTER_IS_BACKEND_MIR_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_BACKEND_MIR))
38 #define CLUTTER_BACKEND_MIR_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_BACKEND_MIR, ClutterBackendMirClass))
39 
40 typedef struct _ClutterBackendMir       ClutterBackendMir;
41 typedef struct _ClutterBackendMirClass  ClutterBackendMirClass;
42 
43 struct _ClutterBackendMirClass
44 {
45   ClutterBackendClass parent_class;
46 };
47 
48 GType clutter_backend_mir_get_type (void) G_GNUC_CONST;
49 
50 ClutterBackend *clutter_backend_mir_new (void);
51 
52 void _clutter_events_mir_init (ClutterBackend *backend);
53 
54 G_END_DECLS
55 
56 #endif /* __CLUTTER_BACKEND_MIR_H__ */
57