diff options
Diffstat (limited to 'src/gpm-idle.h')
-rw-r--r-- | src/gpm-idle.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/gpm-idle.h b/src/gpm-idle.h new file mode 100644 index 0000000..e186838 --- /dev/null +++ b/src/gpm-idle.h @@ -0,0 +1,74 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2005 William Jon McCann <[email protected]> + * Copyright (C) 2005-2008 Richard Hughes <[email protected]> + * + * 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 */ |