Signal

WPEWebKitWebView::show-option-menu

Declaration

gboolean
show_option_menu (
  WebKitWebView* self,
  WebKitOptionMenu* menu,
  WebKitRectangle* rectangle,
  gpointer user_data
)

Description [src]

This signal is emitted when a select element in web_view needs to display a dropdown menu. This signal can be used to show a custom menu, using menu to get the details of all items that should be displayed. The area of the element in the WebKitWebView is given as rectangle parameter, it can be used to position the menu. To handle this signal asynchronously you should keep a ref of the menu.

Default handler:

The default handler is called after the handlers added via g_signal_connect().

Available since:2.28

Parameters

menu WebKitOptionMenu
 

The WebKitOptionMenu.

 The data is owned by the caller of the function.
rectangle WebKitRectangle
 

The option element area.

 The data is owned by the caller of the function.

Return value

Returns: gboolean
 

TRUE to stop other handlers from being invoked for the event. FALSE to propagate the event further.