1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
/*
Copyright (C) 2010 ProFUSION embedded systems
Copyright (C) 2010 Samsung Electronics
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
* @file ewk_contextmenu.h
* @brief Describes the context menu API.
*
* The following signals (see evas_object_smart_callback_add()) are emitted:
*
* - "contextmenu,customize", Eina_List *: customize context menu is taken
* and it gives a list with items of context menu as an argument.
* - "contextmenu,free", Ewk_Context_Menu *: a context menu is freed.
* - "contextmenu,item,appended", Ewk_Context_Menu *: a new item was added to
* the context menu.
* - "contextmenu,new", Ewk_Context_Menu *: a new context menu was created
* and it gives the context menu as an argument.
* - "contextmenu,show", Ewk_Context_Menu *: a context menu is shown.
*/
#ifndef ewk_contextmenu_h
#define ewk_contextmenu_h
#include <Eina.h>
#include <Evas.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* \enum _Ewk_Context_Menu_Action
* @brief Provides the actions of items for the context menu.
* @info Keep this in sync with ContextMenuItem.h
*/
enum _Ewk_Context_Menu_Action {
EWK_CONTEXT_MENU_ITEM_TAG_NO_ACTION = 0, // this item is not actually in web_uidelegate.h
EWK_CONTEXT_MENU_ITEM_TAG_OPEN_LINK_IN_NEW_WINDOW = 1,
EWK_CONTEXT_MENU_ITEM_TAG_DOWNLOAD_LINK_TO_DISK,
EWK_CONTEXT_MENU_ITEM_TAG_COPY_LINK_TO_CLIPBOARD,
EWK_CONTEXT_MENU_ITEM_TAG_OPEN_IMAGE_IN_NEW_WINDOW,
EWK_CONTEXT_MENU_ITEM_TAG_DOWNLOAD_IMAGE_TO_DISK,
EWK_CONTEXT_MENU_ITEM_TAG_COPY_IMAGE_TO_CLIPBOARD,
EWK_CONTEXT_MENU_ITEM_TAG_COPY_IMAGE_URL_TO_CLIPBOARD,
EWK_CONTEXT_MENU_ITEM_TAG_OPEN_FRAME_IN_NEW_WINDOW,
EWK_CONTEXT_MENU_ITEM_TAG_COPY,
EWK_CONTEXT_MENU_ITEM_TAG_GO_BACK,
EWK_CONTEXT_MENU_ITEM_TAG_GO_FORWARD,
EWK_CONTEXT_MENU_ITEM_TAG_STOP,
EWK_CONTEXT_MENU_ITEM_TAG_RELOAD,
EWK_CONTEXT_MENU_ITEM_TAG_CUT,
EWK_CONTEXT_MENU_ITEM_TAG_PASTE,
EWK_CONTEXT_MENU_ITEM_TAG_SELECT_ALL,
EWK_CONTEXT_MENU_ITEM_TAG_SPELLING_GUESS,
EWK_CONTEXT_MENU_ITEM_TAG_NO_GUESSES_FOUND,
EWK_CONTEXT_MENU_ITEM_TAG_IGNORE_SPELLING,
EWK_CONTEXT_MENU_ITEM_TAG_LEARN_SPELLING,
EWK_CONTEXT_MENU_ITEM_TAG_OTHER,
EWK_CONTEXT_MENU_ITEM_TAG_SEARCH_IN_SPOTLIGHT,
EWK_CONTEXT_MENU_ITEM_TAG_SEARCH_WEB,
EWK_CONTEXT_MENU_ITEM_TAG_LOOK_UP_IN_DICTIONARY,
EWK_CONTEXT_MENU_ITEM_TAG_OPEN_WITH_DEFAULT_APPLICATION,
EWK_CONTEXT_MENU_ITEM_PDFACTUAL_SIZE,
EWK_CONTEXT_MENU_ITEM_PDFZOOM_IN,
EWK_CONTEXT_MENU_ITEM_PDFZOOM_OUT,
EWK_CONTEXT_MENU_ITEM_PDFAUTO_SIZE,
EWK_CONTEXT_MENU_ITEM_PDFSINGLE_PAGE,
EWK_CONTEXT_MENU_ITEM_PDFFACING_PAGES,
EWK_CONTEXT_MENU_ITEM_PDFCONTINUOUS,
EWK_CONTEXT_MENU_ITEM_PDFNEXT_PAGE,
EWK_CONTEXT_MENU_ITEM_PDFPREVIOUS_PAGE,
EWK_CONTEXT_MENU_ITEM_TAG_OPEN_LINK = 2000,
EWK_CONTEXT_MENU_ITEM_TAG_IGNORE_GRAMMAR,
EWK_CONTEXT_MENU_ITEM_TAG_SPELLING_MENU, /**< spelling or spelling/grammar sub-menu */
EWK_CONTEXT_MENU_ITEM_TAG_SHOW_SPELLING_PANEL,
EWK_CONTEXT_MENU_ITEM_TAG_CHECK_SPELLING,
EWK_CONTEXT_MENU_ITEM_TAG_CHECK_SPELLING_WHILE_TYPING,
EWK_CONTEXT_MENU_ITEM_TAG_CHECK_GRAMMAR_WITH_SPELLING,
EWK_CONTEXT_MENU_ITEM_TAG_FONT_MENU, /**< font sub-menu */
EWK_CONTEXT_MENU_ITEM_TAG_SHOW_FONTS,
EWK_CONTEXT_MENU_ITEM_TAG_BOLD,
EWK_CONTEXT_MENU_ITEM_TAG_ITALIC,
EWK_CONTEXT_MENU_ITEM_TAG_UNDERLINE,
EWK_CONTEXT_MENU_ITEM_TAG_OUTLINE,
EWK_CONTEXT_MENU_ITEM_TAG_STYLES,
EWK_CONTEXT_MENU_ITEM_TAG_SHOW_COLORS,
EWK_CONTEXT_MENU_ITEM_TAG_SPEECH_MENU, /**< speech sub-menu */
EWK_CONTEXT_MENU_ITEM_TAG_START_SPEAKING,
EWK_CONTEXT_MENU_ITEM_TAG_STOP_SPEAKING,
EWK_CONTEXT_MENU_ITEM_TAG_WRITING_DIRECTION_MENU, /**< writing direction sub-menu */
EWK_CONTEXT_MENU_ITEM_TAG_DEFAULT_DIRECTION,
EWK_CONTEXT_MENU_ITEM_TAG_LEFT_TO_RIGHT,
EWK_CONTEXT_MENU_ITEM_TAG_RIGHT_TO_LEFT,
EWK_CONTEXT_MENU_ITEM_TAG_PDFSINGLE_PAGE_SCROLLING,
EWK_CONTEXT_MENU_ITEM_TAG_PDFFACING_PAGES_SCROLLING,
EWK_CONTEXT_MENU_ITEM_TAG_INSPECT_ELEMENT,
EWK_CONTEXT_MENU_ITEM_TAG_TEXT_DIRECTION_MENU, /**< text direction sub-menu */
EWK_CONTEXT_MENU_ITEM_TAG_TEXT_DIRECTION_DEFAULT,
EWK_CONTEXT_MENU_ITEM_TAG_TEXT_DIRECTION_LEFT_TO_RIGHT,
EWK_CONTEXT_MENU_ITEM_TAG_TEXT_DIRECTION_RIGHT_TO_LEFT,
EWK_CONTEXT_MENU_ITEM_OPEN_MEDIA_IN_NEW_WINDOW,
EWK_CONTEXT_MENU_ITEM_TAG_DOWNLOAD_MEDIA_TO_DISK,
EWK_CONTEXT_MENU_ITEM_TAG_COPY_MEDIA_LINK_TO_CLIPBOARD,
EWK_CONTEXT_MENU_ITEM_TAG_TOGGLE_MEDIA_CONTROLS,
EWK_CONTEXT_MENU_ITEM_TAG_TOGGLE_MEDIA_LOOP,
EWK_CONTEXT_MENU_ITEM_TAG_ENTER_VIDEO_FULLSCREEN,
EWK_CONTEXT_MENU_ITEM_TAG_MEDIA_PLAY_PAUSE,
EWK_CONTEXT_MENU_ITEM_TAG_MEDIA_MUTE,
EWK_CONTEXT_MENU_ITEM_BASE_CUSTOM_TAG = 5000,
EWK_CONTEXT_MENU_ITEM_CUSTOM_TAG_NO_ACTION = 5998,
EWK_CONTEXT_MENU_ITEM_LAST_CUSTOM_TAG = 5999,
EWK_CONTEXT_MENU_ITEM_BASE_APPLICATION_TAG = 10000
};
/** Creates a type name for _Ewk_Context_Menu_Action */
typedef enum _Ewk_Context_Menu_Action Ewk_Context_Menu_Action;
/**
* \enum _Ewk_Context_Menu_Item_Type
* @brief Defines the types of the items for the context menu.
* @info Keep this in sync with ContextMenuItem.h
*/
enum _Ewk_Context_Menu_Item_Type {
EWK_ACTION_TYPE,
EWK_CHECKABLE_ACTION_TYPE,
EWK_SEPARATOR_TYPE,
EWK_SUBMENU_TYPE
};
/** Creates a type name for _Ewk_Context_Menu_Item_Type */
typedef enum _Ewk_Context_Menu_Item_Type Ewk_Context_Menu_Item_Type;
/** Creates a type name for _Ewk_Context_Menu */
typedef struct _Ewk_Context_Menu Ewk_Context_Menu;
/** Creates a type name for _Ewk_Context_Menu_Item */
typedef struct _Ewk_Context_Menu_Item Ewk_Context_Menu_Item;
/************************** Exported functions ***********************/
/**
* Increases the reference count of the given object.
*
* @param menu the context menu object to increase the reference count
*/
EAPI void ewk_context_menu_ref(Ewk_Context_Menu *menu);
/**
* Decreases the reference count of the given object, possibly freeing it.
*
* When the reference count reaches 0, the menu with all its items are freed.
*
* @param menu the context menu object to decrease the reference count
*/
EAPI void ewk_context_menu_unref(Ewk_Context_Menu *menu);
/**
* Destroys the context menu object.
*
* @param menu the context menu object to destroy
* @return @c EINA_TRUE on success, @c EINA_FALSE on failure
*
* @see ewk_context_menu_item_free
*/
EAPI Eina_Bool ewk_context_menu_destroy(Ewk_Context_Menu *menu);
/**
* Gets the list of items.
*
* @param o the context menu object to get list of the items
* @return the list of the items on success or @c NULL on failure
*/
EAPI const Eina_List *ewk_context_menu_item_list_get(const Ewk_Context_Menu *o);
/**
* Creates a new item of the context menu.
*
* @param type specifies a type of the item
* @param action specifies a action of the item
* @param parent_menu specifies a parent menu of the item
* @param submenu specifies a submenu of the item
* @param title specifies a title of the item
* @param checked @c EINA_TRUE if the item should be toggled or @c EINA_FALSE if not
* @param enabled @c EINA_TRUE to enable the item or @c EINA_FALSE to disable
* @return the pointer to the new item on success or @c NULL on failure
*
* @note The return value @b should @b be freed after use.
*/
EAPI Ewk_Context_Menu_Item *ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Action action, Ewk_Context_Menu *parent_menu, Ewk_Context_Menu *submenu, const char *title, Eina_Bool checked, Eina_Bool enabled);
/**
* Destroys the item of the context menu object.
*
* @param item the item to destroy
*
* @see ewk_context_menu_destroy
* @see ewk_context_menu_unref
*/
EAPI void ewk_context_menu_item_free(Ewk_Context_Menu_Item *item);
/**
* Selects the item from the context menu object.
*
* @param menu the context menu object
* @param item the item is selected
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_context_menu_item_select(Ewk_Context_Menu *menu, Ewk_Context_Menu_Item *item);
/**
* Gets type of the item.
*
* @param o the item to get the type
* @return type of the item on success or @c EWK_ACTION_TYPE on failure
*
* @see ewk_context_menu_item_type_set
*/
EAPI Ewk_Context_Menu_Item_Type ewk_context_menu_item_type_get(const Ewk_Context_Menu_Item *o);
/**
* Sets the type of item.
*
* @param o the item to set the type
* @param type a new type for the item object
* @return @c EINA_TRUE on success, or @c EINA_FALSE on failure
*
* @see ewk_context_menu_item_type_get
*/
EAPI Eina_Bool ewk_context_menu_item_type_set(Ewk_Context_Menu_Item *o, Ewk_Context_Menu_Item_Type type);
/**
* Gets an action of the item.
*
* @param o the item to get the action
* @return an action of the item on success or @c EWK_CONTEXT_MENU_ITEM_TAG_NO_ACTION on failure
*
* @see ewk_context_menu_item_action_set
*/
EAPI Ewk_Context_Menu_Action ewk_context_menu_item_action_get(const Ewk_Context_Menu_Item *o);
/**
* Sets an action of the item.
*
* @param o the item to set the action
* @param action a new action for the item object
* @return @c EINA_TRUE on success, or @c EINA_FALSE on failure
*
* @see ewk_context_menu_item_action_get
*/
EAPI Eina_Bool ewk_context_menu_item_action_set(Ewk_Context_Menu_Item *o, Ewk_Context_Menu_Action action);
/**
* Gets a title of the item.
*
* @param o the item to get the title
* @return a title of the item on success, or @c NULL on failure
*
* @see ewk_context_menu_item_title_set
*/
EAPI const char *ewk_context_menu_item_title_get(const Ewk_Context_Menu_Item *o);
/**
* Sets a title of the item.
*
* @param o the item to set the title
* @param title a new title for the item object
* @return a new title of the item on success or @c NULL on failure
*
* @see ewk_context_menu_item_title_get
*/
EAPI const char *ewk_context_menu_item_title_set(Ewk_Context_Menu_Item *o, const char *title);
/**
* Queries if the item is toggled.
*
* @param o the item to query if the item is toggled
* @return @c EINA_TRUE if the item is toggled or @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_context_menu_item_checked_get(const Ewk_Context_Menu_Item *o);
/**
* Sets if the item should be toggled.
*
* @param o the item to be toggled
* @param checked @c EINA_TRUE if the item should be toggled or @c EINA_FALSE if not
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item *o, Eina_Bool checked);
/**
* Gets if the item is enabled.
*
* @param o the item to get enabled state
* @return @c EINA_TRUE if it's enabled, @c EINA_FALSE if not or on failure
*
* @see ewk_context_menu_item_enabled_set
*/
EAPI Eina_Bool ewk_context_menu_item_enabled_get(const Ewk_Context_Menu_Item *o);
/**
* Enables/disables the item.
*
* @param o the item to enable/disable
* @param enabled @c EINA_TRUE to enable the item or @c EINA_FALSE to disable
* @return @c EINA_TRUE on success, or @c EINA_FALSE on failure
*
* @see ewk_context_menu_item_enabled_get
*/
EAPI Eina_Bool ewk_context_menu_item_enabled_set(Ewk_Context_Menu_Item *o, Eina_Bool enabled);
/**
* Gets the parent menu for context menu item.
*
* @param o the context menu item object
* @return a context menu object on success or @c NULL on failure
*/
EAPI Ewk_Context_Menu *ewk_context_menu_item_parent_get(const Ewk_Context_Menu_Item *o);
#ifdef __cplusplus
}
#endif
#endif // ewk_contextmenu_h
|