~ubuntu-branches/ubuntu/utopic/wayland/utopic

« back to all changes in this revision

Viewing changes to cursor/wayland-cursor.h

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2013-06-06 23:22:34 UTC
  • mfrom: (5.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130606232234-0fb2y1q6x9tyl7d2
Tags: 1.1.0-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2012 Intel Corporation
 
3
 *
 
4
 * Permission to use, copy, modify, distribute, and sell this software and its
 
5
 * documentation for any purpose is hereby granted without fee, provided that
 
6
 * the above copyright notice appear in all copies and that both that copyright
 
7
 * notice and this permission notice appear in supporting documentation, and
 
8
 * that the name of the copyright holders not be used in advertising or
 
9
 * publicity pertaining to distribution of the software without specific,
 
10
 * written prior permission.  The copyright holders make no representations
 
11
 * about the suitability of this software for any purpose.  It is provided "as
 
12
 * is" without express or implied warranty.
 
13
 *
 
14
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 
15
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 
16
 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 
17
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 
18
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 
19
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
 
20
 * OF THIS SOFTWARE.
 
21
 */
 
22
 
 
23
#ifndef WAYLAND_CURSOR_H
 
24
#define WAYLAND_CURSOR_H
 
25
 
 
26
#include <stdint.h>
 
27
 
 
28
#ifdef  __cplusplus
 
29
extern "C" {
 
30
#endif
 
31
 
 
32
struct wl_cursor_theme;
 
33
 
 
34
struct wl_cursor_image {
 
35
        uint32_t width;         /* actual width */
 
36
        uint32_t height;        /* actual height */
 
37
        uint32_t hotspot_x;     /* hot spot x (must be inside image) */
 
38
        uint32_t hotspot_y;     /* hot spot y (must be inside image) */
 
39
        uint32_t delay;         /* animation delay to next frame (ms) */
 
40
};
 
41
 
 
42
struct wl_cursor {
 
43
        unsigned int image_count;
 
44
        struct wl_cursor_image **images;
 
45
        char *name;
 
46
};
 
47
 
 
48
struct wl_shm;
 
49
 
 
50
struct wl_cursor_theme *
 
51
wl_cursor_theme_load(const char *name, int size, struct wl_shm *shm);
 
52
 
 
53
void
 
54
wl_cursor_theme_destroy(struct wl_cursor_theme *theme);
 
55
 
 
56
struct wl_cursor *
 
57
wl_cursor_theme_get_cursor(struct wl_cursor_theme *theme,
 
58
                           const char *name);
 
59
 
 
60
struct wl_buffer *
 
61
wl_cursor_image_get_buffer(struct wl_cursor_image *image);
 
62
 
 
63
int
 
64
wl_cursor_frame(struct wl_cursor *cursor, uint32_t time);
 
65
 
 
66
#ifdef  __cplusplus
 
67
}
 
68
#endif
 
69
 
 
70
#endif