~ubuntu-branches/ubuntu/precise/indicator-session/precise

« back to all changes in this revision

Viewing changes to .pc/01-remove-dead-gss-handling.patch/src/lock-helper.h

  • Committer: Package Import Robot
  • Author(s): Ted Gould
  • Date: 2012-02-07 21:19:27 UTC
  • mfrom: (1.1.45)
  • Revision ID: package-import@ubuntu.com-20120207211927-y6ugyk5oyjf4yynz
Tags: 0.3.90-0ubuntu1
* New upstream release.
  * Screensaver code cleanup
  * Fix ordering of items on request
  * Removing GOA support
  * Fix GTK3 Box Deprecation
  * Updating to dbusmenu 0.5.90
  * Making the gtk logout helper and apt optional build time choices
  * Add name hints to the indicators
  * bump version for release
* Drop debian/patches/01-remove-dead-gss-handling.patch: Upstream
* debian/control: Updating dbusmenu dep to 0.5.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
A small helper for locking the screen.
3
 
 
4
 
Copyright 2009 Canonical Ltd.
5
 
 
6
 
Authors:
7
 
    Ted Gould <ted@canonical.com>
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
 
#ifndef LOCK_HELPER_H__
23
 
#define LOCK_HELPER_H__
24
 
 
25
 
#include <libdbusmenu-glib/menuitem.h>
26
 
 
27
 
void screensaver_throttle (gchar * reason);
28
 
void screensaver_unthrottle (void);
29
 
 
30
 
gboolean will_lock_screen (void);
31
 
void lock_screen (DbusmenuMenuitem * mi, guint timestamp, gpointer data);
32
 
gboolean lock_screen_setup (gpointer data);
33
 
 
34
 
#endif /* LOCK_HELPER_H__ */