summaryrefslogtreecommitdiff
path: root/src/gpm-idle.h
blob: e18683847dcad525fa087949a6a402f24a9513ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2005 William Jon McCann <mccann@jhu.edu>
 * Copyright (C) 2005-2008 Richard Hughes <richard@hughsie.com>
 *
 * Licensed under the GNU General Public License Version 2
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef __GPM_IDLE_H
#define __GPM_IDLE_H

#include <glib-object.h>

G_BEGIN_DECLS

#define GPM_TYPE_IDLE		(gpm_idle_get_type ())
#define GPM_IDLE(o)		(G_TYPE_CHECK_INSTANCE_CAST ((o), GPM_TYPE_IDLE, GpmIdle))
#define GPM_IDLE_CLASS(k)	(G_TYPE_CHECK_CLASS_CAST((k), GPM_TYPE_IDLE, GpmIdleClass))
#define GPM_IS_IDLE(o)		(G_TYPE_CHECK_INSTANCE_TYPE ((o), GPM_TYPE_IDLE))
#define GPM_IS_IDLE_CLASS(k)	(G_TYPE_CHECK_CLASS_TYPE ((k), GPM_TYPE_IDLE))
#define GPM_IDLE_GET_CLASS(o)	(G_TYPE_INSTANCE_GET_CLASS ((o), GPM_TYPE_IDLE, GpmIdleClass))

typedef enum {
	GPM_IDLE_MODE_NORMAL,
	GPM_IDLE_MODE_DIM,
	GPM_IDLE_MODE_BLANK,
	GPM_IDLE_MODE_SLEEP
} GpmIdleMode;

typedef struct GpmIdlePrivate GpmIdlePrivate;

typedef struct
{
	GObject		parent;
	GpmIdlePrivate *priv;
} GpmIdle;

typedef struct
{
	GObjectClass	parent_class;
	void		(* idle_changed)		(GpmIdle	*idle,
							 GpmIdleMode	 mode);
} GpmIdleClass;

GType		 gpm_idle_get_type			(void);
GpmIdle		*gpm_idle_new				(void);
GpmIdleMode	 gpm_idle_get_mode			(GpmIdle	*idle);
void		 gpm_idle_set_check_cpu			(GpmIdle	*idle,
							 gboolean	 check_type_cpu);
gboolean	 gpm_idle_set_timeout_dim		(GpmIdle	*idle,
							 guint		 timeout);
gboolean	 gpm_idle_set_timeout_blank		(GpmIdle	*idle,
							 guint		 timeout);
gboolean	 gpm_idle_set_timeout_sleep		(GpmIdle	*idle,
							 guint		 timeout);
void		 gpm_idle_test				(gpointer	 data);

G_END_DECLS

#endif /* __GPM_IDLE_H */