~ubuntu-branches/ubuntu/lucid/deskbar-applet/lucid

« back to all changes in this revision

Viewing changes to deskbar/handlers/gdmclient/_gdmclient.defs

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Moog
  • Date: 2009-07-13 21:25:43 UTC
  • mfrom: (1.5.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20090713212543-hp1l2phr6egiq5ml
Tags: 2.27.4-0ubuntu1
* New upstream release: (LP: #398943)
  - Fixed bug in files handler that uppercase querys never showed up
  - Use gio instead gnome.ui to retrieve thumbnails
  - Use SessionManager DBus service to logout/restart/shutdown instead of gnome.ui
  - Fixed bug #573639: Remove deprecated libgnomeui dependency
  - Always execute default action of first item when pressing Enter in entry
  - Use Utils.url_show_file instead of gnome-open
* debian/control{.in}:
  - remove useless scrollkeeper build-dep
* debian/patches
  - refresh the autoconf patch for the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
;; -*- scheme -*-
2
 
 
3
 
(define-flags LogoutAction
4
 
  (in-module "GdmClient")
5
 
  (c-name "GdmLogoutAction")
6
 
  (values
7
 
    '("none" "GDM_LOGOUT_ACTION_NONE")
8
 
    '("shutdown" "GDM_LOGOUT_ACTION_SHUTDOWN")
9
 
    '("reboot" "GDM_LOGOUT_ACTION_REBOOT")
10
 
    '("suspend" "GDM_LOGOUT_ACTION_SUSPEND")
11
 
  )
12
 
)
13
 
 
14
 
(define-function supports_logout_action
15
 
  (c-name "gdm_supports_logout_action")
16
 
  (return-type gboolean)
17
 
  (parameters
18
 
    '("GdmLogoutAction" "action")
19
 
  )
20
 
)
21
 
 
22
 
(define-function set_logout_action
23
 
  (c-name "gdm_set_logout_action")
24
 
  (return-type "none")
25
 
  (parameters
26
 
    '("GdmLogoutAction" "action")
27
 
  )
28
 
)
29
 
 
30
 
(define-function get_logout_action
31
 
  (c-name "gdm_get_logout_action")
32
 
  (return-type "GdmLogoutAction")
33
 
)
34
 
 
35
 
(define-function new_login
36
 
  (c-name "gdm_new_login")
37
 
  (return-type "none")
38
 
)