~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to hw/xquartz/darwinEvents.h

  • Committer: Package Import Robot
  • Author(s): Christopher James Halse Rogers
  • Date: 2012-01-23 16:09:29 UTC
  • mfrom: (1.1.46) (0.11.34 sid)
  • Revision ID: package-import@ubuntu.com-20120123160929-k4xdb9b7xeesiukp
Tags: 2:1.11.3-0ubuntu8
* debian/patches/224_return_BadWindow_not_BadMatch.diff:
  - Fix the error values of a whole slew of window-related calls.
    Fixes some gnome-settings-daemon aborts in XLib (LP: #903973)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#define XQUARTZ_VALUATOR_LIMIT (1 << 16)
33
33
 
34
34
Bool DarwinEQInit(void);
 
35
void DarwinEQFini(void);
35
36
void DarwinEQEnqueue(const xEventPtr e);
36
37
void DarwinEQPointerPost(DeviceIntPtr pDev, xEventPtr e);
37
38
void DarwinEQSwitchScreen(ScreenPtr pScreen, Bool fromDIX);
38
39
void DarwinSendPointerEvents(DeviceIntPtr pDev, int ev_type, int ev_button, float pointer_x, float pointer_y,
39
40
                             float pressure, float tilt_x, float tilt_y);
40
 
void DarwinSendProximityEvents(int ev_type, float pointer_x, float pointer_y);
 
41
void DarwinSendProximityEvents(DeviceIntPtr pDev, int ev_type, float pointer_x, float pointer_y,
 
42
                               float pressure, float tilt_x, float tilt_y);
41
43
void DarwinSendKeyboardEvents(int ev_type, int keycode);
42
44
void DarwinSendScrollEvents(float count_x, float count_y, float pointer_x, float pointer_y,
43
45
                            float pressure, float tilt_x, float tilt_y);