summaryrefslogtreecommitdiff
path: root/plugins/power/gpm-common.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2011-06-24 15:36:59 +0100
committerRichard Hughes <richard@hughsie.com>2011-07-04 17:54:01 +0100
commit05ce9abd445770fb4d815b7bdca5361c470239f0 (patch)
tree1ad2eb8b27528f5d68ed9e5a0d6b9e92a60ff767 /plugins/power/gpm-common.h
parent83de755f5d3481b1d19293cfc99af79f8dce79d1 (diff)
downloadgnome-settings-daemon-05ce9abd445770fb4d815b7bdca5361c470239f0.tar.gz
power: Add the DBus interface that is currently used by gnome-shell
Diffstat (limited to 'plugins/power/gpm-common.h')
-rw-r--r--plugins/power/gpm-common.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/power/gpm-common.h b/plugins/power/gpm-common.h
new file mode 100644
index 00000000..d8a47582
--- /dev/null
+++ b/plugins/power/gpm-common.h
@@ -0,0 +1,44 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2005-2011 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 __GPMCOMMON_H
+#define __GPMCOMMON_H
+
+#include <glib.h>
+#include <libupower-glib/upower.h>
+
+G_BEGIN_DECLS
+
+gchar *gpm_get_timestring (guint time);
+const gchar *gpm_device_to_localised_string (UpDevice *device);
+const gchar *gpm_device_kind_to_localised_string (UpDeviceKind kind,
+ guint number);
+const gchar *gpm_device_kind_to_icon (UpDeviceKind kind);
+const gchar *gpm_device_technology_to_localised_string (UpDeviceTechnology technology_enum);
+const gchar *gpm_device_state_to_localised_string (UpDeviceState state);
+GIcon *gpm_upower_get_device_icon (UpDevice *device,
+ gboolean use_symbolic);
+gchar *gpm_upower_get_device_summary (UpDevice *device);
+gchar *gpm_upower_get_device_description (UpDevice *device);
+
+G_END_DECLS
+
+#endif /* __GPMCOMMON_H */