~seb128/unity-settings-daemon/battery-info-key

« back to all changes in this revision

Viewing changes to src/gnome-settings-plugins-engine.h

  • Committer: William Jon McCann
  • Author(s): William Jon McCann
  • Date: 2007-12-14 05:06:55 UTC
  • Revision ID: git-v1:b7f5d9895c19338f10b0bdd494b221b13b540d9d
Initial checkin. Previously lived in gdm module.

2007-12-14  William Jon McCann  <mccann@jhu.edu>

        * configure.ac, etc: Initial checkin.  Previously
        lived in gdm module.


svn path=/trunk/; revision=2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2002-2005 - Paolo Maggi
 
4
 * Copyright (C) 2007        William Jon McCann <mccann@jhu.edu>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place, Suite 330,
 
19
 * Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
#ifndef __GNOME_SETTINGS_PLUGINS_ENGINE_H__
 
23
#define __GNOME_SETTINGS_PLUGINS_ENGINE_H__
 
24
 
 
25
#include <glib.h>
 
26
 
 
27
typedef struct _GnomeSettingsPluginInfo GnomeSettingsPluginInfo;
 
28
 
 
29
gboolean         gnome_settings_plugins_engine_init                   (const char *gconf_prefix);
 
30
void             gnome_settings_plugins_engine_shutdown               (void);
 
31
 
 
32
void             gnome_settings_plugins_engine_garbage_collect        (void);
 
33
 
 
34
const GList     *gnome_settings_plugins_engine_get_plugins_list       (void);
 
35
 
 
36
gboolean         gnome_settings_plugins_engine_activate_plugin        (GnomeSettingsPluginInfo *info);
 
37
gboolean         gnome_settings_plugins_engine_deactivate_plugin      (GnomeSettingsPluginInfo *info);
 
38
gboolean         gnome_settings_plugins_engine_plugin_is_active       (GnomeSettingsPluginInfo *info);
 
39
gboolean         gnome_settings_plugins_engine_plugin_is_available    (GnomeSettingsPluginInfo *info);
 
40
 
 
41
const char      *gnome_settings_plugins_engine_get_plugin_name        (GnomeSettingsPluginInfo *info);
 
42
const char      *gnome_settings_plugins_engine_get_plugin_description (GnomeSettingsPluginInfo *info);
 
43
const char     **gnome_settings_plugins_engine_get_plugin_authors     (GnomeSettingsPluginInfo *info);
 
44
const char      *gnome_settings_plugins_engine_get_plugin_website     (GnomeSettingsPluginInfo *info);
 
45
const char      *gnome_settings_plugins_engine_get_plugin_copyright   (GnomeSettingsPluginInfo *info);
 
46
 
 
47
#endif  /* __GNOME_SETTINGS_PLUGINS_ENGINE_H__ */