~skypce/indicator-session/indicator-session

« back to all changes in this revision

Viewing changes to src/gtk-dialog/gconf-helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Evgeni Golov
  • Date: 2011-04-03 14:16:17 UTC
  • mfrom: (13.1.31 natty)
  • Revision ID: james.westby@ubuntu.com-20110403141617-wvacgrixp44tw6i4
Tags: 0.2.15-1
* Merge from Ubuntu.
  Closes: #620671
* Standards-Version: 3.9.1
* Improve package descriptions.
* Update debian/copyright to DEP5 rev173.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
A small wrapper utility for connecting to gconf.
3
 
 
4
 
Copyright 2009 Canonical Ltd.
5
 
 
6
 
Authors:
7
 
    Christoph Korn <c_korn@gmx.de>
8
 
 
9
 
This program is free software: you can redistribute it and/or modify it 
10
 
under the terms of the GNU General Public License version 3, as published 
11
 
by the Free Software Foundation.
12
 
 
13
 
This program is distributed in the hope that it will be useful, but 
14
 
WITHOUT ANY WARRANTY; without even the implied warranties of 
15
 
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
16
 
PURPOSE.  See the GNU General Public License for more details.
17
 
 
18
 
You should have received a copy of the GNU General Public License along 
19
 
with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
*/
21
 
 
22
 
 
23
 
#ifndef __GCONF_HELPER_H__
24
 
#define __GCONF_HELPER_H__ 1
25
 
 
26
 
#include <gconf/gconf-client.h>
27
 
 
28
 
#include <glib/gi18n.h>
29
 
 
30
 
#include <dbus/dbus-glib.h>
31
 
#include <dbus/dbus-glib-bindings.h>
32
 
 
33
 
#include <libdbusmenu-glib/server.h>
34
 
#include <libdbusmenu-glib/menuitem.h>
35
 
 
36
 
#define SUPPRESS_KEY    "/apps/indicator-session/suppress_logout_restart_shutdown"
37
 
#define GLOBAL_DIR      "/apps/indicator-session"
38
 
 
39
 
typedef struct _RestartShutdownLogoutMenuItems
40
 
{
41
 
        DbusmenuMenuitem * logout_mi;
42
 
        DbusmenuMenuitem * restart_mi;
43
 
        DbusmenuMenuitem * shutdown_mi;
44
 
}
45
 
RestartShutdownLogoutMenuItems;
46
 
 
47
 
void update_menu_entries(RestartShutdownLogoutMenuItems*);
48
 
gboolean supress_confirmations (void);
49
 
 
50
 
#endif /* __GCONF_HELPER__ */