Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
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 
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 {
41  PP_FLASH_MENUITEM_TYPE_NORMAL = 0,
42  PP_FLASH_MENUITEM_TYPE_CHECKBOX = 1,
43  PP_FLASH_MENUITEM_TYPE_SEPARATOR = 2,
44  PP_FLASH_MENUITEM_TYPE_SUBMENU = 3
45 } PP_Flash_MenuItem_Type;
46 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Flash_MenuItem_Type, 4);
56  PP_Flash_MenuItem_Type type;
57  char* name;
58  int32_t id;
59  PP_Bool enabled;
60  PP_Bool checked;
61  struct PP_Flash_Menu* submenu;
62 };
63 
64 struct PP_Flash_Menu {
65  uint32_t count;
66  struct PP_Flash_MenuItem *items;
67 };
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 
91 typedef struct PPB_Flash_Menu_0_2 PPB_Flash_Menu;
96 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ */
97 
Definition: ppb_flash_menu.h:55
int32_t PP_Resource
Definition: pp_resource.h:40
Definition: pp_point.h:28
Definition: ppb_flash_menu.h:76
int32_t PP_Instance
Definition: pp_instance.h:34
PP_Bool
Definition: pp_bool.h:30
Definition: ppb_flash_menu.h:64
Definition: pp_completion_callback.h:139