Class

DevhelpWebView

Description

class Devhelp.WebView : WebKit2.WebView {
  parent: WebKitWebView,
  priv: DhWebViewPrivate*
}
No description available.

Hierarchy

hierarchy this DhWebView implements_0 AtkImplementorIface this--implements_0 implements_1 GtkBuildable this--implements_1 ancestor_0 WebKitWebView ancestor_0--this ancestor_1 WebKitWebViewBase ancestor_1--ancestor_0 ancestor_2 GtkContainer ancestor_2--ancestor_1 ancestor_3 GtkWidget ancestor_3--ancestor_2 ancestor_4 GInitiallyUnowned ancestor_4--ancestor_3 ancestor_5 GObject ancestor_5--ancestor_4

Ancestors

  • WebKitWebView
  • WebKitWebViewBase
  • GtkContainer
  • GtkWidget
  • GInitiallyUnowned
  • GObject

Implements

  • AtkImplementorIface
  • GtkBuildable

Constructors

dh_web_view_new
No description available.

Available since: 3.30

Instance methods

dh_web_view_can_reset_zoom
No description available.

Available since: 3.30

dh_web_view_can_zoom_in
No description available.

Available since: 3.30

dh_web_view_can_zoom_out
No description available.

Available since: 3.30

dh_web_view_get_devhelp_title

An enhanced getter function for the WebKitWebView:title property: when that property is the empty string or NULL, this function returns “Empty Page” (translated).

Available since: 3.30

dh_web_view_get_profile
No description available.

Available since: 3.30

dh_web_view_reset_zoom

Reset the text size to the normal size.

Available since: 3.30

dh_web_view_search_next

Like webkit_find_controller_search_next(), but takes into account whether dh_web_view_set_search_text() has been called.

Available since: 3.30

dh_web_view_search_previous

Like webkit_find_controller_search_previous(), but takes into account whether dh_web_view_set_search_text() has been called.

Available since: 3.30

dh_web_view_set_search_text

A more convenient API (for Devhelp needs) than WebKitFindController. If search_text is not empty, it calls webkit_find_controller_search() if not already done. If search_text is empty or NULL, it calls webkit_find_controller_search_finish().

Available since: 3.30

dh_web_view_zoom_in

Makes the text larger.

Available since: 3.30

dh_web_view_zoom_out

Makes the text smaller.

Available since: 3.30

Properties

Devhelp.WebView:profile

The DhProfile. If set to NULL, the default profile as returned by dh_profile_get_default() is used.

Available since: 3.30

Signals

Devhelp.WebView::open-new-tab

The ::open-new-tab signal is emitted when a URI needs to be opened in a new DhWebView. This happens when doing Ctrl+click or middle click on a link.

Available since: 3.30

Class structure

struct DevhelpWebViewClass {
  WebKitWebViewClass parent_class;
  void (* open_new_tab) (
    DhWebView* view,
    const gchar* uri
  );
  None padding;
  
}
Class members
parent_class
WebKitWebViewClass
  No description available.
open_new_tab
void (* open_new_tab) (
    DhWebView* view,
    const gchar* uri
  )
  No description available.
padding
None
  No description available.

Virtual methods

Devhelp.WebViewClass.open_new_tab
No description available.