~xavi-garcia-mena/ubuntu/vivid/upower/percentages-power-off

« back to all changes in this revision

Viewing changes to src/up-wakeups.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2010-02-16 10:16:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100216101624-2cmwqsr1ndftdd87
Tags: upstream-0.9.0+git20100216.72bb2
ImportĀ upstreamĀ versionĀ 0.9.0+git20100216.72bb2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2009 Richard Hughes <richard@hughsie.com>
 
4
 *
 
5
 * Licensed under the GNU General Public License Version 2
 
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 of the License, or
 
10
 * (at your option) 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 this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 */
 
21
 
 
22
#ifndef __UP_WAKEUPS_H
 
23
#define __UP_WAKEUPS_H
 
24
 
 
25
#include <glib-object.h>
 
26
#include <dbus/dbus-glib.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
#define UP_TYPE_WAKEUPS         (up_wakeups_get_type ())
 
31
#define UP_WAKEUPS(o)                   (G_TYPE_CHECK_INSTANCE_CAST ((o), UP_TYPE_WAKEUPS, UpWakeups))
 
32
#define UP_WAKEUPS_CLASS(k)             (G_TYPE_CHECK_CLASS_CAST((k), UP_TYPE_WAKEUPS, UpWakeupsClass))
 
33
#define UP_IS_WAKEUPS(o)                (G_TYPE_CHECK_INSTANCE_TYPE ((o), UP_TYPE_WAKEUPS))
 
34
#define UP_IS_WAKEUPS_CLASS(k)          (G_TYPE_CHECK_CLASS_TYPE ((k), UP_TYPE_WAKEUPS))
 
35
#define UP_WAKEUPS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), UP_TYPE_WAKEUPS, UpWakeupsClass))
 
36
 
 
37
typedef struct UpWakeupsPrivate UpWakeupsPrivate;
 
38
 
 
39
typedef struct
 
40
{
 
41
        GObject                  parent;
 
42
        UpWakeupsPrivate        *priv;
 
43
} UpWakeups;
 
44
 
 
45
typedef struct
 
46
{
 
47
        GObjectClass    parent_class;
 
48
        void            (* total_changed)               (UpWakeups      *wakeups,
 
49
                                                         guint           value);
 
50
        void            (* data_changed)                (UpWakeups      *wakeups);
 
51
} UpWakeupsClass;
 
52
 
 
53
UpWakeups       *up_wakeups_new                 (void);
 
54
void             up_wakeups_test                        (gpointer        user_data);
 
55
 
 
56
GType            up_wakeups_get_type                    (void);
 
57
gboolean         up_wakeups_get_total                   (UpWakeups      *wakeups,
 
58
                                                         guint          *value,
 
59
                                                         GError         **error);
 
60
gboolean         up_wakeups_get_data                    (UpWakeups      *wakeups,
 
61
                                                         GPtrArray      **requests,
 
62
                                                         GError         **error);
 
63
 
 
64
G_END_DECLS
 
65
 
 
66
#endif  /* __UP_WAKEUPS_H */
 
67