]> www.fi.muni.cz Git - evince.git/blob - cut-n-paste/totem-screensaver/totem-scrsaver.h
[totem-screensaver] Use g_bus_watch_proxy instead of g_bus_watch_name
[evince.git] / cut-n-paste / totem-screensaver / totem-scrsaver.h
1 /* 
2    Copyright (C) 2004, Bastien Nocera <hadess@hadess.net>
3
4    The Gnome Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    The Gnome Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with the Gnome Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17    Boston, MA 02110-1301  USA.
18
19    Author: Bastien Nocera <hadess@hadess.net>
20  */
21
22 #ifndef TOTEM_SCRSAVER_H
23 #define TOTEM_SCRSAVER_H
24
25 #include <glib.h>
26 #include <gio/gio.h>
27
28 G_BEGIN_DECLS
29
30 #define TOTEM_TYPE_SCRSAVER             (totem_scrsaver_get_type ())
31 #define TOTEM_SCRSAVER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), TOTEM_TYPE_SCRSAVER, TotemScrsaver))
32 #define TOTEM_SCRSAVER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), TOTEM_TYPE_SCRSAVER, TotemScrsaverClass))
33 #define TOTEM_IS_SCRSAVER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TOTEM_TYPE_SCRSAVER))
34 #define TOTEM_IS_SCRSAVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TOTEM_TYPE_SCRSAVER))
35
36 typedef struct TotemScrsaver TotemScrsaver;
37 typedef struct TotemScrsaverClass TotemScrsaverClass;
38 typedef struct TotemScrsaverPrivate TotemScrsaverPrivate;
39
40 struct TotemScrsaver {
41         GObject parent;
42         TotemScrsaverPrivate *priv;
43 };
44
45 struct TotemScrsaverClass {
46         GObjectClass parent_class; 
47 };
48
49 GType totem_scrsaver_get_type           (void) G_GNUC_CONST;
50 TotemScrsaver *totem_scrsaver_new       (void);
51 void totem_scrsaver_enable              (TotemScrsaver *scr);
52 void totem_scrsaver_disable             (TotemScrsaver *scr);
53 void totem_scrsaver_set_state           (TotemScrsaver *scr,
54                                          gboolean enable);
55
56 G_END_DECLS
57
58 #endif /* !TOTEM_SCRSAVER_H */