Roll src/third_party/WebKit ef7cfd7:80927b2 (svn 194570:194575)
[chromium-blink-merge.git] / ppapi / c / private / ppb_flash_menu.h
blob0b3247864d38c9b04cc9012579f99036162ad449
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 */
6 /* From private/ppb_flash_menu.idl modified Tue Dec 11 13:47:09 2012. */
8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
9 #define PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_completion_callback.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"
19 /* Struct prototypes */
20 struct PP_Flash_Menu;
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
25 /**
26 * @file
27 * This file defines the <code>PPB_Flash_Menu</code> interface.
31 /**
32 * @addtogroup Enums
33 * @{
35 /* Menu item type.
37 * TODO(viettrungluu): Radio items not supported yet. Will also probably want
38 * special menu items tied to clipboard access.
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);
47 /**
48 * @}
51 /**
52 * @addtogroup Structs
53 * @{
55 struct PP_Flash_MenuItem {
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;
64 struct PP_Flash_Menu {
65 uint32_t count;
66 struct PP_Flash_MenuItem *items;
68 /**
69 * @}
72 /**
73 * @addtogroup Interfaces
74 * @{
76 struct PPB_Flash_Menu_0_2 {
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.
85 int32_t (*Show)(PP_Resource menu_id,
86 const struct PP_Point* location,
87 int32_t* selected_id,
88 struct PP_CompletionCallback callback);
91 typedef struct PPB_Flash_Menu_0_2 PPB_Flash_Menu;
92 /**
93 * @}
96 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_MENU_H_ */