~ubuntu-branches/ubuntu/karmic/virtualbox-ose/karmic-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/7.1/xorg/xf86Cursor.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-09-14 18:25:07 UTC
  • mfrom: (0.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090914182507-c98g07mq16hjmn6d
Tags: 3.0.6-dfsg-1ubuntu1
* Merge from debian unstable (LP: #429697), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
  - virtualbox, virtualbox-* (names of the upstream proprietary packages)
    conflict with virtualbox-ose (LP: #379878)
* Make debug package depend on normal or guest utils package
* Drop patches/22-pulseaudio-stubs.dpatch (applied upstream)
* Rename Ubuntu specific patches to uXX-*.dpatch
* Fix lintian warnings in maintainer scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $XFree86: xc/programs/Xserver/hw/xfree86/ramdac/xf86Cursor.h,v 1.10tsi Exp $ */
2
 
 
3
 
#ifndef _XF86CURSOR_H
4
 
#define _XF86CURSOR_H
5
 
 
6
 
#include "xf86str.h"
7
 
#include "mipointer.h"
8
 
 
9
 
typedef struct _xf86CursorInfoRec {
10
 
    ScrnInfoPtr pScrn;
11
 
    int Flags;
12
 
    int MaxWidth;
13
 
    int MaxHeight;
14
 
    void (*SetCursorColors)(ScrnInfoPtr pScrn, int bg, int fg);
15
 
    void (*SetCursorPosition)(ScrnInfoPtr pScrn, int x, int y);
16
 
    void (*LoadCursorImage)(ScrnInfoPtr pScrn, unsigned char *bits);
17
 
    void (*HideCursor)(ScrnInfoPtr pScrn);
18
 
    void (*ShowCursor)(ScrnInfoPtr pScrn);
19
 
    unsigned char* (*RealizeCursor)(struct _xf86CursorInfoRec *, CursorPtr);
20
 
    Bool (*UseHWCursor)(ScreenPtr, CursorPtr);
21
 
 
22
 
#ifdef ARGB_CURSOR
23
 
    Bool (*UseHWCursorARGB) (ScreenPtr, CursorPtr);
24
 
    void (*LoadCursorARGB) (ScrnInfoPtr, CursorPtr);
25
 
#endif
26
 
 
27
 
} xf86CursorInfoRec, *xf86CursorInfoPtr;
28
 
 
29
 
Bool xf86InitCursor(ScreenPtr pScreen, xf86CursorInfoPtr infoPtr);
30
 
xf86CursorInfoPtr xf86CreateCursorInfoRec(void);
31
 
void xf86DestroyCursorInfoRec(xf86CursorInfoPtr);
32
 
void xf86ForceHWCursor (ScreenPtr pScreen, Bool on);
33
 
 
34
 
#define HARDWARE_CURSOR_INVERT_MASK                     0x00000001
35
 
#define HARDWARE_CURSOR_AND_SOURCE_WITH_MASK            0x00000002
36
 
#define HARDWARE_CURSOR_SWAP_SOURCE_AND_MASK            0x00000004
37
 
#define HARDWARE_CURSOR_SOURCE_MASK_NOT_INTERLEAVED     0x00000008
38
 
#define HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_1        0x00000010
39
 
#define HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_8        0x00000020
40
 
#define HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_16       0x00000040
41
 
#define HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_32       0x00000080
42
 
#define HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_64       0x00000100
43
 
#define HARDWARE_CURSOR_TRUECOLOR_AT_8BPP               0x00000200
44
 
#define HARDWARE_CURSOR_BIT_ORDER_MSBFIRST              0x00000400
45
 
#define HARDWARE_CURSOR_NIBBLE_SWAPPED                  0x00000800
46
 
#define HARDWARE_CURSOR_SHOW_TRANSPARENT                0x00001000
47
 
#define HARDWARE_CURSOR_UPDATE_UNHIDDEN                 0x00002000
48
 
 
49
 
#endif /* _XF86CURSOR_H */