From 51175189c6d7313a3b84019e39496f957c4e6164 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 11 Dec 2011 12:55:19 +0100 Subject: moved from Mate-Extra --- src/gpm-prefs-server.h | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/gpm-prefs-server.h (limited to 'src/gpm-prefs-server.h') diff --git a/src/gpm-prefs-server.h b/src/gpm-prefs-server.h new file mode 100644 index 0000000..62cadb6 --- /dev/null +++ b/src/gpm-prefs-server.h @@ -0,0 +1,67 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2007 Richard Hughes + * + * 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_PREFS_SERVER_H +#define __GPM_PREFS_SERVER_H + +#include + +G_BEGIN_DECLS + +#define GPM_TYPE_PREFS_SERVER (gpm_prefs_server_get_type ()) +#define GPM_PREFS_SERVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GPM_TYPE_PREFS_SERVER, GpmPrefsServer)) +#define GPM_PREFS_SERVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GPM_TYPE_PREFS_SERVER, GpmPrefsServerClass)) +#define GPM_IS_PREFS_SERVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GPM_TYPE_PREFS_SERVER)) +#define GPM_IS_PREFS_SERVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GPM_TYPE_PREFS_SERVER)) +#define GPM_PREFS_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GPM_TYPE_PREFS_SERVER, GpmPrefsServerClass)) + +#define GPM_PREFS_SERVER_BACKLIGHT 1 +#define GPM_PREFS_SERVER_LID 4 +#define GPM_PREFS_SERVER_BATTERY 8 +#define GPM_PREFS_SERVER_UPS 16 +#define GPM_PREFS_SERVER_KEYLIGHT 32 + +typedef struct GpmPrefsServerPrivate GpmPrefsServerPrivate; + +typedef struct +{ + GObject parent; + GpmPrefsServerPrivate *priv; +} GpmPrefsServer; + +typedef struct +{ + GObjectClass parent_class; + void (* capability_changed) (GpmPrefsServer *server, + gint capability); +} GpmPrefsServerClass; + +GType gpm_prefs_server_get_type (void); +GpmPrefsServer *gpm_prefs_server_new (void); + +gboolean gpm_prefs_server_get_capability (GpmPrefsServer *server, + gint *capability); +gboolean gpm_prefs_server_set_capability (GpmPrefsServer *server, + gint capability); + +G_END_DECLS + +#endif /* __GPM_PREFS_SERVER_H */ -- cgit v1.2.1