Pepper_47_C_interfaces
ppb_flash_menu.h
Go to the documentation of this file.
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 /* From private/ppb_flash_menu.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
9 #define PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
10 
11 #include "ppapi/c/pp_bool.h"
13 #include "ppapi/c/pp_instance.h"
14 #include "ppapi/c/pp_macros.h"
15 #include "ppapi/c/pp_point.h"
16 #include "ppapi/c/pp_resource.h"
17 #include "ppapi/c/pp_stdint.h"
18 
19 /* Struct prototypes */
20 struct PP_Flash_Menu;
21 
22 #define PPB_FLASH_MENU_INTERFACE_0_2 "PPB_Flash_Menu;0.2"
23 #define PPB_FLASH_MENU_INTERFACE PPB_FLASH_MENU_INTERFACE_0_2
24 
25 /**
26  * @file
27  * This file defines the <code>PPB_Flash_Menu</code> interface.
28  */
29 
30 
31 /**
32  * @addtogroup Enums
33  * @{
34  */
35 /* Menu item type.
36  *
37  * TODO(viettrungluu): Radio items not supported yet. Will also probably want
38  * special menu items tied to clipboard access.
39  */
40 typedef enum {
47 /**
48  * @}
49  */
50 
51 /**
52  * @addtogroup Structs
53  * @{
54  */
57  char* name;
58  int32_t id;
62 };
63 
64 struct PP_Flash_Menu {
65  uint32_t count;
67 };
68 /**
69  * @}
70  */
71 
72 /**
73  * @addtogroup Interfaces
74  * @{
75  */
77  PP_Resource (*Create)(PP_Instance instance_id,
78  const struct PP_Flash_Menu* menu_data);
79  PP_Bool (*IsFlashMenu)(PP_Resource resource_id);
80  /* Display a context menu at the given location. If the user selects an item,
81  * |selected_id| will be set to its |id| and the callback called with |PP_OK|.
82  * If the user dismisses the menu without selecting an item,
83  * |PP_ERROR_USERCANCEL| will be indicated.
84  */
85  int32_t (*Show)(PP_Resource menu_id,
86  const struct PP_Point* location,
87  int32_t* selected_id,
88  struct PP_CompletionCallback callback);
89 };
90 
92 /**
93  * @}
94  */
95 
96 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ */
97 
PP_Bool(* IsFlashMenu)(PP_Resource resource_id)
struct PP_Flash_MenuItem * items
PP_Resource(* Create)(PP_Instance instance_id, const struct PP_Flash_Menu *menu_data)
struct PP_Flash_Menu * submenu
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Flash_MenuItem_Type, 4)
int32_t PP_Resource
Definition: pp_resource.h:40
uint32_t count
PP_Flash_MenuItem_Type
PP_Flash_MenuItem_Type type
int32_t PP_Instance
Definition: pp_instance.h:34
int32_t(* Show)(PP_Resource menu_id, const struct PP_Point *location, int32_t *selected_id, struct PP_CompletionCallback callback)
PP_Bool
Definition: pp_bool.h:30