~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to panels/mouse/gsd-input-helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya, Micah Gersten, Rodrigo Moya
  • Date: 2011-05-24 10:55:28 UTC
  • mfrom: (1.1.46 upstream)
  • Revision ID: james.westby@ubuntu.com-20110524105528-dlmxhkwzc0t67kzn
Tags: 1:3.0.2-1ubuntu3
[ Micah Gersten ]
* debian/control:
  - Add reaks/Replaces on g-s-d (<< 3.0~) for gnome-control-center-data (LP: #786417)

[ Rodrigo Moya ]
* New upstream release
* debian/watch:
  - Switch to .bz2, as this is what is used in ftp.gnome.org now
* debian/patches/01_git_remove_gettext_calls.patch
* debian/patches/01_git_kill_warning.patch:
  - Remove upstreamed patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <X11/extensions/XInput.h>
28
28
#include <X11/extensions/XIproto.h>
29
29
 
30
 
XDevice * device_is_touchpad  (XDeviceInfo deviceinfo);
31
 
gboolean  touchpad_is_present (void);
 
30
typedef enum {
 
31
        COMMAND_DEVICE_ADDED,
 
32
        COMMAND_DEVICE_REMOVED,
 
33
        COMMAND_DEVICE_PRESENT
 
34
} CustomCommand;
 
35
 
 
36
gboolean  supports_xinput_devices (void);
 
37
gboolean  device_is_touchpad      (XDevice                *xdevice);
 
38
gboolean  touchpad_is_present     (void);
 
39
 
 
40
gboolean  run_custom_command      (GdkDevice              *device,
 
41
                                   CustomCommand           command);
32
42
 
33
43
G_END_DECLS
34
44