Release Clutter 1.11.4 (snapshot)
[profile/ivi/clutter.git] / clutter / clutter-stage-manager-private.h
1 /*
2  * Clutter.
3  *
4  * An OpenGL based 'interactive canvas' library.
5  *
6  * Copyright (C) 2010  Intel Corporation.
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  * Author:
22  *   Emmanuele Bassi <ebassi@linux.intel.com>
23  */
24
25 #ifndef __CLUTTER_STAGE_MANAGER_PRIVATE_H__
26 #define __CLUTTER_STAGE_MANAGER_PRIVATE_H__
27
28 #include <clutter/clutter-stage-manager.h>
29
30 G_BEGIN_DECLS
31
32 struct _ClutterStageManager
33 {
34   GObject parent_instance;
35
36   GSList *stages;
37 };
38
39 /* stage manager */
40 void _clutter_stage_manager_add_stage         (ClutterStageManager *stage_manager,
41                                                ClutterStage        *stage);
42 void _clutter_stage_manager_remove_stage      (ClutterStageManager *stage_manager,
43                                                ClutterStage        *stage);
44 void _clutter_stage_manager_set_default_stage (ClutterStageManager *stage_manager,
45                                                ClutterStage        *stage);
46
47 G_END_DECLS
48
49 #endif /* __CLUTTER_STAGE_MANAGER_PRIVATE_H__ */