OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* From dev/ppb_cursor_control_dev.idl modified Thu Nov 17 14:24:28 2011. */ | 6 /* From dev/ppb_cursor_control_dev.idl modified Fri Nov 18 15:58:00 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ |
9 #define PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ | 9 #define PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ |
10 | 10 |
11 #include "ppapi/c/dev/pp_cursor_type_dev.h" | 11 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
15 #include "ppapi/c/pp_point.h" | 15 #include "ppapi/c/pp_point.h" |
16 #include "ppapi/c/pp_resource.h" | 16 #include "ppapi/c/pp_resource.h" |
17 #include "ppapi/c/pp_stdint.h" | 17 #include "ppapi/c/pp_stdint.h" |
18 | 18 |
19 #define PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4 "PPB_CursorControl(Dev);0.4" | 19 #define PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4 "PPB_CursorControl(Dev);0.4" |
20 #define PPB_CURSOR_CONTROL_DEV_INTERFACE PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4 | 20 #define PPB_CURSOR_CONTROL_DEV_INTERFACE PPB_CURSOR_CONTROL_DEV_INTERFACE_0_4 |
21 | 21 |
22 /** | 22 /** |
23 * @file | 23 * @file |
24 * This file defines the <code>PPB_CursorControl_Dev</code> interface | 24 * This file defines the <code>PPB_CursorControl_Dev</code> interface |
25 * implemented by the browser for controlling the cursor. | 25 * implemented by the browser for controlling the cursor. |
26 */ | 26 */ |
27 | 27 |
28 | 28 |
29 /** | 29 /** |
30 * @addtogroup Interfaces | 30 * @addtogroup Interfaces |
31 * @{ | 31 * @{ |
32 */ | 32 */ |
33 struct PPB_CursorControl_Dev { | 33 struct PPB_CursorControl_Dev_0_4 { |
34 /** | 34 /** |
35 * Set a cursor. If "type" is PP_CURSORTYPE_CUSTOM, then "custom_image" | 35 * Set a cursor. If "type" is PP_CURSORTYPE_CUSTOM, then "custom_image" |
36 * must be an ImageData resource containing the cursor and "hot_spot" must | 36 * must be an ImageData resource containing the cursor and "hot_spot" must |
37 * contain the offset within that image that refers to the cursor's position. | 37 * contain the offset within that image that refers to the cursor's position. |
38 */ | 38 */ |
39 PP_Bool (*SetCursor)(PP_Instance instance, | 39 PP_Bool (*SetCursor)(PP_Instance instance, |
40 enum PP_CursorType_Dev type, | 40 enum PP_CursorType_Dev type, |
41 PP_Resource custom_image, | 41 PP_Resource custom_image, |
42 const struct PP_Point* hot_spot); | 42 const struct PP_Point* hot_spot); |
43 /** | 43 /** |
(...skipping 24 matching lines...) Expand all Loading... |
68 PP_Bool (*UnlockCursor)(PP_Instance instance); | 68 PP_Bool (*UnlockCursor)(PP_Instance instance); |
69 /** | 69 /** |
70 * Returns PP_TRUE if the cursor is locked, PP_FALSE otherwise. | 70 * Returns PP_TRUE if the cursor is locked, PP_FALSE otherwise. |
71 */ | 71 */ |
72 PP_Bool (*HasCursorLock)(PP_Instance instance); | 72 PP_Bool (*HasCursorLock)(PP_Instance instance); |
73 /** | 73 /** |
74 * Returns PP_TRUE if the cursor can be locked, PP_FALSE otherwise. | 74 * Returns PP_TRUE if the cursor can be locked, PP_FALSE otherwise. |
75 */ | 75 */ |
76 PP_Bool (*CanLockCursor)(PP_Instance instance); | 76 PP_Bool (*CanLockCursor)(PP_Instance instance); |
77 }; | 77 }; |
| 78 |
| 79 typedef struct PPB_CursorControl_Dev_0_4 PPB_CursorControl_Dev; |
78 /** | 80 /** |
79 * @} | 81 * @} |
80 */ | 82 */ |
81 | 83 |
82 #endif /* PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ */ | 84 #endif /* PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ */ |
83 | 85 |
OLD | NEW |