changed license to GPL v2
[livewp] / applet / src / livewp-multiactor.h
1 /* vim: set sw=4 ts=4 et: */
2 /*
3  * This file is part of Live Wallpaper (livewp)
4  * 
5  * Copyright (C) 2010 Vlad Vasiliev
6  * Copyright (C) 2010 Tanya Makova
7  *       for the code
8  * 
9  * This software is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2 of
12  * the License, or (at your option) any later version.
13  * 
14  * This software is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  * 
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this software; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23 */
24 /*******************************************************************************/
25 #ifndef _livewp_multiactor_h
26 #define _livewp_multiactor_h 1
27 /*******************************************************************************/
28 #include <glib-object.h>
29
30 #include <libhildondesktop/libhildondesktop.h>
31 #include "livewp-common.h"
32 /*******************************************************************************/
33 MultiActor * multiactor_init(gchar * name, GSList * child, gint x, gint y, gint z, double scale, gboolean visible);
34 void multiactor_set_visible(MultiActor *ma, gboolean visible);
35 void multiactor_set_scale(MultiActor *ma, double scale);
36 void multiactor_set_position(MultiActor *ma, gint dx, gint dy, gint dz);
37 void actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z);
38 #endif