diff --git a/CMakeLists.txt b/CMakeLists.txt index 31adc44968cf2dc3178875cdd83e5585d4e51d67..9b5f7a7822e7eae89e0a82ced256b633ba6c2fc2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,13 +2,13 @@ # Determine CMake version and build type. # ----------------------------------------------------------------------------- # -# NOTE: cmake_minimum_required() and project() *MUST* be the two fist commands +# NOTE: cmake_minimum_required() and project() *MUST* be the two first commands # used, see https://cmake.org/cmake/help/v3.3/command/project.html -- the # latter in particular handles loading a bunch of shared CMake definitions # and loading the cross-compilation settings from CMAKE_TOOLCHAIN_FILE. # -cmake_minimum_required(VERSION 3.3) +cmake_minimum_required(VERSION 3.10) project(WebKit) @@ -37,6 +37,7 @@ endif () set(ALL_PORTS AppleWin Efl + FTW GTK JSCOnly Mac @@ -61,8 +62,8 @@ if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQU endif () if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") - if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "6.0.0") - message(FATAL_ERROR "GCC 6.0.0 is required to build WebKitGTK+, use a newer GCC version or clang") + if (${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS "7.3.0") + message(FATAL_ERROR "GCC 7.3 or newer is required to build WebKit. Use a newer GCC version or Clang.") endif () endif () @@ -93,7 +94,15 @@ elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^mips64") elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^mips") set(WTF_CPU_MIPS 1) elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "(x64|x86_64|amd64)") - set(WTF_CPU_X86_64 1) + # FORCE_32BIT is set in the build script when --32-bit is passed + # on a Linux/intel 64bit host. This allows us to produce 32bit + # binaries without setting the build up as a crosscompilation, + # which is the only way to modify CMAKE_SYSTEM_PROCESSOR. + if (FORCE_32BIT) + set(WTF_CPU_X86 1) + else () + set(WTF_CPU_X86_64 1) + endif () elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "(i[3-6]86|x86)") set(WTF_CPU_X86 1) elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ppc") @@ -131,6 +140,7 @@ endif () # By default, only the highest-level libraries, WebKitLegacy and WebKit, are # shared, because properly building shared libraries that depend on each other # can be tricky. Override these in Options*.cmake for your port as needed. +set(bmalloc_LIBRARY_TYPE STATIC) set(WTF_LIBRARY_TYPE STATIC) set(JavaScriptCore_LIBRARY_TYPE STATIC) set(PAL_LIBRARY_TYPE STATIC) diff --git a/Documentation/jsc-glib-4.0/html/JSCClass.html b/Documentation/jsc-glib-4.0/html/JSCClass.html index 6e57b1a78c6a10717c58c352c44f4882d3c65c21..034a55c6ea94d96c2c70a48475eee2527eaa3186 100644 --- a/Documentation/jsc-glib-4.0/html/JSCClass.html +++ b/Documentation/jsc-glib-4.0/html/JSCClass.html @@ -3,12 +3,12 @@ JSCClass: JavaScriptCore GLib Reference Manual - + - + @@ -168,19 +168,19 @@ JSCContext * context -Write / Construct Only +Write / Construct Only gchar * name -Read / Write / Construct Only +Read / Write / Construct Only JSCClass * parent -Read / Write / Construct Only +Read / Write / Construct Only @@ -1173,16 +1173,14 @@ to provide a custom implementation for the class. All virtual functions are opti

The “context” property

  “context”                  JSCContext *

The JSCContext in which the class was registered.

-

Owner: JSCClass

-

Flags: Write / Construct Only

+

Flags: Write / Construct Only


The “name” property

  “name”                     gchar *

The name of the class.

-

Owner: JSCClass

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL


@@ -1190,8 +1188,7 @@ to provide a custom implementation for the class. All virtual functions are opti

The “parent” property

  “parent”                   JSCClass *

The parent class or NULL in case of final classes.

-

Owner: JSCClass

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

@@ -1200,6 +1197,6 @@ to provide a custom implementation for the class. All virtual functions are opti
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/JSCContext.html b/Documentation/jsc-glib-4.0/html/JSCContext.html index a090d8a7afea2cc78e7fb712d269f029353414e2..e922ef215bf463b08358dba36685e601d1451f6f 100644 --- a/Documentation/jsc-glib-4.0/html/JSCContext.html +++ b/Documentation/jsc-glib-4.0/html/JSCContext.html @@ -3,12 +3,12 @@ JSCContext: JavaScriptCore GLib Reference Manual - + - + @@ -232,7 +232,7 @@ JSCVirtualMachine * virtual-machine -Read / Write / Construct Only +Read / Write / Construct Only @@ -1256,12 +1256,11 @@ the instance as parameter.

The “virtual-machine” property

  “virtual-machine”          JSCVirtualMachine *

The JSCVirtualMachine in which the context was created.

-

Owner: JSCContext

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/JSCException.html b/Documentation/jsc-glib-4.0/html/JSCException.html index 329fe7896e4d1ab5be77b61f4c25a7825fd332bc..e216af48e8279f1d06f80f1158cc611061c10ce8 100644 --- a/Documentation/jsc-glib-4.0/html/JSCException.html +++ b/Documentation/jsc-glib-4.0/html/JSCException.html @@ -3,12 +3,12 @@ JSCException: JavaScriptCore GLib Reference Manual - + - + @@ -684,6 +684,6 @@ source URI, line, column and backtrace, and formatted to be printed.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/JSCValue.html b/Documentation/jsc-glib-4.0/html/JSCValue.html index 8380f3bd0cf445f915c44d5e67e90d6268750a2b..3414ead9c12be9bc32b0d1868ccd01ccb3252b8b 100644 --- a/Documentation/jsc-glib-4.0/html/JSCValue.html +++ b/Documentation/jsc-glib-4.0/html/JSCValue.html @@ -3,12 +3,12 @@ JSCValue: JavaScriptCore GLib Reference Manual - + - + @@ -408,7 +408,7 @@ JSCContext * context -Read / Write / Construct Only +Read / Write / Construct Only @@ -2232,7 +2232,7 @@ is 0 no parameters will be passed to the constructor.

JSC_VALUE_PROPERTY_CONFIGURABLE

the type of the property descriptor may be changed and the -property may be deleted from the corresponding object.

+ property may be deleted from the corresponding object.

  @@ -2240,7 +2240,7 @@ property may be deleted from the corresponding object.

JSC_VALUE_PROPERTY_ENUMERABLE

the property shows up during enumeration of the properties on -the corresponding object.

+ the corresponding object.

  @@ -2248,7 +2248,7 @@ the corresponding object.

JSC_VALUE_PROPERTY_WRITABLE

the value associated with the property may be changed with an -assignment operator. This doesn't have any effect when passed to jsc_value_object_define_property_accessor().

+ assignment operator. This doesn't have any effect when passed to jsc_value_object_define_property_accessor().

  @@ -2263,8 +2263,7 @@ assignment operator. This doesn't have any effect when passed to

The “context” property

  “context”                  JSCContext *

The JSCContext in which the value was created.

-

Owner: JSCValue

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

@@ -2273,6 +2272,6 @@ assignment operator. This doesn't have any effect when passed to
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/JSCVirtualMachine.html b/Documentation/jsc-glib-4.0/html/JSCVirtualMachine.html index c6f94891d3e67ee6c0dfef7418b49380339e5563..82f4f793f4f99ed92fa442b89d49c65503724ed6 100644 --- a/Documentation/jsc-glib-4.0/html/JSCVirtualMachine.html +++ b/Documentation/jsc-glib-4.0/html/JSCVirtualMachine.html @@ -3,12 +3,12 @@ JSCVirtualMachine: JavaScriptCore GLib Reference Manual - + - + @@ -103,6 +103,6 @@ jsc_virtual_machine_new (void +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/JSCWeakValue.html b/Documentation/jsc-glib-4.0/html/JSCWeakValue.html index 5d17959537827d3a0ca6c6156e17a5453983f5c9..da47d3c58810f7df4c7b4a6b38030bace702a93d 100644 --- a/Documentation/jsc-glib-4.0/html/JSCWeakValue.html +++ b/Documentation/jsc-glib-4.0/html/JSCWeakValue.html @@ -3,12 +3,12 @@ JSCWeakValue: JavaScriptCore GLib Reference Manual - + - + @@ -73,7 +73,7 @@
JSCValue * value -Write / Construct Only +Write / Construct Only @@ -81,9 +81,9 @@

Signals

---+++ @@ -189,8 +189,7 @@ was cleared.

The “value” property

  “value”                    JSCValue *

The JSCValue referencing the JavaScript value.

-

Owner: JSCWeakValue

-

Flags: Write / Construct Only

+

Flags: Write / Construct Only

@@ -232,6 +231,6 @@ user_function (
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/annotation-glossary.html b/Documentation/jsc-glib-4.0/html/annotation-glossary.html index c70ed0d3a8ccb42913943abd84e73aeb885521aa..8075865068b244d283de71d7448a419893099a05 100644 --- a/Documentation/jsc-glib-4.0/html/annotation-glossary.html +++ b/Documentation/jsc-glib-4.0/html/annotation-glossary.html @@ -3,11 +3,11 @@ Annotation Glossary: JavaScriptCore GLib Reference Manual - + - + @@ -69,6 +69,6 @@

Don't free data after the code is done.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/api-index-2-24.html b/Documentation/jsc-glib-4.0/html/api-index-2-24.html new file mode 100644 index 0000000000000000000000000000000000000000..9f69579a653627d4195e12eade9f6e0c632e9040 --- /dev/null +++ b/Documentation/jsc-glib-4.0/html/api-index-2-24.html @@ -0,0 +1,118 @@ + + + + +Index of new symbols in 2.24: JavaScriptCore GLib Reference Manual + + + + + + + + + +
void
+ + + + + + +
+

+Index of new symbols in 2.24

+

O

+
+JSCOptionsFunc, user_function in JSCOptions +
+
+
+jsc_options_foreach, function in JSCOptions +
+
+
+jsc_options_get_boolean, function in JSCOptions +
+
+
+jsc_options_get_double, function in JSCOptions +
+
+
+jsc_options_get_int, function in JSCOptions +
+
+
+jsc_options_get_option_group, function in JSCOptions +
+
+
+jsc_options_get_range_string, function in JSCOptions +
+
+
+jsc_options_get_size, function in JSCOptions +
+
+
+jsc_options_get_string, function in JSCOptions +
+
+
+jsc_options_get_uint, function in JSCOptions +
+
+
+jsc_options_set_boolean, function in JSCOptions +
+
+
+jsc_options_set_double, function in JSCOptions +
+
+
+jsc_options_set_int, function in JSCOptions +
+
+
+jsc_options_set_range_string, function in JSCOptions +
+
+
+jsc_options_set_size, function in JSCOptions +
+
+
+jsc_options_set_string, function in JSCOptions +
+
+
+jsc_options_set_uint, function in JSCOptions +
+
+
+JSC_OPTIONS_USE_DFG, macro in JSCOptions +
+
+
+JSC_OPTIONS_USE_FTL, macro in JSCOptions +
+
+
+JSC_OPTIONS_USE_JIT, macro in JSCOptions +
+
+
+JSC_OPTIONS_USE_LLINT, macro in JSCOptions +
+
+
+JSCOptionType, enum in JSCOptions +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/ch01.html b/Documentation/jsc-glib-4.0/html/ch01.html index 1ca0369b49758f1d8625599b4a431a028b4254a5..6dbc55c6dcd908a50778202879029fc67a78eec1 100644 --- a/Documentation/jsc-glib-4.0/html/ch01.html +++ b/Documentation/jsc-glib-4.0/html/ch01.html @@ -3,12 +3,12 @@ Class Overview: JavaScriptCore GLib Reference Manual - + - + @@ -50,6 +50,6 @@
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/index-all.html b/Documentation/jsc-glib-4.0/html/index-all.html index f65eca4c58fe6ea100d487de4ac138594d2a1d72..f74796912e882de84c2a841eeae619fd5b8469d7 100644 --- a/Documentation/jsc-glib-4.0/html/index-all.html +++ b/Documentation/jsc-glib-4.0/html/index-all.html @@ -3,12 +3,12 @@ Index: JavaScriptCore GLib Reference Manual - + - + @@ -26,327 +26,327 @@

C

-
JSCCheckSyntaxMode, enum JSCCheckSyntaxMode +
JSCCheckSyntaxMode, enum JSCCheckSyntaxMode
-
JSCCheckSyntaxResult, enum JSCCheckSyntaxResult +
JSCCheckSyntaxResult, enum JSCCheckSyntaxResult
-
JSC_CHECK_VERSION, JSC_CHECK_VERSION() +
JSC_CHECK_VERSION, JSC_CHECK_VERSION()
-
JSCClass, JSCClass +
JSCClass, JSCClass
-
JSCClass:context, The “context” property +
JSCClass:context, The “context” property
-
JSCClass:name, The “name” property +
JSCClass:name, The “name” property
-
JSCClass:parent, The “parent” property +
JSCClass:parent, The “parent” property
-
JSCClassDeletePropertyFunction, JSCClassDeletePropertyFunction () +
JSCClassDeletePropertyFunction, JSCClassDeletePropertyFunction ()
-
JSCClassEnumeratePropertiesFunction, JSCClassEnumeratePropertiesFunction () +
JSCClassEnumeratePropertiesFunction, JSCClassEnumeratePropertiesFunction ()
-
JSCClassGetPropertyFunction, JSCClassGetPropertyFunction () +
JSCClassGetPropertyFunction, JSCClassGetPropertyFunction ()
-
JSCClassHasPropertyFunction, JSCClassHasPropertyFunction () +
JSCClassHasPropertyFunction, JSCClassHasPropertyFunction ()
-
JSCClassSetPropertyFunction, JSCClassSetPropertyFunction () +
JSCClassSetPropertyFunction, JSCClassSetPropertyFunction ()
-
JSCClassVTable, JSCClassVTable +
JSCClassVTable, JSCClassVTable
-
jsc_class_add_constructor, jsc_class_add_constructor () +
jsc_class_add_constructor, jsc_class_add_constructor ()
-
jsc_class_add_constructorv, jsc_class_add_constructorv () +
jsc_class_add_constructorv, jsc_class_add_constructorv ()
-
jsc_class_add_constructor_variadic, jsc_class_add_constructor_variadic () +
jsc_class_add_constructor_variadic, jsc_class_add_constructor_variadic ()
-
jsc_class_add_method, jsc_class_add_method () +
jsc_class_add_method, jsc_class_add_method ()
-
jsc_class_add_methodv, jsc_class_add_methodv () +
jsc_class_add_methodv, jsc_class_add_methodv ()
-
jsc_class_add_method_variadic, jsc_class_add_method_variadic () +
jsc_class_add_method_variadic, jsc_class_add_method_variadic ()
-
jsc_class_add_property, jsc_class_add_property () +
jsc_class_add_property, jsc_class_add_property ()
-
jsc_class_get_name, jsc_class_get_name () +
jsc_class_get_name, jsc_class_get_name ()
-
jsc_class_get_parent, jsc_class_get_parent () +
jsc_class_get_parent, jsc_class_get_parent ()
-
JSCContext, JSCContext +
JSCContext, JSCContext
-
JSCContext:virtual-machine, The “virtual-machine” property +
JSCContext:virtual-machine, The “virtual-machine” property
-
jsc_context_check_syntax, jsc_context_check_syntax () +
jsc_context_check_syntax, jsc_context_check_syntax ()
-
jsc_context_clear_exception, jsc_context_clear_exception () +
jsc_context_clear_exception, jsc_context_clear_exception ()
-
jsc_context_evaluate, jsc_context_evaluate () +
jsc_context_evaluate, jsc_context_evaluate ()
-
jsc_context_evaluate_in_object, jsc_context_evaluate_in_object () +
jsc_context_evaluate_in_object, jsc_context_evaluate_in_object ()
-
jsc_context_evaluate_with_source_uri, jsc_context_evaluate_with_source_uri () +
jsc_context_evaluate_with_source_uri, jsc_context_evaluate_with_source_uri ()
-
jsc_context_get_current, jsc_context_get_current () +
jsc_context_get_current, jsc_context_get_current ()
-
jsc_context_get_exception, jsc_context_get_exception () +
jsc_context_get_exception, jsc_context_get_exception ()
-
jsc_context_get_global_object, jsc_context_get_global_object () +
jsc_context_get_global_object, jsc_context_get_global_object ()
-
jsc_context_get_value, jsc_context_get_value () +
jsc_context_get_value, jsc_context_get_value ()
-
jsc_context_get_virtual_machine, jsc_context_get_virtual_machine () +
jsc_context_get_virtual_machine, jsc_context_get_virtual_machine ()
-
jsc_context_new, jsc_context_new () +
jsc_context_new, jsc_context_new ()
-
jsc_context_new_with_virtual_machine, jsc_context_new_with_virtual_machine () +
jsc_context_new_with_virtual_machine, jsc_context_new_with_virtual_machine ()
-
jsc_context_pop_exception_handler, jsc_context_pop_exception_handler () +
jsc_context_pop_exception_handler, jsc_context_pop_exception_handler ()
-
jsc_context_push_exception_handler, jsc_context_push_exception_handler () +
jsc_context_push_exception_handler, jsc_context_push_exception_handler ()
-
jsc_context_register_class, jsc_context_register_class () +
jsc_context_register_class, jsc_context_register_class ()
-
jsc_context_set_value, jsc_context_set_value () +
jsc_context_set_value, jsc_context_set_value ()
-
jsc_context_throw, jsc_context_throw () +
jsc_context_throw, jsc_context_throw ()
-
jsc_context_throw_exception, jsc_context_throw_exception () +
jsc_context_throw_exception, jsc_context_throw_exception ()
-
jsc_context_throw_printf, jsc_context_throw_printf () +
jsc_context_throw_printf, jsc_context_throw_printf ()
-
jsc_context_throw_with_name, jsc_context_throw_with_name () +
jsc_context_throw_with_name, jsc_context_throw_with_name ()
-
jsc_context_throw_with_name_printf, jsc_context_throw_with_name_printf () +
jsc_context_throw_with_name_printf, jsc_context_throw_with_name_printf ()

E

-
JSCException, struct JSCException +
JSCException, struct JSCException
-
JSCExceptionHandler, JSCExceptionHandler () +
JSCExceptionHandler, JSCExceptionHandler ()
-
jsc_exception_get_backtrace_string, jsc_exception_get_backtrace_string () +
jsc_exception_get_backtrace_string, jsc_exception_get_backtrace_string ()
-
jsc_exception_get_column_number, jsc_exception_get_column_number () +
jsc_exception_get_column_number, jsc_exception_get_column_number ()
-
jsc_exception_get_line_number, jsc_exception_get_line_number () +
jsc_exception_get_line_number, jsc_exception_get_line_number ()
-
jsc_exception_get_message, jsc_exception_get_message () +
jsc_exception_get_message, jsc_exception_get_message ()
-
jsc_exception_get_name, jsc_exception_get_name () +
jsc_exception_get_name, jsc_exception_get_name ()
-
jsc_exception_get_source_uri, jsc_exception_get_source_uri () +
jsc_exception_get_source_uri, jsc_exception_get_source_uri ()
-
jsc_exception_new, jsc_exception_new () +
jsc_exception_new, jsc_exception_new ()
-
jsc_exception_new_printf, jsc_exception_new_printf () +
jsc_exception_new_printf, jsc_exception_new_printf ()
-
jsc_exception_new_vprintf, jsc_exception_new_vprintf () +
jsc_exception_new_vprintf, jsc_exception_new_vprintf ()
-
jsc_exception_new_with_name, jsc_exception_new_with_name () +
jsc_exception_new_with_name, jsc_exception_new_with_name ()
-
jsc_exception_new_with_name_printf, jsc_exception_new_with_name_printf () +
jsc_exception_new_with_name_printf, jsc_exception_new_with_name_printf ()
-
jsc_exception_new_with_name_vprintf, jsc_exception_new_with_name_vprintf () +
jsc_exception_new_with_name_vprintf, jsc_exception_new_with_name_vprintf ()
-
jsc_exception_report, jsc_exception_report () +
jsc_exception_report, jsc_exception_report ()
-
jsc_exception_to_string, jsc_exception_to_string () +
jsc_exception_to_string, jsc_exception_to_string ()

G

-
jsc_get_major_version, jsc_get_major_version () +
jsc_get_major_version, jsc_get_major_version ()
-
jsc_get_micro_version, jsc_get_micro_version () +
jsc_get_micro_version, jsc_get_micro_version ()
-
jsc_get_minor_version, jsc_get_minor_version () +
jsc_get_minor_version, jsc_get_minor_version ()

M

-
JSC_MAJOR_VERSION, JSC_MAJOR_VERSION +
JSC_MAJOR_VERSION, JSC_MAJOR_VERSION
-
JSC_MICRO_VERSION, JSC_MICRO_VERSION +
JSC_MICRO_VERSION, JSC_MICRO_VERSION
-
JSC_MINOR_VERSION, JSC_MINOR_VERSION +
JSC_MINOR_VERSION, JSC_MINOR_VERSION

O

-
JSCOptionsFunc, JSCOptionsFunc () +
JSCOptionsFunc, JSCOptionsFunc ()
-
jsc_options_foreach, jsc_options_foreach () +
jsc_options_foreach, jsc_options_foreach ()
-
jsc_options_get_boolean, jsc_options_get_boolean () +
jsc_options_get_boolean, jsc_options_get_boolean ()
-
jsc_options_get_double, jsc_options_get_double () +
jsc_options_get_double, jsc_options_get_double ()
-
jsc_options_get_int, jsc_options_get_int () +
jsc_options_get_int, jsc_options_get_int ()
-
jsc_options_get_option_group, jsc_options_get_option_group () +
jsc_options_get_option_group, jsc_options_get_option_group ()
-
jsc_options_get_range_string, jsc_options_get_range_string () +
jsc_options_get_range_string, jsc_options_get_range_string ()
-
jsc_options_get_size, jsc_options_get_size () +
jsc_options_get_size, jsc_options_get_size ()
-
jsc_options_get_string, jsc_options_get_string () +
jsc_options_get_string, jsc_options_get_string ()
-
jsc_options_get_uint, jsc_options_get_uint () +
jsc_options_get_uint, jsc_options_get_uint ()
-
jsc_options_set_boolean, jsc_options_set_boolean () +
jsc_options_set_boolean, jsc_options_set_boolean ()
-
jsc_options_set_double, jsc_options_set_double () +
jsc_options_set_double, jsc_options_set_double ()
-
jsc_options_set_int, jsc_options_set_int () +
jsc_options_set_int, jsc_options_set_int ()
-
jsc_options_set_range_string, jsc_options_set_range_string () +
jsc_options_set_range_string, jsc_options_set_range_string ()
-
jsc_options_set_size, jsc_options_set_size () +
jsc_options_set_size, jsc_options_set_size ()
-
jsc_options_set_string, jsc_options_set_string () +
jsc_options_set_string, jsc_options_set_string ()
-
jsc_options_set_uint, jsc_options_set_uint () +
jsc_options_set_uint, jsc_options_set_uint ()
-
JSC_OPTIONS_USE_DFG, JSC_OPTIONS_USE_DFG +
JSC_OPTIONS_USE_DFG, JSC_OPTIONS_USE_DFG
-
JSC_OPTIONS_USE_FTL, JSC_OPTIONS_USE_FTL +
JSC_OPTIONS_USE_FTL, JSC_OPTIONS_USE_FTL
-
JSC_OPTIONS_USE_JIT, JSC_OPTIONS_USE_JIT +
JSC_OPTIONS_USE_JIT, JSC_OPTIONS_USE_JIT
-
JSC_OPTIONS_USE_LLINT, JSC_OPTIONS_USE_LLINT +
JSC_OPTIONS_USE_LLINT, JSC_OPTIONS_USE_LLINT
-
JSCOptionType, enum JSCOptionType +
JSCOptionType, enum JSCOptionType

V

-
JSCValue, struct JSCValue +
JSCValue, struct JSCValue
-
JSCValue:context, The “context” property +
JSCValue:context, The “context” property
-
JSCValuePropertyFlags, enum JSCValuePropertyFlags +
JSCValuePropertyFlags, enum JSCValuePropertyFlags
-
jsc_value_constructor_call, jsc_value_constructor_call () +
jsc_value_constructor_call, jsc_value_constructor_call ()
-
jsc_value_constructor_callv, jsc_value_constructor_callv () +
jsc_value_constructor_callv, jsc_value_constructor_callv ()
-
jsc_value_function_call, jsc_value_function_call () +
jsc_value_function_call, jsc_value_function_call ()
-
jsc_value_function_callv, jsc_value_function_callv () +
jsc_value_function_callv, jsc_value_function_callv ()
-
jsc_value_get_context, jsc_value_get_context () +
jsc_value_get_context, jsc_value_get_context ()
-
jsc_value_is_array, jsc_value_is_array () +
jsc_value_is_array, jsc_value_is_array ()
-
jsc_value_is_boolean, jsc_value_is_boolean () +
jsc_value_is_boolean, jsc_value_is_boolean ()
-
jsc_value_is_constructor, jsc_value_is_constructor () +
jsc_value_is_constructor, jsc_value_is_constructor ()
-
jsc_value_is_function, jsc_value_is_function () +
jsc_value_is_function, jsc_value_is_function ()
-
jsc_value_is_null, jsc_value_is_null () +
jsc_value_is_null, jsc_value_is_null ()
-
jsc_value_is_number, jsc_value_is_number () +
jsc_value_is_number, jsc_value_is_number ()
-
jsc_value_is_object, jsc_value_is_object () +
jsc_value_is_object, jsc_value_is_object ()
-
jsc_value_is_string, jsc_value_is_string () +
jsc_value_is_string, jsc_value_is_string ()
-
jsc_value_is_undefined, jsc_value_is_undefined () +
jsc_value_is_undefined, jsc_value_is_undefined ()
-
jsc_value_new_array, jsc_value_new_array () +
jsc_value_new_array, jsc_value_new_array ()
-
jsc_value_new_array_from_garray, jsc_value_new_array_from_garray () +
jsc_value_new_array_from_garray, jsc_value_new_array_from_garray ()
-
jsc_value_new_array_from_strv, jsc_value_new_array_from_strv () +
jsc_value_new_array_from_strv, jsc_value_new_array_from_strv ()
-
jsc_value_new_boolean, jsc_value_new_boolean () +
jsc_value_new_boolean, jsc_value_new_boolean ()
-
jsc_value_new_function, jsc_value_new_function () +
jsc_value_new_function, jsc_value_new_function ()
-
jsc_value_new_functionv, jsc_value_new_functionv () +
jsc_value_new_functionv, jsc_value_new_functionv ()
-
jsc_value_new_function_variadic, jsc_value_new_function_variadic () +
jsc_value_new_function_variadic, jsc_value_new_function_variadic ()
-
jsc_value_new_null, jsc_value_new_null () +
jsc_value_new_null, jsc_value_new_null ()
-
jsc_value_new_number, jsc_value_new_number () +
jsc_value_new_number, jsc_value_new_number ()
-
jsc_value_new_object, jsc_value_new_object () +
jsc_value_new_object, jsc_value_new_object ()
-
jsc_value_new_string, jsc_value_new_string () +
jsc_value_new_string, jsc_value_new_string ()
-
jsc_value_new_string_from_bytes, jsc_value_new_string_from_bytes () +
jsc_value_new_string_from_bytes, jsc_value_new_string_from_bytes ()
-
jsc_value_new_undefined, jsc_value_new_undefined () +
jsc_value_new_undefined, jsc_value_new_undefined ()
-
jsc_value_object_define_property_accessor, jsc_value_object_define_property_accessor () +
jsc_value_object_define_property_accessor, jsc_value_object_define_property_accessor ()
-
jsc_value_object_define_property_data, jsc_value_object_define_property_data () +
jsc_value_object_define_property_data, jsc_value_object_define_property_data ()
-
jsc_value_object_delete_property, jsc_value_object_delete_property () +
jsc_value_object_delete_property, jsc_value_object_delete_property ()
-
jsc_value_object_enumerate_properties, jsc_value_object_enumerate_properties () +
jsc_value_object_enumerate_properties, jsc_value_object_enumerate_properties ()
-
jsc_value_object_get_property, jsc_value_object_get_property () +
jsc_value_object_get_property, jsc_value_object_get_property ()
-
jsc_value_object_get_property_at_index, jsc_value_object_get_property_at_index () +
jsc_value_object_get_property_at_index, jsc_value_object_get_property_at_index ()
-
jsc_value_object_has_property, jsc_value_object_has_property () +
jsc_value_object_has_property, jsc_value_object_has_property ()
-
jsc_value_object_invoke_method, jsc_value_object_invoke_method () +
jsc_value_object_invoke_method, jsc_value_object_invoke_method ()
-
jsc_value_object_invoke_methodv, jsc_value_object_invoke_methodv () +
jsc_value_object_invoke_methodv, jsc_value_object_invoke_methodv ()
-
jsc_value_object_is_instance_of, jsc_value_object_is_instance_of () +
jsc_value_object_is_instance_of, jsc_value_object_is_instance_of ()
-
jsc_value_object_set_property, jsc_value_object_set_property () +
jsc_value_object_set_property, jsc_value_object_set_property ()
-
jsc_value_object_set_property_at_index, jsc_value_object_set_property_at_index () +
jsc_value_object_set_property_at_index, jsc_value_object_set_property_at_index ()
-
jsc_value_to_boolean, jsc_value_to_boolean () +
jsc_value_to_boolean, jsc_value_to_boolean ()
-
jsc_value_to_double, jsc_value_to_double () +
jsc_value_to_double, jsc_value_to_double ()
-
jsc_value_to_int32, jsc_value_to_int32 () +
jsc_value_to_int32, jsc_value_to_int32 ()
-
jsc_value_to_string, jsc_value_to_string () +
jsc_value_to_string, jsc_value_to_string ()
-
jsc_value_to_string_as_bytes, jsc_value_to_string_as_bytes () +
jsc_value_to_string_as_bytes, jsc_value_to_string_as_bytes ()
-
JSCVirtualMachine, struct JSCVirtualMachine +
JSCVirtualMachine, struct JSCVirtualMachine
-
jsc_virtual_machine_new, jsc_virtual_machine_new () +
jsc_virtual_machine_new, jsc_virtual_machine_new ()

W

-
JSCWeakValue, struct JSCWeakValue +
JSCWeakValue, struct JSCWeakValue
-
JSCWeakValue::cleared, The “cleared” signal +
JSCWeakValue::cleared, The “cleared” signal
-
JSCWeakValue:value, The “value” property +
JSCWeakValue:value, The “value” property
-
jsc_weak_value_get_value, jsc_weak_value_get_value () +
jsc_weak_value_get_value, jsc_weak_value_get_value ()
-
jsc_weak_value_new, jsc_weak_value_new () +
jsc_weak_value_new, jsc_weak_value_new ()
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/index.html b/Documentation/jsc-glib-4.0/html/index.html index 6aa3e095de4b6c5995acd58f8384ef22204c9620..63bfa116e683b77a768b7b27eff7222e90e9f6d0 100644 --- a/Documentation/jsc-glib-4.0/html/index.html +++ b/Documentation/jsc-glib-4.0/html/index.html @@ -3,10 +3,10 @@ JavaScriptCore GLib Reference Manual: JavaScriptCore GLib Reference Manual - + - + @@ -14,7 +14,7 @@
-

for JavaScriptCore 2.24.4

+

for JavaScriptCore 2.26.0


@@ -47,10 +47,11 @@
Index
+
Index of new symbols in 2.24
Annotation Glossary
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCOptions.html b/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCOptions.html index 91da799e28862ceae621ebeaa6fbeadc798c60f5..0e253a3e4890aa8339b105da7f43d5ee60af9978 100644 --- a/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCOptions.html +++ b/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCOptions.html @@ -3,12 +3,12 @@ JSCOptions: JavaScriptCore GLib Reference Manual - + - + @@ -955,6 +955,6 @@ Default value: +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCVersion.html b/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCVersion.html index 1f18b52ea0a6c67250540a62c7020d80605856b0..8da4ff896d27f80015a13e0765143607b0655775 100644 --- a/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCVersion.html +++ b/Documentation/jsc-glib-4.0/html/jsc-glib-4.0-JSCVersion.html @@ -3,12 +3,12 @@ JSCVersion: JavaScriptCore GLib Reference Manual - + - + @@ -169,18 +169,18 @@ have included when compiling your code.


JSC_MINOR_VERSION

-
#define JSC_MINOR_VERSION (24)
+
#define JSC_MINOR_VERSION (26)
 

JSC_MICRO_VERSION

-
#define JSC_MICRO_VERSION (4)
+
#define JSC_MICRO_VERSION (0)
 
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/jsc-glib-4.0/html/style.css b/Documentation/jsc-glib-4.0/html/style.css index b4a1493bbf17ef24efab55ed4735a1e6c95dc27f..4be4ede11b9af86fd95fb17cdf76773c323609e0 100644 --- a/Documentation/jsc-glib-4.0/html/style.css +++ b/Documentation/jsc-glib-4.0/html/style.css @@ -293,11 +293,29 @@ h2 .extralinks, h3 .extralinks font-weight: normal; } -acronym,abbr +acronym,abbr { border-bottom: 1px dotted gray; } +/* code listings */ + +.listing_code .programlisting .normal, +.listing_code .programlisting .normal a, +.listing_code .programlisting .number, +.listing_code .programlisting .cbracket, +.listing_code .programlisting .symbol { color: #555753; } +.listing_code .programlisting .comment, +.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ +.listing_code .programlisting .function, +.listing_code .programlisting .function a, +.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ +.listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */ +.listing_code .programlisting .keyword, +.listing_code .programlisting .usertype, +.listing_code .programlisting .type, +.listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */ + .listing_frame { /* tango:sky blue 1 */ border: solid 1px #729fcf; @@ -463,71 +481,3 @@ acronym,abbr } } -.hll { background-color: #ffffcc } -.c { color: #408080; font-style: italic } /* Comment */ -.err { border: 1px solid #FF0000 } /* Error */ -.k { color: #008000; font-weight: bold } /* Keyword */ -.o { color: #666666 } /* Operator */ -.ch { color: #408080; font-style: italic } /* Comment.Hashbang */ -.cm { color: #408080; font-style: italic } /* Comment.Multiline */ -.cp { color: #BC7A00 } /* Comment.Preproc */ -.cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ -.c1 { color: #408080; font-style: italic } /* Comment.Single */ -.cs { color: #408080; font-style: italic } /* Comment.Special */ -.gd { color: #A00000 } /* Generic.Deleted */ -.ge { font-style: italic } /* Generic.Emph */ -.gr { color: #FF0000 } /* Generic.Error */ -.gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.gi { color: #00A000 } /* Generic.Inserted */ -.go { color: #888888 } /* Generic.Output */ -.gp { color: #000080; font-weight: bold } /* Generic.Prompt */ -.gs { font-weight: bold } /* Generic.Strong */ -.gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.gt { color: #0044DD } /* Generic.Traceback */ -.kc { color: #008000; font-weight: bold } /* Keyword.Constant */ -.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ -.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ -.kp { color: #008000 } /* Keyword.Pseudo */ -.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ -.kt { color: #B00040 } /* Keyword.Type */ -.m { color: #666666 } /* Literal.Number */ -.s { color: #BA2121 } /* Literal.String */ -.na { color: #7D9029 } /* Name.Attribute */ -.nb { color: #008000 } /* Name.Builtin */ -.nc { color: #0000FF; font-weight: bold } /* Name.Class */ -.no { color: #880000 } /* Name.Constant */ -.nd { color: #AA22FF } /* Name.Decorator */ -.ni { color: #999999; font-weight: bold } /* Name.Entity */ -.ne { color: #D2413A; font-weight: bold } /* Name.Exception */ -.nf { color: #0000FF } /* Name.Function */ -.nl { color: #A0A000 } /* Name.Label */ -.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ -.nt { color: #008000; font-weight: bold } /* Name.Tag */ -.nv { color: #19177C } /* Name.Variable */ -.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ -.w { color: #bbbbbb } /* Text.Whitespace */ -.mb { color: #666666 } /* Literal.Number.Bin */ -.mf { color: #666666 } /* Literal.Number.Float */ -.mh { color: #666666 } /* Literal.Number.Hex */ -.mi { color: #666666 } /* Literal.Number.Integer */ -.mo { color: #666666 } /* Literal.Number.Oct */ -.sa { color: #BA2121 } /* Literal.String.Affix */ -.sb { color: #BA2121 } /* Literal.String.Backtick */ -.sc { color: #BA2121 } /* Literal.String.Char */ -.dl { color: #BA2121 } /* Literal.String.Delimiter */ -.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ -.s2 { color: #BA2121 } /* Literal.String.Double */ -.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ -.sh { color: #BA2121 } /* Literal.String.Heredoc */ -.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ -.sx { color: #008000 } /* Literal.String.Other */ -.sr { color: #BB6688 } /* Literal.String.Regex */ -.s1 { color: #BA2121 } /* Literal.String.Single */ -.ss { color: #19177C } /* Literal.String.Symbol */ -.bp { color: #008000 } /* Name.Builtin.Pseudo */ -.fm { color: #0000FF } /* Name.Function.Magic */ -.vc { color: #19177C } /* Name.Variable.Class */ -.vg { color: #19177C } /* Name.Variable.Global */ -.vi { color: #19177C } /* Name.Variable.Instance */ -.vm { color: #19177C } /* Name.Variable.Magic */ -.il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitApplicationInfo.html b/Documentation/webkit2gtk-4.0/html/WebKitApplicationInfo.html index c5b3d4fd1f33869419d476e2f152e53850394d22..279b2b00a7f0e6412b7c43e37c0e10e041a3e684 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitApplicationInfo.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitApplicationInfo.html @@ -3,12 +3,12 @@ WebKitApplicationInfo: WebKitGTK Reference Manual - + - - + + @@ -21,7 +21,7 @@ Home Up Prev -Next +Next
@@ -113,7 +113,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitApplicationInfo
 
@@ -349,6 +349,6 @@ webkit_application_info_get_version ( +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitAuthenticationRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitAuthenticationRequest.html index 64ea78faeb7907b6ca8e03b7664b6bd3b4c97664..9e83ef5acab29d19680f702ac2234fa63243adbc 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitAuthenticationRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitAuthenticationRequest.html @@ -3,12 +3,12 @@ WebKitAuthenticationRequest: WebKitGTK Reference Manual - + - + - + @@ -180,9 +180,9 @@

Signals

---+++ @@ -220,7 +220,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitCredential
     GObject
     ╰── WebKitAuthenticationRequest
@@ -906,10 +906,10 @@ dialog in case of page load failure for example.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitAutomationSession.html b/Documentation/webkit2gtk-4.0/html/WebKitAutomationSession.html index ca948c1e88ab859b03c6a496d5a93a7fcd098da2..39606ff6ef91957c5c8a5b710cde2993ec3f42d7 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitAutomationSession.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitAutomationSession.html @@ -3,12 +3,12 @@ WebKitAutomationSession: WebKitGTK Reference Manual - + - + @@ -80,7 +80,7 @@ - +
void gchar * idRead / Write / Construct OnlyRead / Write / Construct Only
@@ -88,13 +88,13 @@

Signals

---+++ +WebKitWebView* @@ -125,7 +125,7 @@ When a new session is requested, a WebKitAutomationSession is created and the signal WebKitWebContext::automation-started is emitted with the WebKitAutomationSession as argument. Then, the automation client can request the session to create a new -WebKitWebView to interact with it. When this happens the signal “create-web-view” +WebKitWebView to interact with it. When this happens the signal “create-web-view” is emitted.

@@ -239,8 +239,7 @@ webkit_automation_session_get_application_info

The “id” property

  “id”                       gchar *

The session unique identifier.

-

Owner: WebKitAutomationSession

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.18

@@ -249,13 +248,13 @@ webkit_automation_session_get_application_info

Signal Details

The “create-web-view” signal

-
WebKitWebView*
+
WebKitWebView*
 user_function (WebKitAutomationSession *session,
                gpointer                 user_data)

This signal is emitted when the automation client requests a new browsing context to interact with it. The callback handler should -return a WebKitWebView created with “is-controlled-by-automation” -construct property enabled. The returned WebKitWebView could be an existing +return a WebKitWebView created with “is-controlled-by-automation” +construct property enabled. The returned WebKitWebView could be an existing web view or a new one created and added to a new tab or window.

Parameters

@@ -281,7 +280,7 @@ web view or a new one created and added to a new tab or window.

Returns

-

a WebKitWebView widget.

+

a WebKitWebView widget.

[transfer none]

Flags: Run Last

@@ -290,6 +289,6 @@ web view or a new one created and added to a new tab or window.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitBackForwardList.html b/Documentation/webkit2gtk-4.0/html/WebKitBackForwardList.html index 56a8bb0dd4285b7ee7521e3fb93ef96c37c8b7d7..acd861bb72ab6afba6b0b0a73696a8891d75a948 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitBackForwardList.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitBackForwardList.html @@ -3,12 +3,12 @@ WebKitBackForwardList: WebKitGTK Reference Manual - + - + @@ -120,9 +120,9 @@

Signals

-WebKitWebView* create-web-view Run Last
---+++ @@ -509,10 +509,10 @@ when the list is cleared or the maximum items limit is reached.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitBackForwardListItem.html b/Documentation/webkit2gtk-4.0/html/WebKitBackForwardListItem.html index fa2c1cc23a3a507cb82397fd303f7f82babc6b9c..2b10dcb57f32444e27863a4d7d26cb22f05d4da8 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitBackForwardListItem.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitBackForwardListItem.html @@ -3,12 +3,12 @@ WebKitBackForwardListItem: WebKitGTK Reference Manual - + - + @@ -191,6 +191,6 @@ when the original URI is empty.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitColorChooserRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitColorChooserRequest.html index 34b538312220b03b2767c6003ba027b321ea6922..c3c1def7d49120ae6e641b202efcfc97a26ace9a 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitColorChooserRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitColorChooserRequest.html @@ -3,12 +3,12 @@ WebKitColorChooserRequest: WebKitGTK Reference Manual - + - + @@ -105,9 +105,9 @@

Signals

void
---+++ @@ -315,7 +315,6 @@ is emitted to notify that the request has finished.

The “rgba” property

  “rgba”                     GdkRGBA *

The current RGBA color for the request.

-

Owner: WebKitColorChooserRequest

Flags: Read / Write / Construct

@@ -360,10 +359,10 @@ color input element is removed from the DOM.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitConsoleMessage.html b/Documentation/webkit2gtk-4.0/html/WebKitConsoleMessage.html index c016e68fcf29f3b8f652b0057fae1dc231d0dca1..fe1dfb1e098be38c2ab7ac95012e2920661ba003 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitConsoleMessage.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitConsoleMessage.html @@ -3,12 +3,12 @@ WebKitConsoleMessage: WebKitGTK Reference Manual - + - + @@ -122,9 +122,9 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitConsoleMessage
-    GEnum
+    GEnum
     ├── WebKitConsoleMessageLevel
     ╰── WebKitConsoleMessageSource
 
@@ -441,6 +441,6 @@ webkit_console_message_get_source_id ( -
Generated by GTK-Doc V1.31
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitContextMenu.html b/Documentation/webkit2gtk-4.0/html/WebKitContextMenu.html index f717ecee1d8c16a868018849c378f9cd75fbf4de..5e1a351f0f1341d19fceca463384f6304878b358 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitContextMenu.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitContextMenu.html @@ -3,12 +3,12 @@ WebKitContextMenu: WebKitGTK Reference Manual - + - + @@ -28,7 +28,7 @@
void

WebKitContextMenu

-

WebKitContextMenu — Represents the context menu in a WebKitWebView

+

WebKitContextMenu — Represents the context menu in a WebKitWebView

@@ -185,8 +185,8 @@

Description

WebKitContextMenu represents a context menu containing -WebKitContextMenuItems in a WebKitWebView.

-

When a WebKitWebView is about to display the context menu, it +WebKitContextMenuItems in a WebKitWebView.

+

When a WebKitWebView is about to display the context menu, it emits the “context-menu” signal, which has the WebKitContextMenu as an argument. You can modify it, adding new submenus that you can create with webkit_context_menu_new(), adding @@ -202,7 +202,7 @@ existing ones with WebKitContextMenu * webkit_context_menu_new (void);

Creates a new WebKitContextMenu object to be used as a submenu of an existing -WebKitContextMenu. The context menu of a WebKitWebView is created by the view +WebKitContextMenu. The context menu of a WebKitWebView is created by the view and passed as an argument of “context-menu” signal. To add items to the menu use webkit_context_menu_prepend(), webkit_context_menu_append() or webkit_context_menu_insert(). @@ -685,6 +685,6 @@ doesn't have user data.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitContextMenuItem.html b/Documentation/webkit2gtk-4.0/html/WebKitContextMenuItem.html index f4f85066226fdc28a2612b498209d0a8459de317..5addd6ea042b876e64dd59119dd96e1e1f2f5f21 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitContextMenuItem.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitContextMenuItem.html @@ -3,12 +3,12 @@ WebKitContextMenuItem: WebKitGTK Reference Manual - + - + @@ -891,6 +891,13 @@ doesn't have a submenu.

  +

WEBKIT_CONTEXT_MENU_ACTION_INSERT_EMOJI

+ +

Insert an emoji. Since 2.26

+ +  + +

WEBKIT_CONTEXT_MENU_ACTION_CUSTOM

Custom action defined by applications.

@@ -904,6 +911,6 @@ doesn't have a submenu.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitCookieManager.html b/Documentation/webkit2gtk-4.0/html/WebKitCookieManager.html index cb806979dda0f322925bd6c212c8ef8f16d525e5..afa669332c9e7e452ec140823704f6af1e4d9bf6 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitCookieManager.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitCookieManager.html @@ -3,12 +3,12 @@ WebKitCookieManager: WebKitGTK Reference Manual - + - + @@ -160,9 +160,9 @@

Signals

---+++ @@ -485,11 +485,11 @@ or N

webkit_cookie_manager_add_cookie ()

void
 webkit_cookie_manager_add_cookie (WebKitCookieManager *cookie_manager,
-                                  SoupCookie *cookie,
+                                  SoupCookie *cookie,
                                   GCancellable *cancellable,
                                   GAsyncReadyCallback callback,
                                   gpointer user_data);
-

Asynchronously add a SoupCookie to the underlying storage.

+

Asynchronously add a SoupCookie to the underlying storage.

When the operation is finished, callback will be called. You can then call webkit_cookie_manager_add_cookie_finish() to get the result of the operation.

@@ -509,7 +509,7 @@ webkit_cookie_manager_add_cookie (
- + @@ -583,7 +583,7 @@ webkit_cookie_manager_get_cookies (GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); -

Asynchronously get a list of SoupCookie from cookie_manager +

Asynchronously get a list of SoupCookie from cookie_manager associated with uri , which must be either an HTTP or an HTTPS URL.

@@ -638,8 +638,8 @@ webkit_cookie_manager_get_cookies_finish GAsyncResult *result, GError **error);

Finish an asynchronous operation started with webkit_cookie_manager_get_cookies(). -The return value is a GSList of SoupCookie instances which should be released -with g_list_free_full() and soup_cookie_free().

+The return value is a GSList of SoupCookie instances which should be released +with g_list_free_full() and soup_cookie_free().

Parameters

void

cookie

the SoupCookie to be added

the SoupCookie to be added

 
@@ -669,7 +669,7 @@ with

Returns

-

A GList of SoupCookie instances.

+

A GList of SoupCookie instances.

[element-type SoupCookie][transfer full]

Since: 2.20

@@ -679,11 +679,11 @@ with

webkit_cookie_manager_delete_cookie ()

void
 webkit_cookie_manager_delete_cookie (WebKitCookieManager *cookie_manager,
-                                     SoupCookie *cookie,
+                                     SoupCookie *cookie,
                                      GCancellable *cancellable,
                                      GAsyncReadyCallback callback,
                                      gpointer user_data);
-

Asynchronously delete a SoupCookie from the current session.

+

Asynchronously delete a SoupCookie from the current session.

When the operation is finished, callback will be called. You can then call webkit_cookie_manager_delete_cookie_finish() to get the result of the operation.

@@ -703,7 +703,7 @@ webkit_cookie_manager_delete_cookie (
- + @@ -857,7 +857,7 @@ webkit_cookie_manager_delete_all_cookies @@ -865,7 +865,7 @@ file in the Mozilla "cookies.txt" format.

@@ -947,6 +947,6 @@ user_function ( -
Generated by GTK-Doc V1.31 +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitDeviceInfoPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitDeviceInfoPermissionRequest.html index 561f91f3ad3ff53161f285a2012d98cfe0ede015..92a0d758beccc79e56eeb2c97c20e91d3156affd 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitDeviceInfoPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitDeviceInfoPermissionRequest.html @@ -3,12 +3,12 @@ WebKitDeviceInfoPermissionRequest: WebKitGTK Reference Manual - + - + @@ -79,10 +79,10 @@ it is denied by default.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitDownload.html b/Documentation/webkit2gtk-4.0/html/WebKitDownload.html index 7c31ce798caf37dc7a610b094c62c21811995b20..193cb2bf87016b774811bb1064a2f0d18a22d368 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitDownload.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitDownload.html @@ -3,12 +3,12 @@ WebKitDownload: WebKitGTK Reference Manual - + - + @@ -107,7 +107,7 @@
+WebKitWebView * - +

cookie

the SoupCookie to be deleted

the SoupCookie to be deleted

 

WEBKIT_COOKIE_PERSISTENT_STORAGE_TEXT

Cookies are stored in a text -file in the Mozilla "cookies.txt" format.

+ file in the Mozilla "cookies.txt" format.

 

WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE

Cookies are stored in a SQLite -file in the current Mozilla format.

+ file in the current Mozilla format.

 
-WebKitWebView * +WebKitWebView * webkit_download_get_web_view () @@ -170,9 +170,9 @@

Signals

---+++ @@ -477,9 +477,9 @@ in bytes.


webkit_download_get_web_view ()

-
WebKitWebView *
+
WebKitWebView *
 webkit_download_get_web_view (WebKitDownload *download);
-

Get the WebKitWebView that initiated the download.

+

Get the WebKitWebView that initiated the download.

Parameters

@@ -497,10 +497,10 @@ webkit_download_get_web_view (

Returns

-

the WebKitWebView that initiated download +

the WebKitWebView that initiated download , or NULL if download -was not initiated by a WebKitWebView.

+was not initiated by a WebKitWebView.

[transfer none]

@@ -582,7 +582,6 @@ the destination already exists.

Whether or not the download is allowed to overwrite an existing file on disk. If this property is FALSE and the destination already exists, the download will fail.

-

Owner: WebKitDownload

Flags: Read / Write

Default value: FALSE

Since: 2.6

@@ -592,7 +591,6 @@ the download will fail.

The “destination” property

  “destination”              gchar *

The local URI to where the download will be saved.

-

Owner: WebKitDownload

Flags: Read

Default value: NULL

@@ -606,7 +604,6 @@ based on the total number of bytes expected to be received for a download. If you need a more accurate progress information you can connect to “received-data” signal to track the progress.

-

Owner: WebKitDownload

Flags: Read

Allowed values: [0,1]

Default value: 1

@@ -616,7 +613,6 @@ If you need a more accurate progress information you can connect to

The “response” property

  “response”                 WebKitURIResponse *

The WebKitURIResponse associated with this download.

-

Owner: WebKitDownload

Flags: Read

@@ -824,6 +820,6 @@ useful to know the progress of the download operation.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitEditorState.html b/Documentation/webkit2gtk-4.0/html/WebKitEditorState.html index 5aae18f074d714773be9c6f43cf68d9101a23784..3c1c948f17014cf4559909d3dd951d06024c930f 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitEditorState.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitEditorState.html @@ -3,12 +3,12 @@ WebKitEditorState: WebKitGTK Reference Manual - + - - + + @@ -22,7 +22,7 @@
- +
Home Up PrevNextNext
@@ -134,9 +134,9 @@

Description

-

WebKitEditorState represents the state of a WebKitWebView editor. +

WebKitEditorState represents the state of a WebKitWebView editor. Use webkit_web_view_get_editor_state() to get the WebKitEditorState -of a WebKitWebView.

+of a WebKitWebView.

Functions

@@ -375,7 +375,6 @@ webkit_editor_state_is_redo_available ( “typing-attributes” guint

Bitmask of WebKitEditorTypingAttributes flags. See webkit_editor_state_get_typing_attributes() for more information.

-

Owner: WebKitEditorState

Flags: Read

Default value: 0

Since: 2.10

@@ -383,10 +382,10 @@ See

See Also

-

WebKitWebView

+

WebKitWebView

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitFaviconDatabase.html b/Documentation/webkit2gtk-4.0/html/WebKitFaviconDatabase.html index 0e88adf537b8577fe84c214322c6538517ca1834..97896bb05b07f95eae2f07a32d24028ea0ce4580 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitFaviconDatabase.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitFaviconDatabase.html @@ -3,12 +3,12 @@ WebKitFaviconDatabase: WebKitGTK Reference Manual - + - + @@ -51,7 +51,7 @@
-cairo_surface_t * +cairo_surface_t * webkit_favicon_database_get_favicon_finish () @@ -80,9 +80,9 @@

Signals

---+++ @@ -143,7 +143,7 @@ webkit_favicon_database_get_favicon (GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); -

Asynchronously obtains a cairo_surface_t of the favicon for the +

Asynchronously obtains a cairo_surface_t of the favicon for the given page URI. It returns the cached icon if it's in the database asynchronously waiting for the icon to be read from the database.

This is an asynchronous method. When the operation is finished, callback will @@ -197,7 +197,7 @@ satisfied or

webkit_favicon_database_get_favicon_finish ()

-
cairo_surface_t *
+
cairo_surface_t *
 webkit_favicon_database_get_favicon_finish
                                (WebKitFaviconDatabase *database,
                                 GAsyncResult *result,
@@ -232,7 +232,7 @@ webkit_favicon_database_get_favicon_finish
 
 

Returns

-

a new reference to a cairo_surface_t, or +

a new reference to a cairo_surface_t, or NULL in case of error.

[transfer full]

@@ -364,7 +364,7 @@ been changed to favicon_uri in the database. You can connect to this signal and call webkit_favicon_database_get_favicon() to get the favicon. If you are interested in the favicon of a -WebKitWebView it's easier to use the “favicon” +WebKitWebView it's easier to use the “favicon” property. See webkit_web_view_get_favicon() for more details.

Parameters

@@ -403,6 +403,6 @@ property. See -
Generated by GTK-Doc V1.31
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitFileChooserRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitFileChooserRequest.html index 784035e1aa9b0e9db5214865e43dc36cdb390d80..065f5dd68f48c1723074392f2ba879e953993d7c 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitFileChooserRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitFileChooserRequest.html @@ -3,12 +3,12 @@ WebKitFileChooserRequest: WebKitGTK Reference Manual - + - + @@ -377,7 +377,6 @@ pending forever, which might cause the browser to hang.

The filter currently associated with the request. See webkit_file_chooser_request_get_mime_types_filter() for more details.

-

Owner: WebKitFileChooserRequest

Flags: Read


@@ -387,7 +386,6 @@ details.

A NULL-terminated array of strings containing the list of MIME types the file chooser dialog should handle. See webkit_file_chooser_request_get_mime_types() for more details.

-

Owner: WebKitFileChooserRequest

Flags: Read


@@ -398,7 +396,6 @@ types the file chooser dialog should handle. See files. See webkit_file_chooser_request_get_select_multiple() for more details.

-

Owner: WebKitFileChooserRequest

Flags: Read

Default value: FALSE

@@ -409,16 +406,15 @@ more details.

A NULL-terminated array of strings containing the list of selected files associated to the current request. See webkit_file_chooser_request_get_selected_files() for more details.

-

Owner: WebKitFileChooserRequest

Flags: Read

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitFindController.html b/Documentation/webkit2gtk-4.0/html/WebKitFindController.html index e0bd60198a859df2119ae0f828e8df9ac64840a0..85b4dcbde13b28de78c9723da9c42c8ae46dcc53 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitFindController.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitFindController.html @@ -3,12 +3,12 @@ WebKitFindController: WebKitGTK Reference Manual - + - + @@ -30,7 +30,7 @@
void

WebKitFindController

-

WebKitFindController — Controls text search in a WebKitWebView

+

WebKitFindController — Controls text search in a WebKitWebView

@@ -107,7 +107,7 @@
-WebKitWebView * +WebKitWebView * webkit_find_controller_get_web_view () @@ -143,9 +143,9 @@
-WebKitWebView *web-viewRead / Write / Construct OnlyRead / Write / Construct Only
@@ -154,9 +154,9 @@

Signals

---+++ @@ -204,8 +204,8 @@

Description

-

A WebKitFindController is used to search text in a WebKitWebView. You -can get a WebKitWebView's WebKitFindController with +

A WebKitFindController is used to search text in a WebKitWebView. You +can get a WebKitWebView's WebKitFindController with webkit_web_view_get_find_controller(), and later use it to search for text using webkit_find_controller_search(), or get the number of matches using webkit_find_controller_count_matches(). The @@ -224,7 +224,7 @@ webkit_find_controller_search (guint32 find_options, guint max_match_count);

Looks for search_text - in the WebKitWebView associated with + in the WebKitWebView associated with find_controller since the beginning of the document highlighting up to max_match_count @@ -379,7 +379,7 @@ for. This text is passed to either

Returns

-

the text to look for in the WebKitWebView.

+

the text to look for in the WebKitWebView.


@@ -392,7 +392,7 @@ webkit_find_controller_count_matches (guint max_match_count);

Counts the number of matches for search_text found in the -WebKitWebView with the provided find_options +WebKitWebView with the provided find_options . The number of matches will be provided by the “counted-matches” signal.

@@ -490,9 +490,9 @@ lookup. This number is passed as the last argument of

webkit_find_controller_get_web_view ()

-
WebKitWebView *
+
WebKitWebView *
 webkit_find_controller_get_web_view (WebKitFindController *find_controller);
-

Gets the WebKitWebView this find controller is associated to. Do +

Gets the WebKitWebView this find controller is associated to. Do not dereference the returned instance as it belongs to the WebKitFindController.

@@ -512,7 +512,7 @@ not dereference the returned instance as it belongs to the

Returns

-

the WebKitWebView.

+

the WebKitWebView.

[transfer none]

@@ -540,7 +540,7 @@ not dereference the returned instance as it belongs to the
@@ -555,7 +555,7 @@ sensitive, no wrap, forward only search.

@@ -563,7 +563,7 @@ begining of the words.

@@ -578,7 +578,7 @@ capital letters in the middle of words as word start.

@@ -593,7 +593,6 @@ at the end of the document.

The “max-match-count” property

  “max-match-count”          guint

The maximum number of matches to report for a given search.

-

Owner: WebKitFindController

Flags: Read

Default value: 0

@@ -602,7 +601,6 @@ at the end of the document.

The “options” property

  “options”                  WebKitFindOptions

The options to be used in the search operation.

-

Owner: WebKitFindController

Flags: Read


@@ -610,17 +608,15 @@ at the end of the document.

The “text” property

  “text”                     gchar *

The current search text for this WebKitFindController.

-

Owner: WebKitFindController

Flags: Read

Default value: NULL


The “web-view” property

-
  “web-view”                 WebKitWebView *
-

The WebKitWebView this controller is associated to.

-

Owner: WebKitFindController

-

Flags: Read / Write / Construct Only

+
  “web-view”                 WebKitWebView *
+

The WebKitWebView this controller is associated to.

+

Flags: Read / Write / Construct Only

@@ -742,6 +738,6 @@ asynchronously after a call to -
Generated by GTK-Doc V1.31
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitFormSubmissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitFormSubmissionRequest.html index b5c9205eafa51262fda1c9385f22d02bc5aa086b..15413be8d99e25fcc024a6154085692d6198a7c5 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitFormSubmissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitFormSubmissionRequest.html @@ -3,12 +3,12 @@ WebKitFormSubmissionRequest: WebKitGTK Reference Manual - + - + @@ -88,7 +88,7 @@

Description

-

When a form is about to be submitted in a WebKitWebView, the +

When a form is about to be submitted in a WebKitWebView, the “submit-form” signal is emitted. Its request argument contains information about the text fields of the form, that are typically used to store login information, returned as lists by @@ -214,6 +214,6 @@ webkit_form_submission_request_submit ( -


Generated by GTK-Doc V1.31
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitFrame.html b/Documentation/webkit2gtk-4.0/html/WebKitFrame.html index 0eaaef15266aca7abd789f6b9c27e59366dcdd0b..87559a51f5d45a879e3c204cfc6013085d29e8da 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitFrame.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitFrame.html @@ -3,12 +3,12 @@ WebKitFrame: WebKitGTK Reference Manual - + - + @@ -42,6 +42,14 @@
+ + + + - + - + - + - + - + - +

WEBKIT_FIND_OPTIONS_NONE

no search flags, this means a case -sensitive, no wrap, forward only search.

+ sensitive, no wrap, forward only search.

 

WEBKIT_FIND_OPTIONS_AT_WORD_STARTS

search text only at the -begining of the words.

+ begining of the words.

 

WEBKIT_FIND_OPTIONS_TREAT_MEDIAL_CAPITAL_AS_WORD_START

treat -capital letters in the middle of words as word start.

+ capital letters in the middle of words as word start.

 

WEBKIT_FIND_OPTIONS_WRAP_AROUND

if not present search will stop -at the end of the document.

+ at the end of the document.

 
+guint64 + +webkit_frame_get_id () +
gboolean @@ -131,6 +139,36 @@

Functions

+

webkit_frame_get_id ()

+
guint64
+webkit_frame_get_id (WebKitFrame *frame);
+

Gets the process-unique identifier of this WebKitFrame. No other +frame in the same web process will have the same ID; however, frames +in other web processes may.

+
+

Parameters

+
+++++ + + + + + +

frame

a WebKitFrame

 
+
+
+

Returns

+

the identifier of frame +

+
+

Since: 2.26

+
+
+

webkit_frame_is_main_frame ()

gboolean
 webkit_frame_is_main_frame (WebKitFrame *frame);
@@ -436,6 +474,6 @@ context of frame
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitGeolocationPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitGeolocationPermissionRequest.html index bb942dbc4de31c50a20f3e6775917d4b0ecf9476..2da840602efb4df4ec3bd1cd5ebf31d0c2ec28fe 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitGeolocationPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitGeolocationPermissionRequest.html @@ -3,12 +3,12 @@ WebKitGeolocationPermissionRequest: WebKitGTK Reference Manual - + - + @@ -92,10 +92,10 @@ does not match the name of a valid .desktop file. +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitHitTestResult.html b/Documentation/webkit2gtk-4.0/html/WebKitHitTestResult.html index 14121e3dff2e9615c787f012352bcd4606337d53..4dbd7ecf5e6a249f79937e7291824e40d646dac2 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitHitTestResult.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitHitTestResult.html @@ -3,12 +3,12 @@ WebKitHitTestResult: WebKitGTK Reference Manual - + - + @@ -147,37 +147,37 @@
guint contextRead / Write / Construct OnlyRead / Write / Construct Only
gchar * image-uriRead / Write / Construct OnlyRead / Write / Construct Only
gchar * link-labelRead / Write / Construct OnlyRead / Write / Construct Only
gchar * link-titleRead / Write / Construct OnlyRead / Write / Construct Only
gchar * link-uriRead / Write / Construct OnlyRead / Write / Construct Only
gchar * media-uriRead / Write / Construct OnlyRead / Write / Construct Only
@@ -211,7 +211,7 @@

Description

A Hit Test is an operation to get context information about a given -point in a WebKitWebView. WebKitHitTestResult represents the +point in a WebKitWebView. WebKitHitTestResult represents the result of a Hit Test. It provides context information about what is at the coordinates of the Hit Test, such as if there's a link, an image or a media.

@@ -223,7 +223,7 @@ an image or a media.

a link, image or a media element at the coordinates of the Hit Test. Note that it's possible that several WebKitHitTestResultContext flags are active at the same time, for example if there's a link containing an image.

-

When the mouse is moved over a WebKitWebView a Hit Test is performed +

When the mouse is moved over a WebKitWebView a Hit Test is performed for the mouse coordinates and “mouse-target-changed” signal is emitted with a WebKitHitTestResult.

@@ -655,8 +655,7 @@ context

  “context”                  guint

Bitmask of WebKitHitTestResultContext flags representing the context of the WebKitHitTestResult.

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: 0


@@ -665,8 +664,7 @@ the context of the “image-uri” gchar *

The URI of the image if flag WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE is present in “context”

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL


@@ -675,8 +673,7 @@ is present in “link-label” gchar *

The label of the link if flag WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK is present in “context”

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL


@@ -685,8 +682,7 @@ is present in “link-title” gchar *

The title of the link if flag WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK is present in “context”

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL


@@ -695,8 +691,7 @@ is present in “link-uri” gchar *

The URI of the link if flag WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK is present in “context”

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL


@@ -705,17 +700,16 @@ is present in “media-uri” gchar *

The URI of the media if flag WEBKIT_HIT_TEST_RESULT_CONTEXT_MEDIA is present in “context”

-

Owner: WebKitHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitInstallMissingMediaPluginsPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitInstallMissingMediaPluginsPermissionRequest.html index 34811787aff4b71e1ae8d51a86a44188431bb48e..2c6eadd1455d33551b678560c442e83d6f140aef 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitInstallMissingMediaPluginsPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitInstallMissingMediaPluginsPermissionRequest.html @@ -3,12 +3,12 @@ WebKitInstallMissingMediaPluginsPermissionRequest: WebKitGTK Reference Manual - + - + @@ -122,10 +122,10 @@ webkit_install_missing_media_plugins_permission_request_get_description +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitNavigationAction.html b/Documentation/webkit2gtk-4.0/html/WebKitNavigationAction.html index 0e319a3500322eb4c01d4e1b064536d0809c90ef..923788db648a09d7cebaf3771fdee703ad39a43e 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitNavigationAction.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitNavigationAction.html @@ -3,12 +3,12 @@ WebKitNavigationAction: WebKitGTK Reference Manual - + - + @@ -122,7 +122,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitNavigationAction
 
@@ -367,6 +367,6 @@ webkit_navigation_action_is_redirect ( -
Generated by GTK-Doc V1.31 +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitNavigationPolicyDecision.html b/Documentation/webkit2gtk-4.0/html/WebKitNavigationPolicyDecision.html index 8aad5cc017212f67105b040dd0fd371f7ad264d2..de1f4fb2efcb363933d25933ad665bd1684e47e1 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitNavigationPolicyDecision.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitNavigationPolicyDecision.html @@ -3,12 +3,12 @@ WebKitNavigationPolicyDecision: WebKitGTK Reference Manual - + - + @@ -157,7 +157,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── WebKitNavigationType
     GObject
     ╰── WebKitPolicyDecision
@@ -428,7 +428,6 @@ webkit_navigation_policy_decision_get_request
 the name of that frame. For example if the decision was triggered by clicking a
 link with a target attribute equal to "_blank", this property will contain the
 value of that attribute. In all other cases, this value will be NULL.

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

Default value: NULL

@@ -445,7 +444,6 @@ were active, the value of this property will be zero.

WebKitNavigationPolicyDecision:modifiers has been deprecated since version 2.6 and should not be used in newly-written code.

Use “navigation-action” instead

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

Default value: 0

@@ -462,7 +460,6 @@ property will be 0.

WebKitNavigationPolicyDecision:mouse-button has been deprecated since version 2.6 and should not be used in newly-written code.

Use “navigation-action” instead

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

Default value: 0

@@ -471,7 +468,6 @@ property will be 0.

The “navigation-action” property

  “navigation-action”        WebKitNavigationAction *

The WebKitNavigationAction that triggered this policy decision.

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

Since: 2.6

@@ -486,7 +482,6 @@ action caused the navigation.

WebKitNavigationPolicyDecision:navigation-type has been deprecated since version 2.6 and should not be used in newly-written code.

Use “navigation-action” instead

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

Default value: WEBKIT_NAVIGATION_TYPE_LINK_CLICKED

@@ -500,16 +495,15 @@ navigation.

WebKitNavigationPolicyDecision:request has been deprecated since version 2.6 and should not be used in newly-written code.

Use “navigation-action” instead

-

Owner: WebKitNavigationPolicyDecision

Flags: Read

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitNetworkProxySettings.html b/Documentation/webkit2gtk-4.0/html/WebKitNetworkProxySettings.html index f7869dae6c71f0b4583aa6036c780cfc8c4c1380..257d1d97953451660a675e077713cd25d449cbee 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitNetworkProxySettings.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitNetworkProxySettings.html @@ -3,12 +3,12 @@ WebKitNetworkProxySettings: WebKitGTK Reference Manual - + - + @@ -90,7 +90,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitNetworkProxySettings
 
@@ -279,6 +279,6 @@ all three of the socks5, socks4a, and socks4 proxy types.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-for-the-notification..html b/Documentation/webkit2gtk-4.0/html/WebKitNotification.html similarity index 64% rename from Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-for-the-notification..html rename to Documentation/webkit2gtk-4.0/html/WebKitNotification.html index ca80e63060b078f039e2906e5423b8ad09a50cd6..8c485d1087994291c21bf4f75636bfe4510fdb55 100644 --- a/Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-for-the-notification..html +++ b/Documentation/webkit2gtk-4.0/html/WebKitNotification.html @@ -2,23 +2,23 @@ -The title for the notification.: WebKitGTK Reference Manual - +WebKitNotification: WebKitGTK Reference Manual + - + @@ -26,16 +26,16 @@
-
+
-

The title for the notification.

-

The title for the notification. — Object used to hold information about a notification that should be shown to the user.

+

WebKitNotification

+

WebKitNotification — Object used to hold information about a notification that should be shown to the user.

-

Properties

+

Properties

@@ -102,53 +102,53 @@ - + - + - + - +
gchar *bodybody Read
guint64idid Read
gchar *tagtag Read
gchar *titletitle Read
-

Signals

+

Signals

-
-

Types and Values

+
+

Types and Values

@@ -156,25 +156,25 @@ - +
structWebKitNotificationWebKitNotification
-

Object Hierarchy

+

Object Hierarchy

    GObject
     ╰── WebKitNotification
 
-

Description

+

Description

-

Functions

+

Functions

webkit_notification_get_id ()

guint64
-webkit_notification_get_id (WebKitNotification *notification);
+webkit_notification_get_id (WebKitNotification *notification);

Obtains the unique id for the notification.

Parameters

@@ -186,7 +186,7 @@ webkit_notification_get_id (

notification

-

a WebKitNotification

+

a WebKitNotification

 
@@ -201,7 +201,7 @@ webkit_notification_get_id (

webkit_notification_get_title ()

const gchar *
-webkit_notification_get_title (WebKitNotification *notification);
+webkit_notification_get_title (WebKitNotification *notification);

Obtains the title for the notification.

Parameters

@@ -213,7 +213,7 @@ webkit_notification_get_title (

notification

-

a WebKitNotification

+

a WebKitNotification

 
@@ -228,7 +228,7 @@ webkit_notification_get_title (

webkit_notification_get_body ()

const gchar *
-webkit_notification_get_body (WebKitNotification *notification);
+webkit_notification_get_body (WebKitNotification *notification);

Obtains the body for the notification.

Parameters

@@ -240,7 +240,7 @@ webkit_notification_get_body (

notification

-

a WebKitNotification

+

a WebKitNotification

 
@@ -255,7 +255,7 @@ webkit_notification_get_body (

webkit_notification_get_tag ()

const gchar *
-webkit_notification_get_tag (WebKitNotification *notification);
+webkit_notification_get_tag (WebKitNotification *notification);

Obtains the tag identifier for the notification.

Parameters

@@ -267,7 +267,7 @@ webkit_notification_get_tag (

notification

-

a WebKitNotification

+

a WebKitNotification

 
@@ -283,7 +283,7 @@ webkit_notification_get_tag (

webkit_notification_close ()

void
-webkit_notification_close (WebKitNotification *notification);
+webkit_notification_close (WebKitNotification *notification);

Closes the notification.

Parameters

@@ -295,7 +295,7 @@ webkit_notification_close (

notification

-

a WebKitNotification

+

a WebKitNotification

 
@@ -306,9 +306,9 @@ webkit_notification_close (

webkit_notification_clicked ()

void
-webkit_notification_clicked (WebKitNotification *notification);
+webkit_notification_clicked (WebKitNotification *notification);

Tells WebKit the notification has been clicked. This will emit the -“clicked” signal.

+“clicked” signal.

Parameters

@@ -319,7 +319,7 @@ webkit_notification_clicked (

notification

-
+

a WebKitNotification

a WebKitNotification

 
@@ -328,19 +328,18 @@ webkit_notification_clicked ( -

Types and Values

+

Types and Values

struct WebKitNotification

struct WebKitNotification;
-

Property Details

+

Property Details

The “body” property

  “body”                     gchar *

The body for the notification.

-

Owner: WebKitNotification

Flags: Read

Default value: NULL

Since: 2.8

@@ -350,7 +349,6 @@ webkit_notification_clicked (

The “id” property

  “id”                       guint64

The unique id for the notification.

-

Owner: WebKitNotification

Flags: Read

Default value: 0

Since: 2.8

@@ -360,7 +358,6 @@ webkit_notification_clicked (

The “tag” property

  “tag”                      gchar *

The tag identifier for the notification.

-

Owner: WebKitNotification

Flags: Read

Default value: NULL

Since: 2.16

@@ -370,20 +367,19 @@ webkit_notification_clicked (

The “title” property

  “title”                    gchar *

The title for the notification.

-

Owner: WebKitNotification

Flags: Read

Default value: NULL

Since: 2.8

-

Signal Details

+

Signal Details

The “clicked” signal

void
-user_function (WebKitNotification *notification,
+user_function (WebKitNotification *notification,
                gpointer            user_data)
-

Emitted when a notification has been clicked. See webkit_notification_clicked().

+

Emitted when a notification has been clicked. See webkit_notification_clicked().

Parameters

@@ -395,7 +391,7 @@ user_function (

notification

-
+ @@ -413,7 +409,7 @@ user_function (

The “closed” signal

void
-user_function (WebKitNotification *notification,
+user_function (WebKitNotification *notification,
                gpointer            user_data)

Emitted when a notification has been withdrawn.

The default handler will close the notification using libnotify, if built with @@ -429,7 +425,7 @@ support for it.

- + @@ -446,6 +442,6 @@ support for it.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitNotificationPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitNotificationPermissionRequest.html index c5d4559fa99cf61804624058bc0d7ff5bdbfa18b..67596836f8f1fb3d44b7fab85089cef1d8d35c12 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitNotificationPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitNotificationPermissionRequest.html @@ -3,12 +3,12 @@ WebKitNotificationPermissionRequest: WebKitGTK Reference Manual - + - + - + @@ -21,7 +21,7 @@ - +

the WebKitNotification on which the signal is emitted

the WebKitNotification on which the signal is emitted

 

notification

the WebKitNotification on which the signal is emitted

the WebKitNotification on which the signal is emitted

 
Home UpPrevPrev Next
@@ -79,10 +79,10 @@ it is denied by default.

+
Generated by GTK-Doc V1.29.1
\ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitOptionMenu.html b/Documentation/webkit2gtk-4.0/html/WebKitOptionMenu.html index fcdc1f6393c8f797c5969721e8885d42e705fb1e..99cc9d4e303f1576e7a1b436e13ac61a954c1c3e 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitOptionMenu.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitOptionMenu.html @@ -3,12 +3,12 @@ WebKitOptionMenu: WebKitGTK Reference Manual - + - + @@ -88,9 +88,9 @@

Signals

---+++ @@ -120,8 +120,8 @@

Description

-

WebKitOptionMenu represents the dropdown menu of a select element in a WebKitWebView.

-

When a select element in a WebKitWebView needs to display a dropdown menu, the signal +

WebKitOptionMenu represents the dropdown menu of a select element in a WebKitWebView.

+

When a select element in a WebKitWebView needs to display a dropdown menu, the signal “show-option-menu” is emitted, providing a WebKitOptionMenu with the WebKitOptionMenuItems that should be displayed.

@@ -339,6 +339,6 @@ element is detached from the current page.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitOptionMenuItem.html b/Documentation/webkit2gtk-4.0/html/WebKitOptionMenuItem.html index a94ce7d3ee7431efb879907e2d245d3d5dddf384..7ca1deb45b3688fa9b0b8f4340ec72ee8f7d88f1 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitOptionMenuItem.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitOptionMenuItem.html @@ -3,12 +3,12 @@ WebKitOptionMenuItem: WebKitGTK Reference Manual - + - + @@ -120,7 +120,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitOptionMenuItem
 
@@ -363,6 +363,6 @@ is selected or +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitPermissionRequest.html index e1f1caf1027db69e36c3a056b6941eb91bb5d1e4..3bfc589fe0d6ceba57bc7c6cb4f86f4f4e89fe51 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitPermissionRequest.html @@ -3,12 +3,12 @@ WebKitPermissionRequest: WebKitGTK Reference Manual - + - + @@ -76,7 +76,7 @@

Object Hierarchy

-
    GInterface
+
    GInterface
     ╰── WebKitPermissionRequest
 
@@ -156,10 +156,10 @@ webkit_permission_request_deny ( +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitPlugin.html b/Documentation/webkit2gtk-4.0/html/WebKitPlugin.html index 25f71e3bc1dca436f067c38c57b70c90e4de61fb..44e6264aa068fea719f72e48c9da32a479d77594 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitPlugin.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitPlugin.html @@ -3,12 +3,12 @@ WebKitPlugin: WebKitGTK Reference Manual - + - + @@ -130,7 +130,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitMimeInfo
     GObject
     ╰── WebKitPlugin
@@ -400,6 +400,6 @@ MIME type of info
 
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitPolicyDecision.html b/Documentation/webkit2gtk-4.0/html/WebKitPolicyDecision.html index a80cbc4510ba735e0e2116fa1590e01871c0910c..09a350cb302e94b67ec37723e424aeec1354b62d 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitPolicyDecision.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitPolicyDecision.html @@ -3,12 +3,12 @@ WebKitPolicyDecision: WebKitGTK Reference Manual - + - + @@ -178,10 +178,10 @@ webkit_policy_decision_use (

See Also

-

WebKitWebView

+

WebKitWebView

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-of-the-custom-widget..html b/Documentation/webkit2gtk-4.0/html/WebKitPrintCustomWidget.html similarity index 63% rename from Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-of-the-custom-widget..html rename to Documentation/webkit2gtk-4.0/html/WebKitPrintCustomWidget.html index de29ae877b370fd4f26e3a797bae0cfedbbbb14d..e428f69f73ccc71d4585b11aa654ca84a2e7f27e 100644 --- a/Documentation/webkit2gtk-4.0/html/webkit2gtk-4.0-The-title-of-the-custom-widget..html +++ b/Documentation/webkit2gtk-4.0/html/WebKitPrintCustomWidget.html @@ -2,23 +2,23 @@ -The title of the custom widget.: WebKitGTK Reference Manual - +WebKitPrintCustomWidget: WebKitGTK Reference Manual + - +
void
@@ -26,16 +26,16 @@
-
+
-

The title of the custom widget.

-

The title of the custom widget. — Allows to embed a custom widget in print dialog

+

WebKitPrintCustomWidget

+

WebKitPrintCustomWidget — Allows to embed a custom widget in print dialog

-

Properties

+

Properties

@@ -80,42 +80,42 @@ - - + + - - + +
gchar *titleRead / Write / Construct OnlytitleRead / Write / Construct Only
GtkWidget *widgetRead / Write / Construct OnlywidgetRead / Write / Construct Only
-

Signals

+

Signals

---+++ - + - +
voidapplyapply Run Last
voidupdateupdate Run Last
-
-

Types and Values

+
+

Types and Values

@@ -123,32 +123,32 @@ - +
structWebKitPrintCustomWidgetWebKitPrintCustomWidget
-

Object Hierarchy

+

Object Hierarchy

    GObject
     ╰── WebKitPrintCustomWidget
 
-

Description

+

Description

A WebKitPrintCustomWidget allows to embed a custom widget in the print dialog by connecting to the “create-custom-widget” signal, creating a new WebKitPrintCustomWidget with -webkit_print_custom_widget_new() and returning it from there. You can later +webkit_print_custom_widget_new() and returning it from there. You can later use webkit_print_operation_run_dialog() to display the dialog.

-

Functions

+

Functions

webkit_print_custom_widget_new ()

-
WebKitPrintCustomWidget *
+
WebKitPrintCustomWidget *
 webkit_print_custom_widget_new (GtkWidget *widget,
                                 const char *title);
-

Create a new WebKitPrintCustomWidget with given widget +

Create a new WebKitPrintCustomWidget with given widget and title . The widget @@ -189,13 +189,13 @@ widget with multiple widgets in it.

webkit_print_custom_widget_get_widget ()

GtkWidget *
-webkit_print_custom_widget_get_widget (WebKitPrintCustomWidget *print_custom_widget);
-

Return the value of “widget” property for the given +webkit_print_custom_widget_get_widget (WebKitPrintCustomWidget *print_custom_widget);

+

Return the value of “widget” property for the given print_custom_widget object. The returned value will always be valid if called -from “apply” or “update” +from “apply” or “update” callbacks, but it will be NULL if called after the -“apply” signal is emitted.

+“apply” signal is emitted.

Parameters

@@ -206,7 +206,7 @@ callbacks, but it will be - +

print_custom_widget

a WebKitPrintCustomWidget

a WebKitPrintCustomWidget

 
@@ -222,8 +222,8 @@ callbacks, but it will be

webkit_print_custom_widget_get_title ()

const gchar *
-webkit_print_custom_widget_get_title (WebKitPrintCustomWidget *print_custom_widget);
-

Return the value of “title” property for the given +webkit_print_custom_widget_get_title (WebKitPrintCustomWidget *print_custom_widget); +

Return the value of “title” property for the given print_custom_widget object.

@@ -236,7 +236,7 @@ webkit_print_custom_widget_get_title (

print_custom_widget

-

a WebKitPrintCustomWidget

+

a WebKitPrintCustomWidget

 
@@ -250,20 +250,19 @@ webkit_print_custom_widget_get_title ( -

Types and Values

+

Types and Values

struct WebKitPrintCustomWidget

struct WebKitPrintCustomWidget;
-

Property Details

+

Property Details

The “title” property

  “title”                    gchar *

The title of the custom widget.

-

Owner: WebKitPrintCustomWidget

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.16

@@ -272,17 +271,16 @@ webkit_print_custom_widget_get_title (

The “widget” property

  “widget”                   GtkWidget *

The custom GtkWidget that will be embedded in the dialog.

-

Owner: WebKitPrintCustomWidget

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Since: 2.16

-

Signal Details

+

Signal Details

The “apply” signal

void
-user_function (WebKitPrintCustomWidget *print_custom_widget,
+user_function (WebKitPrintCustomWidget *print_custom_widget,
                gpointer                 user_data)

Emitted right before the printing will start. You should read the information from the widget and update the content based on it if necessary. The widget @@ -298,7 +296,7 @@ is not guaranteed to be valid at a later time.

print_custom_widget

-

the WebKitPrintCustomWidget on which the signal was emitted

+

the WebKitPrintCustomWidget on which the signal was emitted

  @@ -316,7 +314,7 @@ is not guaranteed to be valid at a later time.

The “update” signal

void
-user_function (WebKitPrintCustomWidget *print_custom_widget,
+user_function (WebKitPrintCustomWidget *print_custom_widget,
                GtkPageSetup            *page_setup,
                GtkPrintSettings        *print_settings,
                gpointer                 user_data)
@@ -334,7 +332,7 @@ according to their values.

print_custom_widget

-

the WebKitPrintCustomWidget on which the signal was emitted

+

the WebKitPrintCustomWidget on which the signal was emitted

  @@ -360,11 +358,11 @@ according to their values.

-

See Also

+

See Also

WebKitPrintOperation

+
Generated by GTK-Doc V1.29.1
\ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitPrintOperation.html b/Documentation/webkit2gtk-4.0/html/WebKitPrintOperation.html index 5c8ffb48262a99261dd6a82d021da835c966b519..d65af7a02a974f7ed3396250dfc558c89170c4c4 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitPrintOperation.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitPrintOperation.html @@ -3,12 +3,12 @@ WebKitPrintOperation: WebKitGTK Reference Manual - + - + - + @@ -22,7 +22,7 @@ Home Up -Prev +Prev Next
@@ -124,9 +124,9 @@ -WebKitWebView * +WebKitWebView * web-view -Read / Write / Construct Only +Read / Write / Construct Only
@@ -135,14 +135,14 @@

Signals

---+++ +WebKitPrintCustomWidget* @@ -196,7 +196,7 @@ display the print dialog with

webkit_print_operation_new ()

WebKitPrintOperation *
-webkit_print_operation_new (WebKitWebView *web_view);
+webkit_print_operation_new (WebKitWebView *web_view);

Create a new WebKitPrintOperation to print web_view contents.

@@ -209,7 +209,7 @@ webkit_print_operation_new (

web_view

-
+
-WebKitPrintCustomWidget* create-custom-widget Run Last

a WebKitWebView

a WebKitWebView

 
@@ -469,7 +469,6 @@ operation finishes. If an error occurs while printing the signal

The “page-setup” property

  “page-setup”               GtkPageSetup *

The initial GtkPageSetup for the print operation.

-

Owner: WebKitPrintOperation

Flags: Read / Write


@@ -477,30 +476,28 @@ operation finishes. If an error occurs while printing the signal

The “print-settings” property

  “print-settings”           GtkPrintSettings *

The initial GtkPrintSettings for the print operation.

-

Owner: WebKitPrintOperation

Flags: Read / Write


The “web-view” property

-
  “web-view”                 WebKitWebView *
-

The WebKitWebView that will be printed.

-

Owner: WebKitPrintOperation

-

Flags: Read / Write / Construct Only

+
  “web-view”                 WebKitWebView *
+

The WebKitWebView that will be printed.

+

Flags: Read / Write / Construct Only

Signal Details

The “create-custom-widget” signal

-
WebKitPrintCustomWidget*
+
WebKitPrintCustomWidget*
 user_function (WebKitPrintOperation *print_operation,
                gpointer              user_data)

Emitted when displaying the print dialog with webkit_print_operation_run_dialog(). -The returned WebKitPrintCustomWidget will be added to the print dialog and +The returned WebKitPrintCustomWidget will be added to the print dialog and it will be owned by the print_operation . However, the object is guaranteed -to be alive until the “apply” is emitted.

+to be alive until the “apply” is emitted.

Parameters

@@ -525,7 +522,7 @@ to be alive until the

Returns

-

A WebKitPrintCustomWidget that will be embedded in the dialog.

+

A WebKitPrintCustomWidget that will be embedded in the dialog.

[transfer full]

Flags: Run Last

@@ -606,6 +603,6 @@ required for printing.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitResponsePolicyDecision.html b/Documentation/webkit2gtk-4.0/html/WebKitResponsePolicyDecision.html index 99cc4cde8600c5a0febe5649726332b0999e2b5a..ab27b4bd5f16d525c4e1cc0bdf9aa16d80c6ee45 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitResponsePolicyDecision.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitResponsePolicyDecision.html @@ -3,12 +3,12 @@ WebKitResponsePolicyDecision: WebKitGTK Reference Manual - + - + @@ -188,7 +188,7 @@ webkit_response_policy_decision_get_response
gboolean
 webkit_response_policy_decision_is_mime_type_supported
                                (WebKitResponsePolicyDecision *decision);
-

Gets whether the MIME type of the response can be displayed in the WebKitWebView +

Gets whether the MIME type of the response can be displayed in the WebKitWebView that triggered this policy decision request. See also webkit_web_view_can_show_mime_type().

Parameters

@@ -226,7 +226,6 @@ that triggered this policy decision request. See also “request” WebKitURIRequest *

This property contains the WebKitURIRequest associated with this policy decision.

-

Owner: WebKitResponsePolicyDecision

Flags: Read


@@ -235,16 +234,15 @@ policy decision.

  “response”                 WebKitURIResponse *

This property contains the WebKitURIResponse associated with this policy decision.

-

Owner: WebKitResponsePolicyDecision

Flags: Read

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitScriptWorld.html b/Documentation/webkit2gtk-4.0/html/WebKitScriptWorld.html index 94b8bb34c660f30bbc7ccf3ef2afa49b5f9cc393..6fed7e0db9f8dfde9ad0fae935a88789a3c8546c 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitScriptWorld.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitScriptWorld.html @@ -3,12 +3,12 @@ WebKitScriptWorld: WebKitGTK Reference Manual - + - + @@ -79,9 +79,9 @@

Signals

---+++ @@ -232,7 +232,7 @@ object using the JavaScriptCore API. You can get the window object of world that is returned by -webkit_frame_get_javascript_context_for_script_world().

+webkit_frame_get_js_context_for_script_world().

Parameters

void
@@ -272,6 +272,6 @@ belongs

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitSecurityManager.html b/Documentation/webkit2gtk-4.0/html/WebKitSecurityManager.html index c8ccabe49ae236c2d5ecfcebd3dc3025c69773fc..686211acb35a7ce2391c58a9881ffde4b379a4fc 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitSecurityManager.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitSecurityManager.html @@ -3,12 +3,12 @@ WebKitSecurityManager: WebKitGTK Reference Manual - + - + @@ -605,6 +605,6 @@ is an empty document scheme or -
Generated by GTK-Doc V1.31 +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitSecurityOrigin.html b/Documentation/webkit2gtk-4.0/html/WebKitSecurityOrigin.html index ea3f25ea0bffc6d0e57d3dcd85860220014692ce..6362384473e21d2bb393af34cdf8ca68815a4d92 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitSecurityOrigin.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitSecurityOrigin.html @@ -3,12 +3,12 @@ WebKitSecurityOrigin: WebKitGTK Reference Manual - + - + @@ -128,7 +128,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitSecurityOrigin
 
@@ -443,6 +443,6 @@ be N +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitSettings.html b/Documentation/webkit2gtk-4.0/html/WebKitSettings.html index 76fcd1a74c9df5d6aa0d2cd5e9c2fb61ae83d231..113a85715f4424183302b2fb35f2a27cbda2f3f9 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitSettings.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitSettings.html @@ -3,12 +3,12 @@ WebKitSettings: WebKitGTK Reference Manual - + - + @@ -29,7 +29,7 @@

WebKitSettings

-

WebKitSettings — Control the behaviour of a WebKitWebView

+

WebKitSettings — Control the behaviour of a WebKitWebView

@@ -968,6 +968,22 @@ webkit_settings_font_size_to_pixels () + + +gboolean + + +webkit_settings_get_enable_media () + + + + +void + + +webkit_settings_set_enable_media () + +
@@ -1105,6 +1121,11 @@ gboolean +enable-media +Read / Write / Construct + + +gboolean enable-media-capabilities Read / Write / Construct @@ -1293,7 +1314,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── WebKitHardwareAccelerationPolicy
     GObject
     ╰── WebKitSettings
@@ -1301,9 +1322,9 @@
 

Description

-

WebKitSettings can be applied to a WebKitWebView to control text charset, +

WebKitSettings can be applied to a WebKitWebView to control text charset, color, font sizes, printing mode, script support, loading of images and various -other things on a WebKitWebView. After creation, a WebKitSettings object +other things on a WebKitWebView. After creation, a WebKitSettings object contains default settings.

@@ -1312,9 +1333,9 @@ contains default settings.

- +
1
 2
 3
/* Disable JavaScript. */
-WebKitSettings *settings = webkit_web_view_group_get_settings (my_view_group);
-webkit_settings_set_enable_javascript (settings, FALSE);
/* Disable JavaScript. */
+WebKitSettings *settings = webkit_web_view_group_get_settings (my_view_group);
+webkit_settings_set_enable_javascript (settings, FALSE);
@@ -1328,7 +1349,7 @@ contains default settings.

WebKitSettings *
 webkit_settings_new (void);

Creates a new WebKitSettings instance with default values. It must -be manually attached to a WebKitWebView. +be manually attached to a WebKitWebView. See also webkit_settings_new_with_settings().

Returns

@@ -1342,7 +1363,7 @@ See also const gchar *first_setting_name
, ...);

Creates a new WebKitSettings instance with the given settings. It must -be manually attached to a WebKitWebView.

+be manually attached to a WebKitWebView.

Parameters

@@ -4705,6 +4726,64 @@ of

Since: 2.20

+
+
+

webkit_settings_get_enable_media ()

+
gboolean
+webkit_settings_get_enable_media (WebKitSettings *settings);
+

Get the “enable-media” property.

+
+

Parameters

+
+++++ + + + + + +

settings

a WebKitSettings

 
+
+
+

Returns

+

TRUE if media support is enabled or FALSE otherwise.

+
+

Since: 2.26

+
+
+
+

webkit_settings_set_enable_media ()

+
void
+webkit_settings_set_enable_media (WebKitSettings *settings,
+                                  gboolean enabled);
+

Set the “enable-media” property.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

settings

a WebKitSettings

 

enabled

Value to be set

 
+
+

Since: 2.26

+

Types and Values

@@ -4758,11 +4837,10 @@ of

The “allow-file-access-from-file-urls” property

  “allow-file-access-from-file-urls” gboolean

Whether file access is allowed from file URLs. By default, when -something is loaded in a WebKitWebView using a file URI, cross +something is loaded in a WebKitWebView using a file URI, cross origin requests to other file resources are not allowed. This setting allows you to change that behaviour, so that it would be possible to do a XMLHttpRequest of a local file, for example.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.10

@@ -4772,12 +4850,11 @@ possible to do a XMLHttpRequest of a local file, for example.

The “allow-modal-dialogs” property

  “allow-modal-dialogs”      gboolean

Determine whether it's allowed to create and run modal dialogs -from a WebKitWebView through JavaScript with +from a WebKitWebView through JavaScript with window.showModalDialog. If it's set to -FALSE, the associated WebKitWebView won't be able to create +FALSE, the associated WebKitWebView won't be able to create new modal dialogs, so not even the “create” signal will be emitted.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4787,11 +4864,10 @@ signal will be emitted.

  “allow-universal-access-from-file-urls” gboolean

Whether or not JavaScript running in the context of a file scheme URL should be allowed to access content from any origin. By default, when -something is loaded in a WebKitWebView using a file scheme URL, +something is loaded in a WebKitWebView using a file scheme URL, access to the local file system and arbitrary local storage is not allowed. This setting allows you to change that behaviour, so that it would be possible to use local storage, for example.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.14

@@ -4803,7 +4879,6 @@ it would be possible to use local storage, for example.

Determines whether images should be automatically loaded or not. On devices where network bandwidth is of concern, it might be useful to turn this property off.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -4812,7 +4887,6 @@ useful to turn this property off.

The “cursive-font-family” property

  “cursive-font-family”      gchar *

The font family used as the default for content using a cursive font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "serif"

@@ -4821,7 +4895,6 @@ useful to turn this property off.

The “default-charset” property

  “default-charset”          gchar *

The default text charset used when interpreting content with an unspecified charset.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "iso-8859-1"

@@ -4830,7 +4903,6 @@ useful to turn this property off.

The “default-font-family” property

  “default-font-family”      gchar *

The font family to use as the default for content that does not specify a font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "sans-serif"

@@ -4840,7 +4912,6 @@ useful to turn this property off.

  “default-font-size”        guint

The default font size in pixels to use for content displayed if no font size is specified.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: 16

@@ -4850,7 +4921,6 @@ no font size is specified.

  “default-monospace-font-size” guint

The default font size in pixels to use for content displayed in monospace font if no font size is specified.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: 13

@@ -4861,7 +4931,6 @@ monospace font if no font size is specified.

Whether to draw compositing borders and repaint counters on layers drawn with accelerated compositing. This is useful for debugging issues related to web content that is composited with the GPU.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4873,7 +4942,6 @@ to web content that is composited with the GPU.

if WebKit was compiled with a version of Cairo including the unstable CairoGL API. When accelerated 2D canvas is enabled, WebKit may render some 2D canvas content using hardware accelerated drawing operations.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.2

@@ -4883,7 +4951,6 @@ using hardware accelerated drawing operations.

The “enable-back-forward-navigation-gestures” property

  “enable-back-forward-navigation-gestures” gboolean

Enable or disable horizontal swipe gesture for back-forward navigation.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.24

@@ -4893,7 +4960,6 @@ using hardware accelerated drawing operations.

The “enable-caret-browsing” property

  “enable-caret-browsing”    gboolean

Whether to enable accessibility enhanced keyboard navigation.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4902,7 +4968,6 @@ using hardware accelerated drawing operations.

The “enable-developer-extras” property

  “enable-developer-extras”  gboolean

Determines whether or not developer tools, such as the Web Inspector, are enabled.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4912,7 +4977,6 @@ using hardware accelerated drawing operations.

  “enable-dns-prefetching”   gboolean

Determines whether or not to prefetch domain names. DNS prefetching attempts to resolve domain names before a user tries to follow a link.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4925,7 +4989,6 @@ EncryptedMedia is an experimental JavaScript API for playing encrypted media in This property will only work as intended if the EncryptedMedia feature is enabled at build time with the ENABLE_ENCRYPTED_MEDIA flag.

See https://www.w3.org/TR/encrypted-media/

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.20

@@ -4937,7 +5000,6 @@ with the ENABLE_ENCRYPTED_MEDIA flag.

Whether to enable the frame flattening. With this setting each subframe is expanded to its contents, which will flatten all the frames to become one scrollable page. On touch devices scrollable subframes on a page can result in a confusing user experience.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -4949,7 +5011,6 @@ On touch devices scrollable subframes on a page can result in a confusing user e allows any HTML element to request fullscreen display. See also the current draft of the spec: http://www.w3.org/TR/fullscreen/

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -4958,7 +5019,6 @@ http://www.w3.org/TR/fullscreen/

The “enable-html5-database” property

  “enable-html5-database”    gboolean

Whether to enable HTML5 client-side SQL database support (IndexedDB).

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -4970,7 +5030,6 @@ http://www.w3.org/TR/fullscreen/

simple synchronous storage access.

HTML5 local storage specification is available at http://dev.w3.org/html5/webstorage/.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -4981,16 +5040,14 @@ http://dev.w3.org/html5/webstorage/.

Determines whether or not hyperlink auditing is enabled.

The hyperlink auditing specification is available at http://www.whatwg.org/specs/web-apps/current-work/multipage/links.htmlhyperlink-auditing.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

-

Default value: FALSE

+

Default value: TRUE


The “enable-java” property

  “enable-java”              gboolean

Determines whether or not Java is enabled on the page.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -4999,7 +5056,6 @@ http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html

The “enable-javascript” property

  “enable-javascript”        gboolean

Determines whether or not JavaScript executes within a page.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5010,13 +5066,23 @@ http://www.whatwg.org/specs/web-apps/current-work/multipage/links.htmlDetermines whether or not JavaScript markup is allowed in document. When this setting is disabled, all JavaScript-related elements and attributes are removed from the document during parsing. Note that executing JavaScript is still allowed if “enable-javascript” is TRUE.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

Since: 2.24


+

The “enable-media” property

+
  “enable-media”             gboolean
+

Enable or disable support for media playback on pages. This setting is enabled by +default. Disabling it means <audio>, <track> and <video> elements will have +playback support disabled.

+

Flags: Read / Write / Construct

+

Default value: TRUE

+

Since: 2.26

+
+
+

The “enable-media-capabilities” property

  “enable-media-capabilities” gboolean

Enable or disable support for MediaCapabilities on pages. This @@ -5026,7 +5092,6 @@ information about the decoding and encoding capabilities for a given format but also output capabilities to find the best match based on the device’s display.

See also https://wicg.github.io/media-capabilities/

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.22

@@ -5039,7 +5104,6 @@ display.

is an experimental proposal for allowing web pages to access audio and video devices for capture.

See also http://dev.w3.org/2011/webrtc/editor/getusermedia.html

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.4

@@ -5052,7 +5116,6 @@ audio and video devices for capture.

extends HTMLMediaElement to allow JavaScript to generate media streams for playback.

See also http://www.w3.org/TR/media-source/

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

Since: 2.4

@@ -5064,7 +5127,6 @@ streams for playback.

Enable or disable the Mock Capture Devices. Those are fake Microphone and Camera devices to be used as MediaStream sources.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.24

@@ -5078,7 +5140,6 @@ web application cache allows web applications to run even when the user is not connected to the network.

HTML5 offline web application specification is available at http://dev.w3.org/html5/spec/offline.html.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5095,7 +5156,6 @@ resource caches, its point is to make going back and forth between pages much faster. For details about the different types of caches and their purposes see: http://webkit.org/blog/427/webkit-page-cache-i-the-basics/

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5104,7 +5164,6 @@ http://webkit.org/blog/427/webkit-page-cache-i-the-basics/

The “enable-plugins” property

  “enable-plugins”           gboolean

Determines whether or not plugins on the page are enabled.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5118,7 +5177,6 @@ will disable history, cache and form auto-fill for any pages visited.

WebKitSettings:enable-private-browsing has been deprecated since version 2.16. and should not be used in newly-written code.

Use “is-ephemeral” or “is-ephemeral” instead.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5127,7 +5185,6 @@ will disable history, cache and form auto-fill for any pages visited.

The “enable-resizable-text-areas” property

  “enable-resizable-text-areas” gboolean

Determines whether or not text areas can be resized.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5141,7 +5198,6 @@ better web compatibility. For example, older versions of MediaWiki will incorrectly send to WebKit a CSS file with KHTML workarounds. By turning on site-specific quirks, WebKit will special-case this and other cases to make some specific sites work.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5150,7 +5206,6 @@ special-case this and other cases to make some specific sites work.

The “enable-smooth-scrolling” property

  “enable-smooth-scrolling”  gboolean

Enable or disable smooth scrolling.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5164,7 +5219,6 @@ and form controls, by using Left, Right, Up and Down arrow keys. For example, if an user presses the Right key, heuristics determine whether there is an element they might be trying to reach towards the right, and if there are multiple elements, which element they probably wants.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.4

@@ -5177,7 +5231,6 @@ there are multiple elements, which element they probably wants.

When this setting is enabled, users will be able to focus the next element in the page by pressing the tab key. If the selected element is editable, then pressing tab key will insert the tab character.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5190,7 +5243,6 @@ experimental proposal for allowing web pages to generate Audio WAVE data from JavaScript. The standard is currently a work-in-progress by the W3C Audio Working Group.

See also https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5201,7 +5253,6 @@ work-in-progress by the W3C Audio Working Group.

Enable or disable support for WebGL on pages. WebGL is an experimental proposal for allowing web pages to use OpenGL ES-like calls directly. The standard is currently a work-in-progress by the Khronos Group.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5211,7 +5262,6 @@ standard is currently a work-in-progress by the Khronos Group.

  “enable-write-console-messages-to-stdout” gboolean

Enable or disable writing console messages to stdout. These are messages sent to the console with console.log and related methods.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

Since: 2.2

@@ -5222,7 +5272,6 @@ sent to the console with console.log and related methods.

  “enable-xss-auditor”       gboolean

Whether to enable the XSS auditor. This feature filters some kinds of reflective XSS attacks on vulnerable web sites.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5231,7 +5280,6 @@ reflective XSS attacks on vulnerable web sites.

The “fantasy-font-family” property

  “fantasy-font-family”      gchar *

The font family used as the default for content using a fantasy font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "serif"

@@ -5249,7 +5297,6 @@ acceleration might cause some websites to not render correctly or consume more C

Note that changing this setting might not be possible if hardware acceleration is not supported by the hardware or the system. In that case you can get the value to know the actual policy being used, but changing the setting will not have any effect.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: WEBKIT_HARDWARE_ACCELERATION_POLICY_ON_DEMAND

Since: 2.16

@@ -5260,7 +5307,6 @@ actual policy being used, but changing the setting will not have any effect.

  “javascript-can-access-clipboard” gboolean

Whether JavaScript can access the clipboard. The default value is FALSE. If set to TRUE, document.execCommand() allows cut, copy and paste commands.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5270,7 +5316,6 @@ set to “javascript-can-open-windows-automatically” gboolean

Whether JavaScript can open popup windows automatically without user intervention.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5280,7 +5325,6 @@ intervention.

  “load-icons-ignoring-image-load-setting” gboolean

Determines whether a site can load favicons irrespective of the value of “auto-load-images”.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5291,7 +5335,6 @@ of the value of TRUE by default, so media playback can be inline. Setting it to FALSE allows specifying that media playback should be always fullscreen.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5304,7 +5347,6 @@ would be required to start media playback or load media. This is off by default, so media playback could start automatically. Setting it on requires a gesture by the user to start playback, or to load the media.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

@@ -5315,7 +5357,6 @@ load the media.

The minimum font size in pixels used to display text. This setting controls the absolute smallest size. Values other than 0 can potentially break page layouts.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: 0

@@ -5324,7 +5365,6 @@ potentially break page layouts.

The “monospace-font-family” property

  “monospace-font-family”    gchar *

The font family used as the default for content using a monospace font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "monospace"

@@ -5333,7 +5373,6 @@ potentially break page layouts.

The “pictograph-font-family” property

  “pictograph-font-family”   gchar *

The font family used as the default for content using a pictograph font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "serif"

@@ -5342,7 +5381,6 @@ potentially break page layouts.

The “print-backgrounds” property

  “print-backgrounds”        gboolean

Whether background images should be drawn during printing.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: TRUE

@@ -5351,7 +5389,6 @@ potentially break page layouts.

The “sans-serif-font-family” property

  “sans-serif-font-family”   gchar *

The font family used as the default for content using a sans-serif font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "sans-serif"

@@ -5360,7 +5397,6 @@ potentially break page layouts.

The “serif-font-family” property

  “serif-font-family”        gchar *

The font family used as the default for content using a serif font.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: "serif"

@@ -5375,7 +5411,6 @@ typically better to not completely override the standard user-agent, but to use webkit_settings_set_user_agent_with_application_details() instead.

If this property is set to the empty string or NULL, it will revert to the standard user-agent.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: NULL

@@ -5387,13 +5422,12 @@ user-agent.

text of the page or all the contents. Other contents containing text like form controls will be also affected by zoom factor when this property is enabled.

-

Owner: WebKitSettings

Flags: Read / Write / Construct

Default value: FALSE

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitURIRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitURIRequest.html index 0df41bb4e0159ffede39fd48063b82b57c23cbf2..b208e80b25748ce76654337482764618a505cb80 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitURIRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitURIRequest.html @@ -3,12 +3,12 @@ WebKitURIRequest: WebKitGTK Reference Manual - + - + @@ -73,7 +73,7 @@ -SoupMessageHeaders * +SoupMessageHeaders * webkit_uri_request_get_http_headers () @@ -238,9 +238,9 @@ an HTTP request.


webkit_uri_request_get_http_headers ()

-
SoupMessageHeaders *
+
SoupMessageHeaders *
 webkit_uri_request_get_http_headers (WebKitURIRequest *request);
-

Get the HTTP headers of a WebKitURIRequest as a SoupMessageHeaders.

+

Get the HTTP headers of a WebKitURIRequest as a SoupMessageHeaders.

Parameters

@@ -258,7 +258,7 @@ webkit_uri_request_get_http_headers (

Returns

-

a SoupMessageHeaders with the HTTP headers of request +

a SoupMessageHeaders with the HTTP headers of request or NULL if request is not an HTTP request.

[transfer none]

@@ -278,13 +278,12 @@ is not an HTTP request.

The “uri” property

  “uri”                      gchar *

The URI to which the request will be made.

-

Owner: WebKitURIRequest

Flags: Read / Write / Construct

Default value: "about:blank"

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitURIResponse.html b/Documentation/webkit2gtk-4.0/html/WebKitURIResponse.html index 39ace457a1baa7c46ddc768ec43adc24c8370588..fff93691399bb681ad15f9a8bc99266ce3a18de3 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitURIResponse.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitURIResponse.html @@ -3,12 +3,12 @@ WebKitURIResponse: WebKitGTK Reference Manual - + - + @@ -80,7 +80,7 @@
+SoupMessageHeaders * @@ -193,7 +193,7 @@ webkit_uri_response_get_uri (WebKitURIResponse *response);

Get the status code of the WebKitURIResponse as returned by the server. It will normally be a SoupKnownStatusCode, for -example SOUP_STATUS_OK, though the server can respond with any +example SOUP_STATUS_OK, though the server can respond with any unsigned integer.

Parameters

@@ -305,9 +305,9 @@ the 'Content-Disposition' HTTP header is not present.


webkit_uri_response_get_http_headers ()

-
SoupMessageHeaders *
+
SoupMessageHeaders *
 webkit_uri_response_get_http_headers (WebKitURIResponse *response);
-

Get the HTTP headers of a WebKitURIResponse as a SoupMessageHeaders.

+

Get the HTTP headers of a WebKitURIResponse as a SoupMessageHeaders.

Parameters

-SoupMessageHeaders * +SoupMessageHeaders * webkit_uri_response_get_http_headers () @@ -105,7 +105,7 @@
-SoupMessageHeaders *http-headers Read
@@ -325,7 +325,7 @@ webkit_uri_response_get_http_headers (

Returns

-

a SoupMessageHeaders with the HTTP headers of response +

a SoupMessageHeaders with the HTTP headers of response or NULL if response is not an HTTP response.

[transfer none]

@@ -346,16 +346,14 @@ is not an HTTP response.

The “content-length” property

  “content-length”           guint64

The expected content length of the response.

-

Owner: WebKitURIResponse

Flags: Read

Default value: 0


The “http-headers” property

-
  “http-headers”             SoupMessageHeaders *
+
  “http-headers”             SoupMessageHeaders *

The HTTP headers of the response, or NULL if the response is not an HTTP response.

-

Owner: WebKitURIResponse

Flags: Read

Since: 2.6

@@ -364,7 +362,6 @@ is not an HTTP response.

The “mime-type” property

  “mime-type”                gchar *

The MIME type of the response.

-

Owner: WebKitURIResponse

Flags: Read

Default value: NULL

@@ -373,7 +370,6 @@ is not an HTTP response.

The “status-code” property

  “status-code”              guint

The status code of the response as returned by the server.

-

Owner: WebKitURIResponse

Flags: Read

Default value: 0

@@ -382,7 +378,6 @@ is not an HTTP response.

The “suggested-filename” property

  “suggested-filename”       gchar *

The suggested filename for the URI response.

-

Owner: WebKitURIResponse

Flags: Read

Default value: NULL

@@ -391,13 +386,12 @@ is not an HTTP response.

The “uri” property

  “uri”                      gchar *

The URI for which the response was made.

-

Owner: WebKitURIResponse

Flags: Read

Default value: NULL

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitURISchemeRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitURISchemeRequest.html index 3c0f1c5bf5c1d456c47287a76684d30e83cd24b1..f02c7d10a624a6e44745a28c00d2bb1615548682 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitURISchemeRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitURISchemeRequest.html @@ -3,12 +3,12 @@ WebKitURISchemeRequest: WebKitGTK Reference Manual - + - + @@ -63,7 +63,7 @@
+ + + + @@ -144,9 +152,9 @@

Signals

-WebKitWebView * +WebKitWebView * webkit_uri_scheme_request_get_web_view () @@ -114,7 +114,7 @@ using WebKitURISchemeRequestCallback. After that, when a URI request is made with that particular scheme, your callback will be called. There you will be able to access properties such as the -scheme, the URI and path, and the WebKitWebView that initiated the +scheme, the URI and path, and the WebKitWebView that initiated the request, and also finish the request with webkit_uri_scheme_request_finish().

@@ -206,10 +206,10 @@ webkit_uri_scheme_request_get_path (

webkit_uri_scheme_request_get_web_view ()

-
WebKitWebView *
+
WebKitWebView *
 webkit_uri_scheme_request_get_web_view
                                (WebKitURISchemeRequest *request);
-

Get the WebKitWebView that initiated the request.

+

Get the WebKitWebView that initiated the request.

Parameters

@@ -227,7 +227,7 @@ webkit_uri_scheme_request_get_web_view

Returns

-

the WebKitWebView that initiated request +

the WebKitWebView that initiated request .

[transfer none]

@@ -298,7 +298,7 @@ webkit_uri_scheme_request_finish_error - + @@ -316,6 +316,6 @@ webkit_uri_scheme_request_finish_error +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitUserContentFilterStore.html b/Documentation/webkit2gtk-4.0/html/WebKitUserContentFilterStore.html index 409fbc96c403c1834c1df958b1a0ce9ba3fbc13c..cdaf5e5bbb4f56f5d3e47bb9483bccd7699a828b 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitUserContentFilterStore.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitUserContentFilterStore.html @@ -3,12 +3,12 @@ WebKitUserContentFilterStore: WebKitGTK Reference Manual - + - + @@ -151,7 +151,7 @@ - +

error

a GError that will be passed to the WebKitWebView

a GError that will be passed to the WebKitWebView

 
gchar * pathRead / Write / Construct OnlyRead / Write / Construct Only
@@ -758,14 +758,13 @@ started with “path” gchar *

The directory used for filter storage. This path is used as the base directory where user content filters are stored on disk.

-

Owner: WebKitUserContentFilterStore

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.24

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitUserContentManager.html b/Documentation/webkit2gtk-4.0/html/WebKitUserContentManager.html index 1029c67a39a4018e33b3e82b96b6a4be65f6ac78..e366bf5049f230db5980a4942de3d16029bbcbbe 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitUserContentManager.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitUserContentManager.html @@ -3,12 +3,12 @@ WebKitUserContentManager: WebKitGTK Reference Manual - + - + @@ -134,6 +134,14 @@ void
+webkit_user_content_manager_remove_filter_by_id () +
+void + webkit_user_content_manager_remove_all_filters ()
---+++ @@ -177,7 +185,7 @@

Description

Using a WebKitUserContentManager user CSS style sheets can be set to -be injected in the web pages loaded by a WebKitWebView, by +be injected in the web pages loaded by a WebKitWebView, by webkit_user_content_manager_add_style_sheet().

To use a WebKitUserContentManager, it must be created using webkit_user_content_manager_new(), and then passed to @@ -339,11 +347,11 @@ receive the signals, it is recommended to connect to the signal 3 4 5 -

+
void
WebKitWebView *view = webkit_web_view_new ();
-WebKitUserContentManager *manager = webkit_web_view_get_user_content_manager ();
-g_signal_connect (manager, "script-message-received::foobar",
-                  G_CALLBACK (handle_script_message), NULL);
-webkit_user_content_manager_register_script_message_handler (manager, "foobar");
WebKitWebView *view = webkit_web_view_new ();
+WebKitUserContentManager *manager = webkit_web_view_get_user_content_manager ();
+g_signal_connect (manager, "script-message-received::foobar",
+                  G_CALLBACK (handle_script_message), NULL);
+webkit_user_content_manager_register_script_message_handler (manager, "foobar");
@@ -575,6 +583,40 @@ webkit_user_content_manager_remove_filter

+

webkit_user_content_manager_remove_filter_by_id ()

+
void
+webkit_user_content_manager_remove_filter_by_id
+                               (WebKitUserContentManager *manager,
+                                const char *filter_id);
+

Removes a filter from the given WebKitUserContentManager given the +identifier of a WebKitUserContentFilter as returned by +webkit_user_content_filter_get_identifier().

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

manager

A WebKitUserContentManager

 

filter_id

Filter identifier

 
+
+

Since: 2.26

+
+
+

webkit_user_content_manager_remove_all_filters ()

void
 webkit_user_content_manager_remove_all_filters
@@ -650,6 +692,6 @@ user_function (
-
Generated by GTK-Doc V1.31
+
Generated by GTK-Doc V1.29.1
\ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitUserMediaPermissionRequest.html b/Documentation/webkit2gtk-4.0/html/WebKitUserMediaPermissionRequest.html index 41843f78466a41e39e492abec7f554640f94e294..a115ea0e306193fc4d2834a24af87ebcb7dd8a03 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitUserMediaPermissionRequest.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitUserMediaPermissionRequest.html @@ -3,12 +3,12 @@ WebKitUserMediaPermissionRequest: WebKitGTK Reference Manual - + - + @@ -185,7 +185,6 @@ webkit_user_media_permission_is_for_video_device

The “is-for-audio-device” property

  “is-for-audio-device”      gboolean

Whether the media device to which the permission was requested has a microphone or not.

-

Owner: WebKitUserMediaPermissionRequest

Flags: Read

Default value: FALSE

@@ -194,17 +193,16 @@ webkit_user_media_permission_is_for_video_device

The “is-for-video-device” property

  “is-for-video-device”      gboolean

Whether the media device to which the permission was requested has a video capture capability or not.

-

Owner: WebKitUserMediaPermissionRequest

Flags: Read

Default value: FALSE

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebContext.html b/Documentation/webkit2gtk-4.0/html/WebKitWebContext.html index 79b818650dd75c978018838c94e0f42ab96d81d6..54a63657f7f6e46fceb70860bf7762f377d5b798 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebContext.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebContext.html @@ -3,12 +3,12 @@ WebKitWebContext: WebKitGTK Reference Manual - + - - + + @@ -30,7 +30,7 @@

WebKitWebContext

-

WebKitWebContext — Manages aspects common to all WebKitWebViews

+

WebKitWebContext — Manages aspects common to all WebKitWebViews

@@ -172,6 +172,14 @@ +WebKitGeolocationManager * + + +webkit_web_context_get_geolocation_manager () + + + + WebKitFaviconDatabase * @@ -230,6 +238,30 @@ gboolean +webkit_web_context_get_sandbox_enabled () + + + + +void + + +webkit_web_context_set_sandbox_enabled () + + + + +void + + +webkit_web_context_add_path_to_sandbox () + + + + +gboolean + + webkit_web_context_get_spell_checking_enabled () @@ -376,13 +408,13 @@ gchar * local-storage-directory -Read / Write / Construct Only +Read / Write / Construct Only WebKitWebsiteDataManager * website-data-manager -Read / Write / Construct Only +Read / Write / Construct Only @@ -391,9 +423,9 @@

Signals

---+++ @@ -459,7 +491,7 @@

Description

The WebKitWebContext manages all aspects common to all -WebKitWebViews.

+WebKitWebViews.

You can define the WebKitCacheModel and WebKitProcessModel with webkit_web_context_set_cache_model() and webkit_web_context_set_process_model(), depending on the needs of @@ -513,7 +545,7 @@ webkit_web_context_new_ephemeral (Create a new ephemeral WebKitWebContext. An ephemeral WebKitWebContext is a context created with an ephemeral WebKitWebsiteDataManager. This is just a convenient method to create ephemeral contexts without having to create your own WebKitWebsiteDataManager. -All WebKitWebViews associated with this context will also be ephemeral. Websites will +All WebKitWebViews associated with this context will also be ephemeral. Websites will not store any data in the client storage. This is normally used to implement private instances.

@@ -758,8 +790,10 @@ specifying guint webkit_web_context_get_web_process_count_limit (WebKitWebContext *context); +

webkit_web_context_get_web_process_count_limit has been deprecated since version 2.26 and should not be used in newly-written code.

Gets the maximum number of web processes that can be created at the same time for the context .

+

This function is now deprecated and always returns 0 (no limit). See also webkit_web_context_set_web_process_count_limit().

Parameters

@@ -788,12 +822,11 @@ webkit_web_context_get_web_process_count_limit webkit_web_context_set_web_process_count_limit (WebKitWebContext *context, guint limit); +

webkit_web_context_set_web_process_count_limit has been deprecated since version 2.26 and should not be used in newly-written code.

Sets the maximum number of web processes that can be created at the same time for the context . The default value is 0 and means no limit.

-

This method **must be called before any web process has been created**, -as early as possible in your application. Calling it later will make -your application crash.

+

This function is now deprecated and does nothing for security reasons.

Parameters

@@ -897,8 +930,8 @@ a valid WebKitWebContext *context, const gchar *uri);

Requests downloading of the specified URI string. The download operation -will not be associated to any WebKitWebView, if you are interested in -starting a download from a particular WebKitWebView use +will not be associated to any WebKitWebView, if you are interested in +starting a download from a particular WebKitWebView use webkit_web_view_download_uri() instead.

Parameters

@@ -960,6 +993,37 @@ webkit_web_context_get_cookie_manager ( +

webkit_web_context_get_geolocation_manager ()

+
WebKitGeolocationManager *
+webkit_web_context_get_geolocation_manager
+                               (WebKitWebContext *context);
+

Get the WebKitGeolocationManager of context +.

+
+

Parameters

+
+++++ + + + + + +

context

a WebKitWebContext

 
+ +
+

Returns

+

the WebKitGeolocationManager of context +.

+

[transfer none]

+
+

Since: 2.26

+ +
+

webkit_web_context_get_favicon_database ()

WebKitFaviconDatabase *
 webkit_web_context_get_favicon_database
@@ -1217,6 +1281,113 @@ webkit_web_context_get_plugins_finish (
+

webkit_web_context_get_sandbox_enabled ()

+
gboolean
+webkit_web_context_get_sandbox_enabled
+                               (WebKitWebContext *context);
+

Get whether sandboxing is currently enabled.

+
+

Parameters

+
+++++ + + + + + +

context

a WebKitWebContext

 
+
+
+

Returns

+

TRUE if sandboxing is enabled, or FALSE otherwise.

+
+

Since: 2.26

+
+
+
+

webkit_web_context_set_sandbox_enabled ()

+
void
+webkit_web_context_set_sandbox_enabled
+                               (WebKitWebContext *context,
+                                gboolean enabled);
+

Set whether WebKit subprocesses will be sandboxed, limiting access to the system.

+

This method **must be called before any web process has been created**, +as early as possible in your application. Calling it later is a fatal error.

+

This is only implemented on Linux and is a no-op otherwise.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

context

a WebKitWebContext

 

enabled

if TRUE enable sandboxing

 
+
+

Since: 2.26

+
+
+
+

webkit_web_context_add_path_to_sandbox ()

+
void
+webkit_web_context_add_path_to_sandbox
+                               (WebKitWebContext *context,
+                                const char *path,
+                                gboolean read_only);
+

Adds a path to be mounted in the sandbox. path + must exist before any web process +has been created otherwise it will be silently ignored. It is a fatal error to +add paths after a web process has been spawned.

+

Paths in directories such as /sys, /proc, and /dev or all of / +are not valid.

+

See also webkit_web_context_set_sandbox_enabled()

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

context

a WebKitWebContext

 

path

an absolute path to mount in the sandbox.

[type filename]

read_only

if TRUE the path will be read-only

 
+
+

Since: 2.26

+
+
+

webkit_web_context_get_spell_checking_enabled ()

gboolean
 webkit_web_context_get_spell_checking_enabled
@@ -1661,19 +1832,16 @@ see WebKitWebContext *context,
                                       WebKitProcessModel process_model);

Specifies a process model for WebViews, which WebKit will use to -determine how auxiliary processes are handled. The default setting -(WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS) is suitable for most -applications which embed a small amount of WebViews, or are used to -display documents which are considered safe — like local files.

-

Applications which may potentially use a large amount of WebViews -—for example a multi-tabbed web browser— may want to use -WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES, which will use +determine how auxiliary processes are handled.

+

WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES will use one process per view most of the time, while still allowing for web views to share a process when needed (for example when different views interact with each other). Using this model, when a process hangs or crashes, only the WebViews using it stop working, while the rest of the WebViews in the application will still function normally.

+

WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS is deprecated since 2.26, +using it has no effect for security reasons.

This method **must be called before any web process has been created**, as early as possible in your application. Calling it later will make your application crash.

@@ -1844,38 +2012,38 @@ when the data of the request is available or 30 31 32 -
static void
-about_uri_scheme_request_cb (WebKitURISchemeRequest *request,
-                             gpointer                user_data)
-{
-    GInputStream *stream;
-    gsize         stream_length;
-    const gchar  *path;
+        
static void
+about_uri_scheme_request_cb (WebKitURISchemeRequest *request,
+                             gpointer                user_data)
+{
+    GInputStream *stream;
+    gsize         stream_length;
+    const gchar  *path;
 
-    path = webkit_uri_scheme_request_get_path (request);
-    if (!g_strcmp0 (path, "plugins")) {
-        /* Create a GInputStream with the contents of plugins about page, and set its length to stream_length */
-    } else if (!g_strcmp0 (path, "memory")) {
-        /* Create a GInputStream with the contents of memory about page, and set its length to stream_length */
-    } else if (!g_strcmp0 (path, "applications")) {
-        /* Create a GInputStream with the contents of applications about page, and set its length to stream_length */
-    } else if (!g_strcmp0 (path, "example")) {
-        gchar *contents;
+    path = webkit_uri_scheme_request_get_path (request);
+    if (!g_strcmp0 (path, "plugins")) {
+        /* Create a GInputStream with the contents of plugins about page, and set its length to stream_length */
+    } else if (!g_strcmp0 (path, "memory")) {
+        /* Create a GInputStream with the contents of memory about page, and set its length to stream_length */
+    } else if (!g_strcmp0 (path, "applications")) {
+        /* Create a GInputStream with the contents of applications about page, and set its length to stream_length */
+    } else if (!g_strcmp0 (path, "example")) {
+        gchar *contents;
 
-        contents = g_strdup_printf ("<html><body><p>Example about page</p></body></html>");
-        stream_length = strlen (contents);
-        stream = g_memory_input_stream_new_from_data (contents, stream_length, g_free);
-    } else {
-        GError *error;
+        contents = g_strdup_printf ("<html><body><p>Example about page</p></body></html>");
+        stream_length = strlen (contents);
+        stream = g_memory_input_stream_new_from_data (contents, stream_length, g_free);
+    } else {
+        GError *error;
 
-        error = g_error_new (ABOUT_HANDLER_ERROR, ABOUT_HANDLER_ERROR_INVALID, "Invalid about:%s page.", path);
-        webkit_uri_scheme_request_finish_error (request, error);
-        g_error_free (error);
-        return;
-    }
-    webkit_uri_scheme_request_finish (request, stream, stream_length, "text/html");
-    g_object_unref (stream);
-}
+ error = g_error_new (ABOUT_HANDLER_ERROR, ABOUT_HANDLER_ERROR_INVALID, "Invalid about:%s page.", path); + webkit_uri_scheme_request_finish_error (request, error); + g_error_free (error); + return; + } + webkit_uri_scheme_request_finish (request, stream, stream_length, "text/html"); + g_object_unref (stream); +}
@@ -1944,9 +2112,9 @@ when the data of the request is available or

WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER

Disable the cache completely, which -substantially reduces memory usage. Useful for applications that only -access a single local file, with no navigation to other pages. No remote -resources will be cached.

+ substantially reduces memory usage. Useful for applications that only + access a single local file, with no navigation to other pages. No remote + resources will be cached.

  @@ -1954,7 +2122,7 @@ resources will be cached.

WEBKIT_CACHE_MODEL_WEB_BROWSER

Improve document load speed substantially -by caching a very large number of resources and previously viewed content.

+ by caching a very large number of resources and previously viewed content.

  @@ -1962,8 +2130,8 @@ by caching a very large number of resources and previously viewed content.

WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER

A cache model optimized for viewing -a series of local files -- for example, a documentation viewer or a website -designer. WebKit will cache a moderate number of resources.

+ a series of local files -- for example, a documentation viewer or a website + designer. WebKit will cache a moderate number of resources.

  @@ -1987,11 +2155,7 @@ designer. WebKit will cache a moderate number of resources.

WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS

-

Use a single process to -perform content rendering. The process is shared among all the -WebKitWebView instances created by the application: if the process -hangs or crashes all the web views in the application will be affected. -This is the default process model, and it should suffice for most cases.

+

Deprecated 2.26.

  @@ -1999,14 +2163,14 @@ This is the default process model, and it should suffice for most cases.

WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES

Use one process -for each WebKitWebView, while still allowing for some of them to -share a process in certain situations. The main advantage -of this process model is that the rendering process for a web view -can crash while the rest of the views keep working normally. This -process model is indicated for applications which may use a number -of web views and the content of in each must not interfere with the -rest — for example a full-fledged web browser with support for -multiple tabs.

+ for each WebKitWebView, while still allowing for some of them to + share a process in certain situations. The main advantage + of this process model is that the rendering process for a web view + can crash while the rest of the views keep working normally. This + process model is indicated for applications which may use a number + of web views and the content of in each must not interfere with the + rest — for example a full-fledged web browser with support for + multiple tabs.

  @@ -2039,9 +2203,9 @@ multiple tabs.

WEBKIT_TLS_ERRORS_POLICY_FAIL

TLS errors will emit -“load-failed-with-tls-errors” and, if the signal is handled, -finish the load. In case the signal is not handled, -“load-failed” is emitted before the load finishes.

+ “load-failed-with-tls-errors” and, if the signal is handled, + finish the load. In case the signal is not handled, + “load-failed” is emitted before the load finishes.

  @@ -2099,8 +2263,7 @@ finish the load. In case the signal is not handled,

WebKitWebContext:local-storage-directory has been deprecated since version 2.10. and should not be used in newly-written code.

Use “local-storage-directory” instead.

-

Owner: WebKitWebContext

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.8

@@ -2109,8 +2272,7 @@ finish the load. In case the signal is not handled,

The “website-data-manager” property

  “website-data-manager”     WebKitWebsiteDataManager *

The WebKitWebsiteDataManager associated with this context.

-

Owner: WebKitWebContext

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Since: 2.10

@@ -2270,6 +2432,6 @@ and -
Generated by GTK-Doc V1.31 +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebEditor.html b/Documentation/webkit2gtk-4.0/html/WebKitWebEditor.html index a8c76260441bffb9ae71ab0074a0fa8692fff71f..43f71f27ad92baa024c8dba21749999b6c8b2906 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebEditor.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebEditor.html @@ -3,12 +3,12 @@ WebKitWebEditor: WebKitGTK Reference Manual - + - + @@ -54,9 +54,9 @@

Signals

---+++ @@ -170,6 +170,6 @@ selection.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebExtension.html b/Documentation/webkit2gtk-4.0/html/WebKitWebExtension.html index c889c449f07bc648d052268c30f080316176579b..cb9fce96c43a7de55e9d6ec1c6758215637c9e1a 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebExtension.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebExtension.html @@ -3,12 +3,12 @@ WebKitWebExtension: WebKitGTK Reference Manual - + - + @@ -72,9 +72,9 @@

Signals

void
---+++ @@ -133,23 +133,23 @@ web process is initialized.

15 16 17 - +G_MODULE_EXPORT void +webkit_web_extension_initialize(WebKitWebExtension *extension) +{ + g_signal_connect(extension,"page-created", + G_CALLBACK(web_page_created_callback), + NULL); +}
void
static void
-web_page_created_callback (WebKitWebExtension *extension,
-                           WebKitWebPage      *web_page,
-                           gpointer            user_data)
-{
-    g_print ("Page %d created for %s\n",
-             webkit_web_page_get_id (web_page),
-             webkit_web_page_get_uri (web_page));
-}
+        
static void
+web_page_created_callback (WebKitWebExtension *extension,
+                           WebKitWebPage      *web_page,
+                           gpointer            user_data)
+{
+    g_print ("Page %d created for %s\n",
+             webkit_web_page_get_id (web_page),
+             webkit_web_page_get_uri (web_page));
+}
 
-G_MODULE_EXPORT void
-webkit_web_extension_initialize (WebKitWebExtension *extension)
-{
-    g_signal_connect (extension, "page-created",
-                      G_CALLBACK (web_page_created_callback),
-                      NULL);
-}
@@ -193,32 +193,32 @@ the desired data as parameter. You can see an example of this in the following p 24 25 26 -
#define WEB_EXTENSIONS_DIRECTORY /* ... */
+        
#define WEB_EXTENSIONS_DIRECTORY /* ... */
 
-static void
-initialize_web_extensions (WebKitWebContext *context,
-                           gpointer          user_data)
-{
-  /* Web Extensions get a different ID for each Web Process */
-  static guint32 unique_id = 0;
+static void
+initialize_web_extensions (WebKitWebContext *context,
+                           gpointer          user_data)
+{
+  /* Web Extensions get a different ID for each Web Process */
+  static guint32 unique_id = 0;
 
-  webkit_web_context_set_web_extensions_directory (
-     context, WEB_EXTENSIONS_DIRECTORY);
-  webkit_web_context_set_web_extensions_initialization_user_data (
-     context, g_variant_new_uint32 (unique_id++));
-}
+  webkit_web_context_set_web_extensions_directory (
+     context, WEB_EXTENSIONS_DIRECTORY);
+  webkit_web_context_set_web_extensions_initialization_user_data (
+     context, g_variant_new_uint32 (unique_id++));
+}
 
-int main (int argc, char **argv)
-{
-  g_signal_connect (webkit_web_context_get_default (),
-                   "initialize-web-extensions",
-                    G_CALLBACK (initialize_web_extensions),
-                    NULL);
+int main (int argc, char **argv)
+{
+  g_signal_connect (webkit_web_context_get_default (),
+                   "initialize-web-extensions",
+                    G_CALLBACK (initialize_web_extensions),
+                    NULL);
 
-  GtkWidget *view = webkit_web_view_new ();
+  GtkWidget *view = webkit_web_view_new ();
 
-  /* ... */
-}
+ /* ... */ +}
@@ -373,6 +373,6 @@ the Web Process.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebHitTestResult.html b/Documentation/webkit2gtk-4.0/html/WebKitWebHitTestResult.html index 33f7a38ad238545c6299efd871d1489d9958ae48..98930b89a938ad77e3d648037667aa8f7d38ae0a 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebHitTestResult.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebHitTestResult.html @@ -3,12 +3,12 @@ WebKitWebHitTestResult: WebKitGTK Reference Manual - + - + @@ -62,7 +62,7 @@ WebKitDOMNode * node -Read / Write / Construct Only +Read / Write / Construct Only @@ -134,8 +134,7 @@ webkit_web_hit_test_result_get_node (

The “node” property

  “node”                     WebKitDOMNode *

The WebKitDOMNode

-

Owner: WebKitWebHitTestResult

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

@@ -144,6 +143,6 @@ webkit_web_hit_test_result_get_node (
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebInspector.html b/Documentation/webkit2gtk-4.0/html/WebKitWebInspector.html index 9a00cc0ddd1cc74effa304e80ae399689343308b..de6e7fe48e5142e19b5829ceb9d0124a0c906ba2 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebInspector.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebInspector.html @@ -3,12 +3,12 @@ WebKitWebInspector: WebKitGTK Reference Manual - + - + @@ -148,9 +148,9 @@

Signals

---+++ @@ -203,11 +203,11 @@

Description

The WebKit Inspector is a graphical tool to inspect and change the -content of a WebKitWebView. It also includes an interactive +content of a WebKitWebView. It also includes an interactive JavaScript debugger. Using this class one can get a GtkWidget which can be embedded into an application to show the inspector.

The inspector is available when the WebKitSettings of the -WebKitWebView has set the “enable-developer-extras” +WebKitWebView has set the “enable-developer-extras” to true, otherwise no inspector is available.

@@ -223,16 +223,16 @@ to true, otherwise no inspector is available.

8 9 10 - +/* Show the inspector */ +WebKitWebInspector *inspector =webkit_web_view_get_inspector(WEBKIT_WEB_VIEW(my_webview)); +webkit_web_inspector_show(WEBKIT_WEB_INSPECTOR(inspector));
/* Enable the developer extras */
-WebKitSettings *setting = webkit_web_view_get_settings (WEBKIT_WEB_VIEW(my_webview));
-g_object_set (G_OBJECT(settings), "enable-developer-extras", TRUE, NULL);
+        
/* Enable the developer extras */
+WebKitSettings *setting = webkit_web_view_get_settings (WEBKIT_WEB_VIEW(my_webview));
+g_object_set (G_OBJECT(settings), "enable-developer-extras", TRUE, NULL);
 
-/* Load some data or reload to be able to inspect the page*/
-webkit_web_view_load_uri (WEBKIT_WEB_VIEW(my_webview), "http://www.gnome.org");
+/* Load some data or reload to be able to inspect the page*/
+webkit_web_view_load_uri (WEBKIT_WEB_VIEW(my_webview), "http://www.gnome.org");
 
-/* Show the inspector */
-WebKitWebInspector *inspector = webkit_web_view_get_inspector (WEBKIT_WEB_VIEW(my_webview));
-webkit_web_inspector_show (WEBKIT_WEB_INSPECTOR(inspector));
@@ -495,7 +495,6 @@ returns 0.

The “attached-height” property

  “attached-height”          guint

The height that the inspector view should have when it is attached.

-

Owner: WebKitWebInspector

Flags: Read

Default value: 0

@@ -506,7 +505,6 @@ returns 0.

Whether the inspector can be attached to the same window that contains the inspected view.

-

Owner: WebKitWebInspector

Flags: Read

Default value: FALSE

Since: 2.8

@@ -516,7 +514,6 @@ the inspected view.

The “inspected-uri” property

  “inspected-uri”            gchar *

The URI that is currently being inspected.

-

Owner: WebKitWebInspector

Flags: Read

Default value: NULL

@@ -732,6 +729,6 @@ signal and simply return < +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebPage.html b/Documentation/webkit2gtk-4.0/html/WebKitWebPage.html index 55f1bb5047eb2fea9ba8c4b8a9086f7612ecd88c..20ca83242557a37335af42b1aef15bbe08878963 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebPage.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebPage.html @@ -3,12 +3,12 @@ WebKitWebPage: WebKitGTK Reference Manual - + - + @@ -104,9 +104,9 @@

Signals

---+++ @@ -130,6 +130,11 @@ + + + + + @@ -163,7 +168,7 @@

Object Hierarchy

-
    GEnum
+
    GEnum
     ╰── WebKitFormSubmissionStep
     GObject
     ╰── WebKitWebPage
@@ -367,7 +372,6 @@ to be submitted.

The “uri” property

  “uri”                      gchar *

The current active URI of the WebKitWebPage.

-

Owner: WebKitWebPage

Flags: Read

Default value: NULL

@@ -522,6 +526,10 @@ that case, the elements

Clients should take a reference to the members of the elements array if it is desired to keep them alive after the signal handler returns.

+
+

WebKitWebPage::form-controls-associated has been deprecated since version 2.26 and should not be used in newly-written code.

+

, use “form-controls-associated-for-frame” instead.

+

Parameters

Run Last
voidform-controls-associated-for-frameRun Last
gboolean send-request Run Last
@@ -555,6 +563,59 @@ keep them alive after the signal handler returns.


+

The “form-controls-associated-for-frame” signal

+
void
+user_function (WebKitWebPage *web_page,
+               GPtrArray     *elements,
+               WebKitFrame   *frame,
+               gpointer       user_data)
+

Emitted after form elements (or form associated elements) are associated to a particular web +page. This is useful to implement form auto filling for web pages where form fields are added +dynamically. This signal might be emitted multiple times for the same web page.

+

Note that this signal could be also emitted when form controls are moved between forms. In +that case, the elements + array carries the list of those elements which have moved.

+

Clients should take a reference to the members of the elements + array if it is desired to +keep them alive after the signal handler returns.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

web_page

the WebKitWebPage on which the signal is emitted

 

elements

a GPtrArray of +WebKitDOMElement with the list of forms in the page.

[element-type WebKitDOMElement][transfer none]

frame

the WebKitFrame

 

user_data

user data set when the signal handler was connected.

 
+ +

Flags: Run Last

+

Since: 2.26

+ +
+

The “send-request” signal

gboolean
 user_function (WebKitWebPage     *web_page,
@@ -574,7 +635,7 @@ request to be sent to the server due to the redirection and the
  parameter containing the response
 received by the server for the initial request.

Modifications to the WebKitURIRequest and its associated -SoupMessageHeaders will be taken into account when the request +SoupMessageHeaders will be taken into account when the request is sent over the network.

Parameters

@@ -717,6 +778,6 @@ of the form's text fields.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebResource.html b/Documentation/webkit2gtk-4.0/html/WebKitWebResource.html index 6c4ecfdd43138579d77e343d8d01bedfa29e5354..251436e130f49bd7a69b0adb27fa6d1619d350c8 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebResource.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebResource.html @@ -3,12 +3,12 @@ WebKitWebResource: WebKitGTK Reference Manual - + - + @@ -104,9 +104,9 @@

Signals

---+++ @@ -360,7 +360,6 @@ is not

The “response” property

  “response”                 WebKitURIResponse *

The WebKitURIResponse associated with this resource.

-

Owner: WebKitWebResource

Flags: Read


@@ -369,7 +368,6 @@ is not “uri” gchar *

The current active URI of the WebKitWebResource. See webkit_web_resource_get_uri() for more details.

-

Owner: WebKitWebResource

Flags: Read

Default value: NULL

@@ -584,6 +582,6 @@ received by the server for the initial request.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebView.html b/Documentation/webkit2gtk-4.0/html/WebKitWebView.html index 56d479fdf96023653cd30f369a0705521bd2f89a..c119be46a8b46a6d1b37ae11e27d2c3dafb8a207 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebView.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebView.html @@ -2,13 +2,13 @@ -The main frame document title of this #WebKitWebView. If the title has not been received yet, it will be %NULL.: WebKitGTK Reference Manual - +WebKitWebView: WebKitGTK Reference Manual + - + @@ -30,10 +30,8 @@
-

The main frame document title of this #WebKitWebView. If -the title has not been received yet, it will be %NULL.

-

The main frame document title of this #WebKitWebView. If -the title has not been received yet, it will be %NULL. — The central class of the WPE WebKit and WebKitGTK APIs

+

WebKitWebView

+

WebKitWebView — The central class of the WPE WebKit and WebKitGTK APIs

@@ -316,7 +314,7 @@ the title has not been received yet, it will be %NULL. — The central class of -cairo_surface_t * +cairo_surface_t * webkit_web_view_get_favicon () @@ -532,7 +530,7 @@ the title has not been received yet, it will be %NULL. — The central class of -cairo_surface_t * +cairo_surface_t * webkit_web_view_get_snapshot_finish () @@ -766,12 +764,12 @@ the title has not been received yet, it will be %NULL. — The central class of gboolean is-controlled-by-automation -Read / Write / Construct Only +Read / Write / Construct Only gboolean is-ephemeral -Read / Write / Construct Only +Read / Write / Construct Only gboolean @@ -785,9 +783,9 @@ the title has not been received yet, it will be %NULL. — The central class of -WebKitWebView * +WebKitWebView * related-view -Write / Construct Only +Write / Construct Only @@ -811,13 +809,13 @@ the title has not been received yet, it will be %NULL. — The central class of WebKitUserContentManager * user-content-manager -Read / Write / Construct Only +Read / Write / Construct Only WebKitWebContext * web-context -Read / Write / Construct Only +Read / Write / Construct Only gdouble @@ -831,9 +829,9 @@ the title has not been received yet, it will be %NULL. — The central class of

Signals

---+++ @@ -1063,11 +1061,11 @@ the title has not been received yet, it will be %NULL. — The central class of

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ├── WebKitJavascriptResult
     ├── WebKitScriptDialog
     ╰── WebKitWebViewSessionState
-    GEnum
+    GEnum
     ├── WebKitInsecureContentEvent
     ├── WebKitLoadEvent
     ├── WebKitPolicyDecisionType
@@ -1088,12 +1086,12 @@ WebKitWebView implements
 

Description

-

WebKitWebView is the central class of the WPE WebKit and WebKitGTK +

WebKitWebView is the central class of the WPE WebKit and WebKitGTK APIs. It is responsible for managing the drawing of the content and -forwarding of events. You can load any URI into the WebKitWebView or +forwarding of events. You can load any URI into the WebKitWebView or a data string. With WebKitSettings you can control various aspects of the rendering and loading of the content.

-

Note that in WebKitGTK, WebKitWebView is scrollable by itself, so +

Note that in WebKitGTK, WebKitWebView is scrollable by itself, so you don't need to embed it in a GtkScrolledWindow.

@@ -1102,14 +1100,14 @@ you don't need to embed it in a

webkit_web_view_new ()

GtkWidget *
 webkit_web_view_new (void);
-

Creates a new WebKitWebView with the default WebKitWebContext and +

Creates a new WebKitWebView with the default WebKitWebContext and no WebKitUserContentManager associated with it. See also webkit_web_view_new_with_context(), webkit_web_view_new_with_user_content_manager(), and webkit_web_view_new_with_settings().

Returns

-

The newly created WebKitWebView widget

+

The newly created WebKitWebView widget


@@ -1117,7 +1115,7 @@ See also

webkit_web_view_new_with_context ()

GtkWidget *
 webkit_web_view_new_with_context (WebKitWebContext *context);
-

Creates a new WebKitWebView with the given WebKitWebContext and +

Creates a new WebKitWebView with the given WebKitWebContext and no WebKitUserContentManager associated with it. See also webkit_web_view_new_with_user_content_manager() and webkit_web_view_new_with_settings().

@@ -1131,30 +1129,30 @@ See also

context

-
+

the WebKitWebContext to be used by the WebKitWebView

the WebKitWebContext to be used by the WebKitWebView

 

Returns

-

The newly created WebKitWebView widget

+

The newly created WebKitWebView widget


webkit_web_view_new_with_related_view ()

GtkWidget *
-webkit_web_view_new_with_related_view (WebKitWebView *web_view);
-

Creates a new WebKitWebView sharing the same web process with web_view +webkit_web_view_new_with_related_view (WebKitWebView *web_view); +

Creates a new WebKitWebView sharing the same web process with web_view . This method doesn't have any effect when WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS process model is used, because a single web process is shared for all the web views in the same WebKitWebContext. When using WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES process model, -this method should always be used when creating the WebKitWebView in the “create” signal. +this method should always be used when creating the WebKitWebView in the “create” signal. You can also use this method to implement other process models based on WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES, like for example, sharing the same web process for all the views in the same security domain.

-

The newly created WebKitWebView will also have the same WebKitUserContentManager +

The newly created WebKitWebView will also have the same WebKitUserContentManager and WebKitSettings as web_view .

[constructor]

@@ -1168,14 +1166,14 @@ and

web_view

-

the related WebKitWebView

+

the related WebKitWebView

 

Returns

-

The newly created WebKitWebView widget.

+

The newly created WebKitWebView widget.

[transfer full]

Since: 2.4

@@ -1185,7 +1183,7 @@ and

webkit_web_view_new_with_settings ()

GtkWidget *
 webkit_web_view_new_with_settings (WebKitSettings *settings);
-

Creates a new WebKitWebView with the given WebKitSettings. +

Creates a new WebKitWebView with the given WebKitSettings. See also webkit_web_view_new_with_context(), and webkit_web_view_new_with_user_content_manager().

@@ -1205,7 +1203,7 @@ See also

Returns

-

The newly created WebKitWebView widget

+

The newly created WebKitWebView widget

Since: 2.6

@@ -1215,7 +1213,7 @@ See also GtkWidget * webkit_web_view_new_with_user_content_manager (WebKitUserContentManager *user_content_manager); -

Creates a new WebKitWebView with the given WebKitUserContentManager. +

Creates a new WebKitWebView with the given WebKitUserContentManager. The content loaded in the view may be affected by the content injected in the view by the user content manager.

@@ -1235,7 +1233,7 @@ in the view by the user content manager.

Returns

-

The newly created WebKitWebView widget

+

The newly created WebKitWebView widget

Since: 2.6

@@ -1243,8 +1241,8 @@ in the view by the user content manager.

webkit_web_view_is_ephemeral ()

gboolean
-webkit_web_view_is_ephemeral (WebKitWebView *web_view);
-

Get whether a WebKitWebView is ephemeral. To create an ephemeral WebKitWebView you need to +webkit_web_view_is_ephemeral (WebKitWebView *web_view); +

Get whether a WebKitWebView is ephemeral. To create an ephemeral WebKitWebView you need to use g_object_new() and pass is-ephemeral property with TRUE value. See “is-ephemeral” for more details. If web_view @@ -1260,7 +1258,7 @@ ephemeral

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1277,9 +1275,9 @@ is ephemeral or

webkit_web_view_is_controlled_by_automation ()

gboolean
 webkit_web_view_is_controlled_by_automation
-                               (WebKitWebView *web_view);
-

Get whether a WebKitWebView was created with “is-controlled-by-automation” -property enabled. Only WebKitWebViews controlled by automation can be used in an + (WebKitWebView *web_view); +

Get whether a WebKitWebView was created with “is-controlled-by-automation” +property enabled. Only WebKitWebViews controlled by automation can be used in an automation session.

Parameters

@@ -1291,7 +1289,7 @@ automation session.

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1307,7 +1305,7 @@ is controlled by automation, or

webkit_web_view_get_context ()

WebKitWebContext *
-webkit_web_view_get_context (WebKitWebView *web_view);
+webkit_web_view_get_context (WebKitWebView *web_view);

Gets the web context of web_view .

@@ -1320,7 +1318,7 @@ webkit_web_view_get_context (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1336,7 +1334,7 @@ webkit_web_view_get_context (

webkit_web_view_get_user_content_manager ()

WebKitUserContentManager *
 webkit_web_view_get_user_content_manager
-                               (WebKitWebView *web_view);
+ (WebKitWebView *web_view);

Gets the user content manager associated to web_view .

@@ -1349,7 +1347,7 @@ webkit_web_view_get_user_content_manager

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1366,7 +1364,7 @@ webkit_web_view_get_user_content_manager

webkit_web_view_get_website_data_manager ()

WebKitWebsiteDataManager *
 webkit_web_view_get_website_data_manager
-                               (WebKitWebView *web_view);
+ (WebKitWebView *web_view);

Get the WebKitWebsiteDataManager associated to web_view . If web_view is not ephemeral, @@ -1383,7 +1381,7 @@ of web_view

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1399,7 +1397,7 @@ of web_view

webkit_web_view_try_close ()

void
-webkit_web_view_try_close (WebKitWebView *web_view);
+webkit_web_view_try_close (WebKitWebView *web_view);

Tries to close the web_view . This will fire the onbeforeunload event to ask the user for confirmation to close the page. If there isn't an @@ -1415,7 +1413,7 @@ the

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1426,7 +1424,7 @@ the

webkit_web_view_load_uri ()

void
-webkit_web_view_load_uri (WebKitWebView *web_view,
+webkit_web_view_load_uri (WebKitWebView *web_view,
                           const gchar *uri);

Requests loading of the specified URI string. You can monitor the load operation by connecting to @@ -1442,7 +1440,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1458,7 +1456,7 @@ You can monitor the load operation by connecting to

webkit_web_view_load_html ()

void
-webkit_web_view_load_html (WebKitWebView *web_view,
+webkit_web_view_load_html (WebKitWebView *web_view,
                            const gchar *content,
                            const gchar *base_uri);

Load the given content @@ -1491,7 +1489,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1512,14 +1510,14 @@ You can monitor the load operation by connecting to

webkit_web_view_load_alternate_html ()

void
-webkit_web_view_load_alternate_html (WebKitWebView *web_view,
+webkit_web_view_load_alternate_html (WebKitWebView *web_view,
                                      const gchar *content,
                                      const gchar *content_uri,
                                      const gchar *base_uri);

Load the given content string for the URI content_uri . -This allows clients to display page-loading errors in the WebKitWebView itself. +This allows clients to display page-loading errors in the WebKitWebView itself. When this method is called from “load-failed” signal to show an error page, then the back-forward list is maintained appropriately. For everything else this method works the same way as webkit_web_view_load_html().

@@ -1534,7 +1532,7 @@ For everything else this method works the same way as

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1561,7 +1559,7 @@ For everything else this method works the same way as

webkit_web_view_load_plain_text ()

void
-webkit_web_view_load_plain_text (WebKitWebView *web_view,
+webkit_web_view_load_plain_text (WebKitWebView *web_view,
                                  const gchar *plain_text);

Load the specified plain_text string into web_view @@ -1579,7 +1577,7 @@ operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1595,7 +1593,7 @@ operation by connecting to

webkit_web_view_load_bytes ()

void
-webkit_web_view_load_bytes (WebKitWebView *web_view,
+webkit_web_view_load_bytes (WebKitWebView *web_view,
                             GBytes *bytes,
                             const gchar *mime_type,
                             const gchar *encoding,
@@ -1623,7 +1621,7 @@ You can monitor the load operation by connecting to 

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1657,7 +1655,7 @@ You can monitor the load operation by connecting to

webkit_web_view_load_request ()

void
-webkit_web_view_load_request (WebKitWebView *web_view,
+webkit_web_view_load_request (WebKitWebView *web_view,
                               WebKitURIRequest *request);

Requests loading of the specified WebKitURIRequest. You can monitor the load operation by connecting to @@ -1673,7 +1671,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1689,7 +1687,7 @@ You can monitor the load operation by connecting to

webkit_web_view_can_go_back ()

gboolean
-webkit_web_view_can_go_back (WebKitWebView *web_view);
+webkit_web_view_can_go_back (WebKitWebView *web_view);

Determines whether web_view has a previous history item.

@@ -1702,7 +1700,7 @@ webkit_web_view_can_go_back (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1716,7 +1714,7 @@ webkit_web_view_can_go_back (

webkit_web_view_go_back ()

void
-webkit_web_view_go_back (WebKitWebView *web_view);
+webkit_web_view_go_back (WebKitWebView *web_view);

Loads the previous history item. You can monitor the load operation by connecting to “load-changed” signal.

@@ -1730,7 +1728,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1740,7 +1738,7 @@ You can monitor the load operation by connecting to

webkit_web_view_can_go_forward ()

gboolean
-webkit_web_view_can_go_forward (WebKitWebView *web_view);
+webkit_web_view_can_go_forward (WebKitWebView *web_view);

Determines whether web_view has a next history item.

@@ -1753,7 +1751,7 @@ webkit_web_view_can_go_forward (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1767,7 +1765,7 @@ webkit_web_view_can_go_forward (

webkit_web_view_go_forward ()

void
-webkit_web_view_go_forward (WebKitWebView *web_view);
+webkit_web_view_go_forward (WebKitWebView *web_view);

Loads the next history item. You can monitor the load operation by connecting to “load-changed” signal.

@@ -1781,7 +1779,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1791,7 +1789,7 @@ You can monitor the load operation by connecting to

webkit_web_view_get_title ()

const gchar *
-webkit_web_view_get_title (WebKitWebView *web_view);
+webkit_web_view_get_title (WebKitWebView *web_view);

Gets the value of the “title” property. You can connect to notify::title signal of web_view to @@ -1806,7 +1804,7 @@ be notified when the title has been received.

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1821,9 +1819,9 @@ be notified when the title has been received.

webkit_web_view_get_page_id ()

guint64
-webkit_web_view_get_page_id (WebKitWebView *web_view);
+webkit_web_view_get_page_id (WebKitWebView *web_view);

Get the identifier of the WebKitWebPage corresponding to -the WebKitWebView

+the WebKitWebView

Parameters

@@ -1834,7 +1832,7 @@ the

web_view

-
+

a WebKitWebView

a WebKitWebView

 
@@ -1849,7 +1847,7 @@ the

webkit_web_view_reload ()

void
-webkit_web_view_reload (WebKitWebView *web_view);
+webkit_web_view_reload (WebKitWebView *web_view);

Reloads the current contents of web_view . See also webkit_web_view_reload_bypass_cache().

@@ -1863,7 +1861,7 @@ See also

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1873,7 +1871,7 @@ See also

webkit_web_view_reload_bypass_cache ()

void
-webkit_web_view_reload_bypass_cache (WebKitWebView *web_view);
+webkit_web_view_reload_bypass_cache (WebKitWebView *web_view);

Reloads the current contents of web_view without using any cached data.

@@ -1887,7 +1885,7 @@ using any cached data.

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1897,7 +1895,7 @@ using any cached data.

webkit_web_view_stop_loading ()

void
-webkit_web_view_stop_loading (WebKitWebView *web_view);
+webkit_web_view_stop_loading (WebKitWebView *web_view);

Stops any ongoing loading operation in web_view . This method does nothing if no content is being loaded. @@ -1914,7 +1912,7 @@ If there is a loading operation in progress, it will be cancelled and

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1924,9 +1922,9 @@ If there is a loading operation in progress, it will be cancelled and

webkit_web_view_is_loading ()

gboolean
-webkit_web_view_is_loading (WebKitWebView *web_view);
+webkit_web_view_is_loading (WebKitWebView *web_view);

Gets the value of the “is-loading” property. -You can monitor when a WebKitWebView is loading a page by connecting to +You can monitor when a WebKitWebView is loading a page by connecting to notify::is-loading signal of web_view . This is useful when you are interesting in knowing when the view is loading something but not in the @@ -1942,7 +1940,7 @@ when the view is loading a page and stop it when it finishes.

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -1957,9 +1955,9 @@ is loading a page or

webkit_web_view_is_playing_audio ()

gboolean
-webkit_web_view_is_playing_audio (WebKitWebView *web_view);
+webkit_web_view_is_playing_audio (WebKitWebView *web_view);

Gets the value of the “is-playing-audio” property. -You can monitor when a page in a WebKitWebView is playing audio by +You can monitor when a page in a WebKitWebView is playing audio by connecting to the notify::is-playing-audio signal of web_view . This is useful when the application wants to provide visual feedback when a @@ -1974,7 +1972,7 @@ page is producing sound.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -1991,7 +1989,7 @@ is playing audio or

webkit_web_view_get_estimated_load_progress ()

gdouble
 webkit_web_view_get_estimated_load_progress
-                               (WebKitWebView *web_view);
+ (WebKitWebView *web_view);

Gets the value of the “estimated-load-progress” property. You can monitor the estimated progress of a load operation by connecting to the notify::estimated-load-progress signal of web_view @@ -2006,7 +2004,7 @@ connecting to the notify::estimated-load-progress signal of

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2021,7 +2019,7 @@ load as a range from 0.0 to 1.0.

webkit_web_view_get_custom_charset ()

const gchar *
-webkit_web_view_get_custom_charset (WebKitWebView *web_view);
+webkit_web_view_get_custom_charset (WebKitWebView *web_view);

Returns the current custom character encoding name of web_view .

@@ -2034,7 +2032,7 @@ webkit_web_view_get_custom_charset (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2049,7 +2047,7 @@ custom character encoding has been set.

webkit_web_view_set_custom_charset ()

void
-webkit_web_view_set_custom_charset (WebKitWebView *web_view,
+webkit_web_view_set_custom_charset (WebKitWebView *web_view,
                                     const gchar *charset);

Sets the current custom character encoding override of web_view . The custom @@ -2068,7 +2066,7 @@ encoding override.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2084,9 +2082,9 @@ encoding override.

webkit_web_view_get_back_forward_list ()

WebKitBackForwardList *
-webkit_web_view_get_back_forward_list (WebKitWebView *web_view);
-

Obtains the WebKitBackForwardList associated with the given WebKitWebView. The -WebKitBackForwardList is owned by the WebKitWebView.

+webkit_web_view_get_back_forward_list (WebKitWebView *web_view); +

Obtains the WebKitBackForwardList associated with the given WebKitWebView. The +WebKitBackForwardList is owned by the WebKitWebView.

Parameters

@@ -2097,7 +2095,7 @@ webkit_web_view_get_back_forward_list (

web_view

-
+

a WebKitWebView

a WebKitWebView

 
@@ -2113,7 +2111,7 @@ webkit_web_view_get_back_forward_list (

webkit_web_view_go_to_back_forward_list_item ()

void
 webkit_web_view_go_to_back_forward_list_item
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 WebKitBackForwardListItem *list_item);

Loads the specific history item list_item . @@ -2130,7 +2128,7 @@ You can monitor the load operation by connecting to

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2146,7 +2144,7 @@ You can monitor the load operation by connecting to

webkit_web_view_get_uri ()

const gchar *
-webkit_web_view_get_uri (WebKitWebView *web_view);
+webkit_web_view_get_uri (WebKitWebView *web_view);

Returns the current active URI of web_view . The active URI might change during a load operation:

@@ -2211,7 +2209,7 @@ signal of web_view

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2226,8 +2224,8 @@ if nothing has been loaded yet.


webkit_web_view_get_favicon ()

-
cairo_surface_t *
-webkit_web_view_get_favicon (WebKitWebView *web_view);
+
cairo_surface_t *
+webkit_web_view_get_favicon (WebKitWebView *web_view);

Returns favicon currently associated to web_view , if any. You can connect to notify::favicon signal of web_view @@ -2243,14 +2241,14 @@ the favicon is available.

web_view

-

a WebKitWebView

+

a WebKitWebView

 

Returns

-

a pointer to a cairo_surface_t with the +

a pointer to a cairo_surface_t with the favicon or NULL if there's no icon associated with web_view .

[transfer none]

@@ -2260,7 +2258,7 @@ favicon or

webkit_web_view_set_settings ()

void
-webkit_web_view_set_settings (WebKitWebView *web_view,
+webkit_web_view_set_settings (WebKitWebView *web_view,
                               WebKitSettings *settings);

Sets the WebKitSettings to be applied to web_view . The @@ -2270,7 +2268,7 @@ existing web_view . The same WebKitSettings object can be shared -by multiple WebKitWebViews.

+by multiple WebKitWebViews.

Parameters

@@ -2282,7 +2280,7 @@ by multiple

web_view

-
+ @@ -2298,7 +2296,7 @@ by multiple

webkit_web_view_get_settings ()

WebKitSettings *
-webkit_web_view_get_settings (WebKitWebView *web_view);
+webkit_web_view_get_settings (WebKitWebView *web_view);

Gets the WebKitSettings currently applied to web_view . If no other WebKitSettings have been explicitly applied to @@ -2314,9 +2312,9 @@ the desired preferences, and then replace the existing webkit_web_view_set_settings() or get the existing web_view settings and update it directly. WebKitSettings objects -can be shared by multiple WebKitWebViews, so modifying -the settings of a WebKitWebView would affect other -WebKitWebViews using the same WebKitSettings.

+can be shared by multiple WebKitWebViews, so modifying +the settings of a WebKitWebView would affect other +WebKitWebViews using the same WebKitSettings.

Parameters

a WebKitWebView

a WebKitWebView

 
@@ -2327,7 +2325,7 @@ the settings of a

web_view

-
+

a WebKitWebView

a WebKitWebView

 
@@ -2343,7 +2341,7 @@ the settings of a

webkit_web_view_get_window_properties ()

WebKitWindowProperties *
-webkit_web_view_get_window_properties (WebKitWebView *web_view);
+webkit_web_view_get_window_properties (WebKitWebView *web_view);

Get the WebKitWindowProperties object containing the properties that the window containing web_view should have.

@@ -2357,7 +2355,7 @@ that the window containing web_view

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2373,7 +2371,7 @@ that the window containing web_view

webkit_web_view_set_zoom_level ()

void
-webkit_web_view_set_zoom_level (WebKitWebView *web_view,
+webkit_web_view_set_zoom_level (WebKitWebView *web_view,
                                 gdouble zoom_level);

Set the zoom level of web_view , i.e. the factor by which the @@ -2389,7 +2387,7 @@ view contents are scaled with respect to their original size.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2405,7 +2403,7 @@ view contents are scaled with respect to their original size.

webkit_web_view_get_zoom_level ()

gdouble
-webkit_web_view_get_zoom_level (WebKitWebView *web_view);
+webkit_web_view_get_zoom_level (WebKitWebView *web_view);

Get the zoom level of web_view , i.e. the factor by which the view contents are scaled with respect to their original size.

@@ -2419,7 +2417,7 @@ view contents are scaled with respect to their original size.

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2435,7 +2433,7 @@ view contents are scaled with respect to their original size.

webkit_web_view_can_execute_editing_command ()

void
 webkit_web_view_can_execute_editing_command
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 const gchar *command,
                                 GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
@@ -2455,7 +2453,7 @@ webkit_web_view_can_execute_editing_command
 
 
 

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2487,7 +2485,7 @@ webkit_web_view_can_execute_editing_command

webkit_web_view_can_execute_editing_command_finish ()

gboolean
 webkit_web_view_can_execute_editing_command_finish
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_web_view_can_execute_editing_command().

@@ -2502,7 +2500,7 @@ webkit_web_view_can_execute_editing_command_finish

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2528,7 +2526,7 @@ webkit_web_view_can_execute_editing_command_finish

webkit_web_view_execute_editing_command ()

void
 webkit_web_view_execute_editing_command
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 const gchar *command);

Request to execute the given command for web_view @@ -2546,7 +2544,7 @@ it's possible to execute the command.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2563,7 +2561,7 @@ it's possible to execute the command.

webkit_web_view_execute_editing_command_with_argument ()

void
 webkit_web_view_execute_editing_command_with_argument
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 const char *command,
                                 const char *argument);

Request to execute the given command @@ -2583,7 +2581,7 @@ it's possible to execute the command.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2605,9 +2603,9 @@ it's possible to execute the command.

webkit_web_view_get_find_controller ()

WebKitFindController *
-webkit_web_view_get_find_controller (WebKitWebView *web_view);
+webkit_web_view_get_find_controller (WebKitWebView *web_view);

Gets the WebKitFindController that will allow the caller to query -the WebKitWebView for the text to look for.

+the WebKitWebView for the text to look for.

Parameters

@@ -2618,7 +2616,7 @@ the

web_view

-
+

the WebKitWebView

the WebKitWebView

 
@@ -2626,7 +2624,7 @@ the

Returns

the WebKitFindController associated to -this particular WebKitWebView.

+this particular WebKitWebView.

[transfer none]

@@ -2634,7 +2632,7 @@ this particular

webkit_web_view_get_inspector ()

WebKitWebInspector *
-webkit_web_view_get_inspector (WebKitWebView *web_view);
+webkit_web_view_get_inspector (WebKitWebView *web_view);

Get the WebKitWebInspector associated to web_view

@@ -2647,7 +2645,7 @@ webkit_web_view_get_inspector (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2664,7 +2662,7 @@ webkit_web_view_get_inspector (

webkit_web_view_get_javascript_global_context ()

JSGlobalContextRef
 webkit_web_view_get_javascript_global_context
-                               (WebKitWebView *web_view);
+ (WebKitWebView *web_view);

webkit_web_view_get_javascript_global_context has been deprecated since version 2.22 and should not be used in newly-written code.

Use jsc_value_get_context() instead.

@@ -2683,7 +2681,7 @@ result values of scripts executed with

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -2699,7 +2697,7 @@ the result values of scripts.

webkit_web_view_run_javascript ()

void
-webkit_web_view_run_javascript (WebKitWebView *web_view,
+webkit_web_view_run_javascript (WebKitWebView *web_view,
                                 const gchar *script,
                                 GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
@@ -2722,7 +2720,7 @@ WebKitSettings:enable-javascript is FALSE, this method will do nothing.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2753,7 +2751,7 @@ WebKitSettings:enable-javascript is FALSE, this method will do nothing.

webkit_web_view_run_javascript_finish ()

WebKitJavascriptResult *
-webkit_web_view_run_javascript_finish (WebKitWebView *web_view,
+webkit_web_view_run_javascript_finish (WebKitWebView *web_view,
                                        GAsyncResult *result,
                                        GError **error);

Finish an asynchronous operation started with webkit_web_view_run_javascript().

@@ -2807,50 +2805,50 @@ a string:

42 43 44
-
static void
-web_view_javascript_finished (GObject      *object,
-                              GAsyncResult *result,
-                              gpointer      user_data)
-{
-    WebKitJavascriptResult *js_result;
-    JSCValue               *value;
-    GError                 *error = NULL;
+        
static void
+web_view_javascript_finished (GObject      *object,
+                              GAsyncResult *result,
+                              gpointer      user_data)
+{
+    WebKitJavascriptResult *js_result;
+    JSCValue               *value;
+    GError                 *error = NULL;
 
-    js_result = webkit_web_view_run_javascript_finish (WEBKIT_WEB_VIEW (object), result, &error);
-    if (!js_result) {
-        g_warning ("Error running javascript: %s", error->message);
-        g_error_free (error);
-        return;
-    }
+    js_result = webkit_web_view_run_javascript_finish (WEBKIT_WEB_VIEW (object), result, &error);
+    if (!js_result) {
+        g_warning ("Error running javascript: %s", error->message);
+        g_error_free (error);
+        return;
+    }
 
-    value = webkit_javascript_result_get_js_value (js_result);
-    if (jsc_value_is_string (value)) {
-        JSCException *exception;
-        gchar        *str_value;
+    value = webkit_javascript_result_get_js_value (js_result);
+    if (jsc_value_is_string (value)) {
+        JSCException *exception;
+        gchar        *str_value;
 
-        str_value = jsc_value_to_string (value);
-        exception = jsc_context_get_exception (jsc_value_get_context (value));
-        if (exception)
-            g_warning ("Error running javascript: %s", jsc_exception_get_message (exception));
-        else
-            g_print ("Script result: %s\n", str_value);
-        g_free (str_value);
-    } else {
-        g_warning ("Error running javascript: unexpected return value");
-    }
-    webkit_javascript_result_unref (js_result);
-}
+        str_value = jsc_value_to_string (value);
+        exception = jsc_context_get_exception (jsc_value_get_context (value));
+        if (exception)
+            g_warning ("Error running javascript: %s", jsc_exception_get_message (exception));
+        else
+            g_print ("Script result: %s\n", str_value);
+        g_free (str_value);
+    } else {
+        g_warning ("Error running javascript: unexpected return value");
+    }
+    webkit_javascript_result_unref (js_result);
+}
 
-static void
-web_view_get_link_url (WebKitWebView *web_view,
-                       const gchar   *link_id)
-{
-    gchar *script;
+static void
+web_view_get_link_url (WebKitWebView *web_view,
+                       const gchar   *link_id)
+{
+    gchar *script;
 
-    script = g_strdup_printf ("window.document.getElementById('%s').href;", link_id);
-    webkit_web_view_run_javascript (web_view, script, NULL, web_view_javascript_finished, NULL);
-    g_free (script);
-}
+ script = g_strdup_printf ("window.document.getElementById('%s').href;", link_id); + webkit_web_view_run_javascript (web_view, script, NULL, web_view_javascript_finished, NULL); + g_free (script); +}
@@ -2867,7 +2865,7 @@ a string:

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2895,7 +2893,7 @@ or N

webkit_web_view_run_javascript_in_world ()

void
 webkit_web_view_run_javascript_in_world
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 const gchar *script,
                                 const gchar *world_name,
                                 GCancellable *cancellable,
@@ -2920,7 +2918,7 @@ If WebKitSettings:enable-javascript is FALSE, this method will do nothing.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -2958,7 +2956,7 @@ If WebKitSettings:enable-javascript is FALSE, this method will do nothing.

webkit_web_view_run_javascript_in_world_finish ()

WebKitJavascriptResult *
 webkit_web_view_run_javascript_in_world_finish
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_web_view_run_javascript_in_world().

@@ -2973,7 +2971,7 @@ webkit_web_view_run_javascript_in_world_finish

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3002,7 +3000,7 @@ or N

webkit_web_view_run_javascript_from_gresource ()

void
 webkit_web_view_run_javascript_from_gresource
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 const gchar *resource,
                                 GCancellable *cancellable,
                                 GAsyncReadyCallback callback,
@@ -3026,7 +3024,7 @@ of the operation.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3058,7 +3056,7 @@ of the operation.

webkit_web_view_run_javascript_from_gresource_finish ()

WebKitJavascriptResult *
 webkit_web_view_run_javascript_from_gresource_finish
-                               (WebKitWebView *web_view,
+                               (WebKitWebView *web_view,
                                 GAsyncResult *result,
                                 GError **error);

Finish an asynchronous operation started with webkit_web_view_run_javascript_from_gresource().

@@ -3074,7 +3072,7 @@ webkit_web_view_run_javascript_from_gresource_finish

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3101,7 +3099,7 @@ or N

webkit_web_view_can_show_mime_type ()

gboolean
-webkit_web_view_can_show_mime_type (WebKitWebView *web_view,
+webkit_web_view_can_show_mime_type (WebKitWebView *web_view,
                                     const gchar *mime_type);

Whether or not a MIME type can be displayed in web_view .

@@ -3116,7 +3114,7 @@ webkit_web_view_can_show_mime_type (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3137,13 +3135,13 @@ can be displayed or

webkit_web_view_save ()

void
-webkit_web_view_save (WebKitWebView *web_view,
+webkit_web_view_save (WebKitWebView *web_view,
                       WebKitSaveMode save_mode,
                       GCancellable *cancellable,
                       GAsyncReadyCallback callback,
                       gpointer user_data);

Asynchronously save the current web page associated to the -WebKitWebView into a self-contained format using the mode +WebKitWebView into a self-contained format using the mode specified in save_mode .

When the operation is finished, callback @@ -3161,7 +3159,7 @@ operation.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3192,7 +3190,7 @@ operation.

webkit_web_view_save_finish ()

GInputStream *
-webkit_web_view_save_finish (WebKitWebView *web_view,
+webkit_web_view_save_finish (WebKitWebView *web_view,
                              GAsyncResult *result,
                              GError **error);

Finish an asynchronous operation started with webkit_web_view_save().

@@ -3207,7 +3205,7 @@ webkit_web_view_save_finish (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3234,14 +3232,14 @@ the current web page or

webkit_web_view_save_to_file ()

void
-webkit_web_view_save_to_file (WebKitWebView *web_view,
+webkit_web_view_save_to_file (WebKitWebView *web_view,
                               GFile *file,
                               WebKitSaveMode save_mode,
                               GCancellable *cancellable,
                               GAsyncReadyCallback callback,
                               gpointer user_data);

Asynchronously save the current web page associated to the -WebKitWebView into a self-contained format using the mode +WebKitWebView into a self-contained format using the mode specified in save_mode and writing it to file .

@@ -3260,7 +3258,7 @@ operation.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3296,7 +3294,7 @@ operation.

webkit_web_view_save_to_file_finish ()

gboolean
-webkit_web_view_save_to_file_finish (WebKitWebView *web_view,
+webkit_web_view_save_to_file_finish (WebKitWebView *web_view,
                                      GAsyncResult *result,
                                      GError **error);

Finish an asynchronous operation started with webkit_web_view_save_to_file().

@@ -3311,7 +3309,7 @@ webkit_web_view_save_to_file_finish (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3336,7 +3334,7 @@ webkit_web_view_save_to_file_finish (

webkit_web_view_download_uri ()

WebKitDownload *
-webkit_web_view_download_uri (WebKitWebView *web_view,
+webkit_web_view_download_uri (WebKitWebView *web_view,
                               const char *uri);

Requests downloading of the specified URI string for web_view .

@@ -3351,7 +3349,7 @@ webkit_web_view_download_uri (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3373,7 +3371,7 @@ the download operation.

webkit_web_view_get_tls_info ()

gboolean
-webkit_web_view_get_tls_info (WebKitWebView *web_view,
+webkit_web_view_get_tls_info (WebKitWebView *web_view,
                               GTlsCertificate **certificate,
                               GTlsCertificateFlags *errors);

Retrieves the GTlsCertificate associated with the main resource of web_view @@ -3403,7 +3401,7 @@ which case subresources that fail certificate verification will be blocked.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3431,7 +3429,7 @@ from the server, or

webkit_web_view_get_snapshot ()

void
-webkit_web_view_get_snapshot (WebKitWebView *web_view,
+webkit_web_view_get_snapshot (WebKitWebView *web_view,
                               WebKitSnapshotRegion region,
                               WebKitSnapshotOptions options,
                               GCancellable *cancellable,
@@ -3457,7 +3455,7 @@ operation.

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3492,8 +3490,8 @@ operation.


webkit_web_view_get_snapshot_finish ()

-
cairo_surface_t *
-webkit_web_view_get_snapshot_finish (WebKitWebView *web_view,
+
cairo_surface_t *
+webkit_web_view_get_snapshot_finish (WebKitWebView *web_view,
                                      GAsyncResult *result,
                                      GError **error);

Finishes an asynchronous operation started with webkit_web_view_get_snapshot().

@@ -3508,7 +3506,7 @@ webkit_web_view_get_snapshot_finish (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3526,7 +3524,7 @@ webkit_web_view_get_snapshot_finish (

Returns

-

a cairo_surface_t with the retrieved snapshot or NULL in error.

+

a cairo_surface_t with the retrieved snapshot or NULL in error.

[transfer full]

@@ -3534,7 +3532,7 @@ webkit_web_view_get_snapshot_finish (

webkit_web_view_set_background_color ()

void
-webkit_web_view_set_background_color (WebKitWebView *web_view,
+webkit_web_view_set_background_color (WebKitWebView *web_view,
                                       const GdkRGBA *rgba);

Sets the color that will be used to draw the web_view background before @@ -3566,22 +3564,22 @@ Note that the parent window must have a RGBA visual and 14 15 16

-
static void browser_window_set_background_color (BrowserWindow *window,
-                                                 const GdkRGBA *rgba)
-{
-    WebKitWebView *web_view;
-    GdkScreen *screen = gtk_window_get_screen (GTK_WINDOW (window));
-    GdkVisual *rgba_visual = gdk_screen_get_rgba_visual (screen);
+        
static void browser_window_set_background_color (BrowserWindow *window,
+                                                 const GdkRGBA *rgba)
+{
+    WebKitWebView *web_view;
+    GdkScreen *screen = gtk_window_get_screen (GTK_WINDOW (window));
+    GdkVisual *rgba_visual = gdk_screen_get_rgba_visual (screen);
 
-    if (!rgba_visual)
-         return;
+    if (!rgba_visual)
+         return;
 
-    gtk_widget_set_visual (GTK_WIDGET (window), rgba_visual);
-    gtk_widget_set_app_paintable (GTK_WIDGET (window), TRUE);
+    gtk_widget_set_visual (GTK_WIDGET (window), rgba_visual);
+    gtk_widget_set_app_paintable (GTK_WIDGET (window), TRUE);
 
-    web_view = browser_window_get_web_view (window);
-    webkit_web_view_set_background_color (web_view, rgba);
-}
+ web_view = browser_window_get_web_view (window); + webkit_web_view_set_background_color (web_view, rgba); +}
@@ -3598,7 +3596,7 @@ Note that the parent window must have a RGBA visual and

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3615,7 +3613,7 @@ Note that the parent window must have a RGBA visual and

webkit_web_view_get_background_color ()

void
-webkit_web_view_get_background_color (WebKitWebView *web_view,
+webkit_web_view_get_background_color (WebKitWebView *web_view,
                                       GdkRGBA *rgba);

Gets the color that is used to draw the web_view background before @@ -3632,7 +3630,7 @@ For more information see also

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3649,7 +3647,7 @@ For more information see also

webkit_web_view_set_editable ()

void
-webkit_web_view_set_editable (WebKitWebView *web_view,
+webkit_web_view_set_editable (WebKitWebView *web_view,
                               gboolean editable);

Sets whether the user is allowed to edit the HTML document.

If editable @@ -3659,10 +3657,10 @@ webkit_web_view_set_editable (FALSE, an element in web_view 's document can only be edited if the CONTENTEDITABLE attribute has been set on the element or one of its parent -elements. By default a WebKitWebView is not editable.

+elements. By default a WebKitWebView is not editable.

Normally, a HTML document is not editable unless the elements within the document are editable. This function provides a way to make the contents -of a WebKitWebView editable without altering the document or DOM structure.

+of a WebKitWebView editable without altering the document or DOM structure.

Parameters

@@ -3674,7 +3672,7 @@ of a

web_view

-
+ @@ -3691,13 +3689,13 @@ of a

webkit_web_view_is_editable ()

gboolean
-webkit_web_view_is_editable (WebKitWebView *web_view);
+webkit_web_view_is_editable (WebKitWebView *web_view);

webkit_web_view_get_editor_state ()

WebKitEditorState *
-webkit_web_view_get_editor_state (WebKitWebView *web_view);
+webkit_web_view_get_editor_state (WebKitWebView *web_view);

Gets the web editor state of web_view .

@@ -3710,7 +3708,7 @@ webkit_web_view_get_editor_state (
- +

a WebKitWebView

a WebKitWebView

 

web_view

a WebKitWebView

a WebKitWebView

 
@@ -3726,7 +3724,7 @@ webkit_web_view_get_editor_state (

webkit_web_view_get_session_state ()

WebKitWebViewSessionState *
-webkit_web_view_get_session_state (WebKitWebView *web_view);
+webkit_web_view_get_session_state (WebKitWebView *web_view);

Gets the current session state of web_view

@@ -3739,7 +3737,7 @@ webkit_web_view_get_session_state (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -3755,7 +3753,7 @@ webkit_web_view_get_session_state (

webkit_web_view_restore_session_state ()

void
-webkit_web_view_restore_session_state (WebKitWebView *web_view,
+webkit_web_view_restore_session_state (WebKitWebView *web_view,
                                        WebKitWebViewSessionState *state);

Restore the web_view session state from state @@ -3771,7 +3769,7 @@ webkit_web_view_restore_session_state (

web_view

-

a WebKitWebView

+

a WebKitWebView

  @@ -3788,7 +3786,7 @@ webkit_web_view_restore_session_state (

webkit_web_view_get_main_resource ()

WebKitWebResource *
-webkit_web_view_get_main_resource (WebKitWebView *web_view);
+webkit_web_view_get_main_resource (WebKitWebView *web_view);

Return the main resource of web_view .

@@ -3801,7 +3799,7 @@ webkit_web_view_get_main_resource (

web_view

-

a WebKitWebView

+

a WebKitWebView

 
@@ -4326,7 +4324,7 @@ serialized.

enum WebKitLoadEvent

Enum values used to denote the different events that happen during a -WebKitWebView load operation.

+WebKitWebView load operation.

Members

@@ -4394,10 +4392,10 @@ or there was an error during the load operation.

@@ -4405,13 +4403,13 @@ type of policy decision is always a

WEBKIT_POLICY_DECISION_TYPE_NEW_WINDOW_ACTION

@@ -4419,14 +4417,14 @@ target attribute on <a> elements.

@@ -4437,7 +4435,7 @@ or to block the transfer of resources entirely.


enum WebKitSaveMode

-

Enum values to specify the different ways in which a WebKitWebView +

Enum values to specify the different ways in which a WebKitWebView can save its current web page into a self-contained file.

Members

@@ -4497,7 +4495,7 @@ from an untrusted source.

enum WebKitSnapshotOptions

Enum values used to specify options when taking a snapshot -from a WebKitWebView.

+from a WebKitWebView.

Members

WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION

This type of policy decision -is requested when WebKit is about to navigate to a new page in either the -main frame or a subframe. Acceptable policy decisions are either -webkit_policy_decision_use() or webkit_policy_decision_ignore(). This -type of policy decision is always a WebKitNavigationPolicyDecision.

+ is requested when WebKit is about to navigate to a new page in either the + main frame or a subframe. Acceptable policy decisions are either + webkit_policy_decision_use() or webkit_policy_decision_ignore(). This + type of policy decision is always a WebKitNavigationPolicyDecision.

 

This type of policy decision -is requested when WebKit is about to create a new window. Acceptable policy -decisions are either webkit_policy_decision_use() or -webkit_policy_decision_ignore(). This type of policy decision is always -a WebKitNavigationPolicyDecision. These decisions are useful for implementing -special actions for new windows, such as forcing the new window to open -in a tab when a keyboard modifier is active or handling a special -target attribute on <a> elements.

+ is requested when WebKit is about to create a new window. Acceptable policy + decisions are either webkit_policy_decision_use() or + webkit_policy_decision_ignore(). This type of policy decision is always + a WebKitNavigationPolicyDecision. These decisions are useful for implementing + special actions for new windows, such as forcing the new window to open + in a tab when a keyboard modifier is active or handling a special + target attribute on <a> elements.

 

WEBKIT_POLICY_DECISION_TYPE_RESPONSE

This type of decision is used when WebKit has -received a response for a network resource and is about to start the load. -Note that these resources include all subresources of a page such as images -and stylesheets as well as main documents. Appropriate policy responses to -this decision are webkit_policy_decision_use(), webkit_policy_decision_ignore(), -or webkit_policy_decision_download(). This type of policy decision is always -a WebKitResponsePolicyDecision. This decision is useful for forcing -some types of resources to be downloaded rather than rendered in the WebView -or to block the transfer of resources entirely.

+ received a response for a network resource and is about to start the load. + Note that these resources include all subresources of a page such as images + and stylesheets as well as main documents. Appropriate policy responses to + this decision are webkit_policy_decision_use(), webkit_policy_decision_ignore(), + or webkit_policy_decision_download(). This type of policy decision is always + a WebKitResponsePolicyDecision. This decision is useful for forcing + some types of resources to be downloaded rather than rendered in the WebView + or to block the transfer of resources entirely.

 
@@ -4537,7 +4535,7 @@ rendering the snapshot. Since 2.8


enum WebKitSnapshotRegion

-

Enum values used to specify the region from which to get a WebKitWebView +

Enum values used to specify the region from which to get a WebKitWebView snapshot

Members

@@ -4605,10 +4603,10 @@ visible in the webview

#define WEBKIT_EDITING_COMMAND_CUT "Cut"
 

The cut clipboard command. Copies the current selection inside -a WebKitWebView to the clipboard and deletes the selected content. +a WebKitWebView to the clipboard and deletes the selected content. You can check whether it's possible to execute the command with webkit_web_view_can_execute_editing_command(). In general it's -possible to cut to the clipboard when the WebKitWebView content is +possible to cut to the clipboard when the WebKitWebView content is editable and there is an active selection.


@@ -4617,11 +4615,11 @@ editable and there is an active selection.

#define WEBKIT_EDITING_COMMAND_COPY "Copy"
 

The copy clipboard command. Copies the current selection inside -a WebKitWebView to the clipboard. +a WebKitWebView to the clipboard. You can check whether it's possible to execute the command with webkit_web_view_can_execute_editing_command(). In general it's possible to copy to the clipboard when there is an active selection -inside the WebKitWebView.

+inside the WebKitWebView.


@@ -4629,10 +4627,10 @@ inside the #define WEBKIT_EDITING_COMMAND_PASTE "Paste"

The paste clipboard command. Pastes the contents of the clipboard to -a WebKitWebView. +a WebKitWebView. You can check whether it's possible to execute the command with webkit_web_view_can_execute_editing_command(). In general it's possible -to paste from the clipboard when the WebKitWebView content is editable +to paste from the clipboard when the WebKitWebView content is editable and clipboard is not empty.


@@ -4641,9 +4639,9 @@ and clipboard is not empty.

#define WEBKIT_EDITING_COMMAND_SELECT_ALL "SelectAll"
 

The select all command. Selects all the content of the current text field in -a WebKitWebView. +a WebKitWebView. It is always possible to select all text, no matter whether the -WebKitWebView content is editable or not. You can still check it +WebKitWebView content is editable or not. You can still check it with webkit_web_view_can_execute_editing_command().


@@ -4651,7 +4649,7 @@ with

WEBKIT_EDITING_COMMAND_UNDO

#define WEBKIT_EDITING_COMMAND_UNDO "Undo"
 
-

The undo command. Undoes the last editing command in a WebKitWebView. +

The undo command. Undoes the last editing command in a WebKitWebView. You can check whether it's possible to execute the command with webkit_web_view_can_execute_editing_command(). It's only possible to undo a command after a previously executed editing operation.

@@ -4662,7 +4660,7 @@ to undo a command after a previously executed editing operation.

#define WEBKIT_EDITING_COMMAND_REDO "Redo"
 

The redo command. Redoes a previously undone editing command in -a WebKitWebView. +a WebKitWebView. You can check whether it's possible to execute the command with webkit_web_view_can_execute_editing_command(). It's only possible to redo a command when it has been previously undone.

@@ -4760,9 +4758,8 @@ used to ask confirmation to leave the current page to the user. Since 2.12

The “editable” property

  “editable”                 gboolean
-

Whether the pages loaded inside WebKitWebView are editable. For more +

Whether the pages loaded inside WebKitWebView are editable. For more information see webkit_web_view_set_editable().

-

Owner: WebKitWebView

Flags: Read / Write

Default value: FALSE

Since: 2.8

@@ -4778,7 +4775,6 @@ will be reset to 0.0. The value is an estimate based on the total number of bytes expected to be received for a document, including all its possible subresources and child documents.

-

Owner: WebKitWebView

Flags: Read

Allowed values: [0,1]

Default value: 0

@@ -4787,20 +4783,18 @@ and child documents.

The “favicon” property

  “favicon”                  gpointer
-

The favicon currently associated to the WebKitWebView. +

The favicon currently associated to the WebKitWebView. See webkit_web_view_get_favicon() for more details.

-

Owner: WebKitWebView

Flags: Read


The “is-controlled-by-automation” property

  “is-controlled-by-automation” gboolean
-

Whether the WebKitWebView is controlled by automation. This should only be used when -creating a new WebKitWebView as a response to “create-web-view” +

Whether the WebKitWebView is controlled by automation. This should only be used when +creating a new WebKitWebView as a response to “create-web-view” signal request.

-

Owner: WebKitWebView

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: FALSE

Since: 2.18

@@ -4808,15 +4802,14 @@ signal request.

The “is-ephemeral” property

  “is-ephemeral”             gboolean
-

Whether the WebKitWebView is ephemeral. An ephemeral web view never writes +

Whether the WebKitWebView is ephemeral. An ephemeral web view never writes website data to the client storage, no matter what WebKitWebsiteDataManager its context is using. This is normally used to implement private browsing mode. This is a G_PARAM_CONSTRUCT_ONLY property, so you have to create a ephemeral -WebKitWebView and it can't be changed. Note that all WebKitWebViews +WebKitWebView and it can't be changed. Note that all WebKitWebViews created with an ephemeral WebKitWebContext will be ephemeral automatically. See also webkit_web_context_new_ephemeral().

-

Owner: WebKitWebView

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: FALSE

Since: 2.16

@@ -4824,13 +4817,12 @@ See also

The “is-loading” property

  “is-loading”               gboolean
-

Whether the WebKitWebView is currently loading a page. This property becomes +

Whether the WebKitWebView is currently loading a page. This property becomes TRUE as soon as a new load operation is requested and before the “load-changed” signal is emitted with WEBKIT_LOAD_STARTED and at that point the active URI is the requested one. When the load operation finishes the property is set to FALSE before “load-changed” is emitted with WEBKIT_LOAD_FINISHED.

-

Owner: WebKitWebView

Flags: Read

Default value: FALSE

@@ -4838,11 +4830,10 @@ When the load operation finishes the property is set to

The “is-playing-audio” property

  “is-playing-audio”         gboolean
-

Whether the WebKitWebView is currently playing audio from a page. +

Whether the WebKitWebView is currently playing audio from a page. This property becomes TRUE as soon as web content starts playing any kind of audio. When a page is no longer playing any kind of sound, the property is set back to FALSE.

-

Owner: WebKitWebView

Flags: Read

Default value: FALSE

Since: 2.8

@@ -4850,12 +4841,11 @@ the property is set back to

The “related-view” property

-
  “related-view”             WebKitWebView *
-

The related WebKitWebView used when creating the view to share the +

  “related-view”             WebKitWebView *
+

The related WebKitWebView used when creating the view to share the same web process. This property is not readable because the related web view is only valid during the object construction.

-

Owner: WebKitWebView

-

Flags: Write / Construct Only

+

Flags: Write / Construct Only

Since: 2.4


@@ -4863,7 +4853,6 @@ web view is only valid during the object construction.

The “settings” property

  “settings”                 WebKitSettings *

The WebKitSettings of the view.

-

Owner: WebKitWebView

Flags: Write / Construct

Since: 2.6

@@ -4871,9 +4860,8 @@ web view is only valid during the object construction.

The “title” property

  “title”                    gchar *
-

The main frame document title of this WebKitWebView. If +

The main frame document title of this WebKitWebView. If the title has not been received yet, it will be NULL.

-

Owner: WebKitWebView

Flags: Read

Default value: NULL

@@ -4881,9 +4869,8 @@ the title has not been received yet, it will be

The “uri” property

  “uri”                      gchar *
-

The current active URI of the WebKitWebView. +

The current active URI of the WebKitWebView. See webkit_web_view_get_uri() for more details.

-

Owner: WebKitWebView

Flags: Read

Default value: NULL

@@ -4892,8 +4879,7 @@ See

The “user-content-manager” property

  “user-content-manager”     WebKitUserContentManager *

The WebKitUserContentManager of the view.

-

Owner: WebKitWebView

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Since: 2.6


@@ -4901,16 +4887,14 @@ See

The “web-context” property

  “web-context”              WebKitWebContext *

The WebKitWebContext of the view.

-

Owner: WebKitWebView

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only


The “zoom-level” property

  “zoom-level”               gdouble
-

The zoom level of the WebKitWebView content. +

The zoom level of the WebKitWebView content. See webkit_web_view_set_zoom_level() for more details.

-

Owner: WebKitWebView

Flags: Read / Write

Allowed values: >= 0

Default value: 1

@@ -4921,7 +4905,7 @@ See

The “authenticate” signal

gboolean
-user_function (WebKitWebView               *web_view,
+user_function (WebKitWebView               *web_view,
                WebKitAuthenticationRequest *request,
                gpointer                     user_data)

This signal is emitted when the user is challenged with HTTP @@ -4947,7 +4931,7 @@ dialog asynchronously for the user to interact with.

- + @@ -4975,14 +4959,14 @@ dialog asynchronously for the user to interact with.

The “close” signal

void
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)
-

Emitted when closing a WebKitWebView is requested. This occurs when a +

Emitted when closing a WebKitWebView is requested. This occurs when a call is made from JavaScript's window.close function or after trying to close the web_view with webkit_web_view_try_close(). It is the owner's responsibility to handle this signal to hide or -destroy the WebKitWebView, if necessary.

+destroy the WebKitWebView, if necessary.

Parameters

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 
@@ -4994,7 +4978,7 @@ destroy the

web_view

-
+ @@ -5011,7 +4995,7 @@ destroy the

The “context-menu” signal

gboolean
-user_function (WebKitWebView       *web_view,
+user_function (WebKitWebView       *web_view,
                WebKitContextMenu   *context_menu,
                GdkEvent            *event,
                WebKitHitTestResult *hit_test_result,
@@ -5076,7 +5060,7 @@ during the signal emission.

- + @@ -5113,7 +5097,7 @@ during the signal emission.

The “context-menu-dismissed” signal

void
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)

Emitted after “context-menu” signal, if the context menu is shown, to notify that the context menu is dismissed.

@@ -5128,7 +5112,7 @@ to notify that the context menu is dismissed.

- + @@ -5145,20 +5129,20 @@ to notify that the context menu is dismissed.

The “create” signal

GtkWidget*
-user_function (WebKitWebView          *web_view,
+user_function (WebKitWebView          *web_view,
                WebKitNavigationAction *navigation_action,
                gpointer                user_data)
-

Emitted when the creation of a new WebKitWebView is requested. +

Emitted when the creation of a new WebKitWebView is requested. If this signal is handled the signal handler should return the -newly created WebKitWebView.

+newly created WebKitWebView.

The WebKitNavigationAction parameter contains information about the navigation action that triggered this signal.

When using WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES -process model, the new WebKitWebView should be related to +process model, the new WebKitWebView should be related to web_view to share the same web process, see webkit_web_view_new_with_related_view() for more details.

-

The new WebKitWebView should not be displayed to the user +

The new WebKitWebView should not be displayed to the user until the “ready-to-show” signal is emitted.

Parameters

@@ -5171,7 +5155,7 @@ until the
- + @@ -5189,7 +5173,7 @@ until the

Returns

-

a newly allocated WebKitWebView widget +

a newly allocated WebKitWebView widget or NULL to propagate the event further.

[transfer full]

@@ -5199,7 +5183,7 @@ or N

The “decide-policy” signal

gboolean
-user_function (WebKitWebView           *web_view,
+user_function (WebKitWebView           *web_view,
                WebKitPolicyDecision    *decision,
                WebKitPolicyDecisionType decision_type,
                gpointer                 user_data)
@@ -5239,32 +5223,32 @@ specific type when making the decision. For example:

24 25 26 -
+

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 
static gboolean
-decide_policy_cb (WebKitWebView *web_view,
-                  WebKitPolicyDecision *decision,
-                  WebKitPolicyDecisionType type)
-{
-    switch (type) {
-    case WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION: {
-        WebKitNavigationPolicyDecision *navigation_decision = WEBKIT_NAVIGATION_POLICY_DECISION (decision);
-        /* Make a policy decision here. */
-        break;
-    }
-    case WEBKIT_POLICY_DECISION_TYPE_NEW_WINDOW_ACTION: {
-        WebKitNavigationPolicyDecision *navigation_decision = WEBKIT_NAVIGATION_POLICY_DECISION (decision);
-        /* Make a policy decision here. */
-        break;
-    }
-    case WEBKIT_POLICY_DECISION_TYPE_RESPONSE:
-        WebKitResponsePolicyDecision *response = WEBKIT_RESPONSE_POLICY_DECISION (decision);
-        /* Make a policy decision here. */
-        break;
-    default:
-        /* Making no decision results in webkit_policy_decision_use(). */
-        return FALSE;
-    }
-    return TRUE;
-}
static gboolean
+decide_policy_cb (WebKitWebView *web_view,
+                  WebKitPolicyDecision *decision,
+                  WebKitPolicyDecisionType type)
+{
+    switch (type) {
+    case WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION: {
+        WebKitNavigationPolicyDecision *navigation_decision = WEBKIT_NAVIGATION_POLICY_DECISION (decision);
+        /* Make a policy decision here. */
+        break;
+    }
+    case WEBKIT_POLICY_DECISION_TYPE_NEW_WINDOW_ACTION: {
+        WebKitNavigationPolicyDecision *navigation_decision = WEBKIT_NAVIGATION_POLICY_DECISION (decision);
+        /* Make a policy decision here. */
+        break;
+    }
+    case WEBKIT_POLICY_DECISION_TYPE_RESPONSE:
+        WebKitResponsePolicyDecision *response = WEBKIT_RESPONSE_POLICY_DECISION (decision);
+        /* Make a policy decision here. */
+        break;
+    default:
+        /* Making no decision results in webkit_policy_decision_use(). */
+        return FALSE;
+    }
+    return TRUE;
+}
@@ -5288,7 +5272,7 @@ policy decision chosen for a given

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5321,11 +5305,11 @@ policy decision chosen for a given

The “enter-fullscreen” signal

gboolean
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)

Emitted when JavaScript code calls element.webkitRequestFullScreen. If the -signal is not handled the WebKitWebView will proceed to full screen +signal is not handled the WebKitWebView will proceed to full screen its top level window. This signal can be used by client code to request permission to the user prior doing the full screen transition and eventually prepare the top-level window @@ -5342,7 +5326,7 @@ full screen window).

web_view

-

the WebKitWebView on which the signal is emitted.

+

the WebKitWebView on which the signal is emitted.

  @@ -5364,7 +5348,7 @@ full screen window).

The “insecure-content-detected” signal

void
-user_function (WebKitWebView             *web_view,
+user_function (WebKitWebView             *web_view,
                WebKitInsecureContentEvent event,
                gpointer                   user_data)

This signal is emitted when insecure content has been detected @@ -5386,7 +5370,7 @@ of event has been detected (see

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5408,9 +5392,9 @@ of event has been detected (see

The “leave-fullscreen” signal

gboolean
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)
-

Emitted when the WebKitWebView is about to restore its top level +

Emitted when the WebKitWebView is about to restore its top level window out of its full screen state. This signal can be used by client code to restore widgets hidden during the “enter-fullscreen” stage for instance.

@@ -5425,7 +5409,7 @@ client code to restore widgets hidden during the

web_view

-

the WebKitWebView on which the signal is emitted.

+

the WebKitWebView on which the signal is emitted.

  @@ -5447,7 +5431,7 @@ client code to restore widgets hidden during the

The “load-changed” signal

void
-user_function (WebKitWebView  *web_view,
+user_function (WebKitWebView  *web_view,
                WebKitLoadEvent load_event,
                gpointer        user_data)

Emitted when a load operation in web_view @@ -5495,32 +5479,32 @@ load operation.

24 25 26 -
static void web_view_load_changed (WebKitWebView  *web_view,
-                                   WebKitLoadEvent load_event,
-                                   gpointer        user_data)
-{
-    switch (load_event) {
-    case WEBKIT_LOAD_STARTED:
-        /* New load, we have now a provisional URI */
-        provisional_uri = webkit_web_view_get_uri (web_view);
-        /* Here we could start a spinner or update the
-         * location bar with the provisional URI */
-        break;
-    case WEBKIT_LOAD_REDIRECTED:
-        redirected_uri = webkit_web_view_get_uri (web_view);
-        break;
-    case WEBKIT_LOAD_COMMITTED:
-        /* The load is being performed. Current URI is
-         * the final one and it won't change unless a new
-         * load is requested or a navigation within the
-         * same page is performed */
-        uri = webkit_web_view_get_uri (web_view);
-        break;
-    case WEBKIT_LOAD_FINISHED:
-        /* Load finished, we can now stop the spinner */
-        break;
-    }
-}
+
static void web_view_load_changed (WebKitWebView  *web_view,
+                                   WebKitLoadEvent load_event,
+                                   gpointer        user_data)
+{
+    switch (load_event) {
+    case WEBKIT_LOAD_STARTED:
+        /* New load, we have now a provisional URI */
+        provisional_uri = webkit_web_view_get_uri (web_view);
+        /* Here we could start a spinner or update the
+         * location bar with the provisional URI */
+        break;
+    case WEBKIT_LOAD_REDIRECTED:
+        redirected_uri = webkit_web_view_get_uri (web_view);
+        break;
+    case WEBKIT_LOAD_COMMITTED:
+        /* The load is being performed. Current URI is
+         * the final one and it won't change unless a new
+         * load is requested or a navigation within the
+         * same page is performed */
+        uri = webkit_web_view_get_uri (web_view);
+        break;
+    case WEBKIT_LOAD_FINISHED:
+        /* Load finished, we can now stop the spinner */
+        break;
+    }
+}
@@ -5537,7 +5521,7 @@ load operation.

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5559,7 +5543,7 @@ load operation.

The “load-failed” signal

gboolean
-user_function (WebKitWebView  *web_view,
+user_function (WebKitWebView  *web_view,
                WebKitLoadEvent load_event,
                gchar          *failing_uri,
                GError         *error,
@@ -5586,7 +5570,7 @@ You need to handle the signal if you want to provide your own error page.

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5623,7 +5607,7 @@ You need to handle the signal if you want to provide your own error page.

The “load-failed-with-tls-errors” signal

gboolean
-user_function (WebKitWebView       *web_view,
+user_function (WebKitWebView       *web_view,
                gchar               *failing_uri,
                GTlsCertificate     *certificate,
                GTlsCertificateFlags errors,
@@ -5649,7 +5633,7 @@ will finish regardless of the returned value.

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5688,7 +5672,7 @@ will finish regardless of the returned value.

The “mouse-target-changed” signal

void
-user_function (WebKitWebView       *web_view,
+user_function (WebKitWebView       *web_view,
                WebKitHitTestResult *hit_test_result,
                guint                modifiers,
                gpointer             user_data)
@@ -5714,7 +5698,7 @@ current element with a new hit_test_result

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5741,7 +5725,7 @@ current element with a new hit_test_result

The “permission-request” signal

gboolean
-user_function (WebKitWebView           *web_view,
+user_function (WebKitWebView           *web_view,
                WebKitPermissionRequest *request,
                gpointer                 user_data)

This signal is emitted when WebKit is requesting the client to @@ -5778,30 +5762,30 @@ allowing the user decide what to do with the request:

22 23 24
-
static gboolean permission_request_cb (WebKitWebView *web_view,
-                                       WebKitPermissionRequest *request,
-                                       GtkWindow *parent_window)
-{
-    GtkWidget *dialog = gtk_message_dialog_new (parent_window,
-                                                GTK_DIALOG_MODAL,
-                                                GTK_MESSAGE_QUESTION,
-                                                GTK_BUTTONS_YES_NO,
-                                                "Allow Permission Request?");
-    gtk_widget_show (dialog);
-    gint result = gtk_dialog_run (GTK_DIALOG (dialog));
+        
static gboolean permission_request_cb (WebKitWebView *web_view,
+                                       WebKitPermissionRequest *request,
+                                       GtkWindow *parent_window)
+{
+    GtkWidget *dialog = gtk_message_dialog_new (parent_window,
+                                                GTK_DIALOG_MODAL,
+                                                GTK_MESSAGE_QUESTION,
+                                                GTK_BUTTONS_YES_NO,
+                                                "Allow Permission Request?");
+    gtk_widget_show (dialog);
+    gint result = gtk_dialog_run (GTK_DIALOG (dialog));
 
-    switch (result) {
-    case GTK_RESPONSE_YES:
-        webkit_permission_request_allow (request);
-        break;
-    default:
-        webkit_permission_request_deny (request);
-        break;
-    }
-    gtk_widget_destroy (dialog);
+    switch (result) {
+    case GTK_RESPONSE_YES:
+        webkit_permission_request_allow (request);
+        break;
+    default:
+        webkit_permission_request_deny (request);
+        break;
+    }
+    gtk_widget_destroy (dialog);
 
-    return TRUE;
-}
+ return TRUE; +}
@@ -5830,7 +5814,7 @@ their default action.

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5857,7 +5841,7 @@ their default action.

The “print” signal

gboolean
-user_function (WebKitWebView        *web_view,
+user_function (WebKitWebView        *web_view,
                WebKitPrintOperation *print_operation,
                gpointer              user_data)

Emitted when printing is requested on web_view @@ -5881,7 +5865,7 @@ or implement your own print dialog.

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5908,9 +5892,9 @@ or implement your own print dialog.

The “ready-to-show” signal

void
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)
-

Emitted after “create” on the newly created WebKitWebView +

Emitted after “create” on the newly created WebKitWebView when it should be displayed to the user. When this signal is emitted all the information about how the window should look, including size, position, whether the location, status and scrollbars @@ -5928,7 +5912,7 @@ of web_view

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5945,7 +5929,7 @@ of web_view

The “resource-load-started” signal

void
-user_function (WebKitWebView     *web_view,
+user_function (WebKitWebView     *web_view,
                WebKitWebResource *resource,
                WebKitURIRequest  *request,
                gpointer           user_data)
@@ -5966,7 +5950,7 @@ of resource

web_view

-

the WebKitWebView on which the signal is emitted

+

the WebKitWebView on which the signal is emitted

  @@ -5993,15 +5977,15 @@ of resource

The “run-as-modal” signal

void
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)

Emitted after “ready-to-show” on the newly -created WebKitWebView when JavaScript code calls +created WebKitWebView when JavaScript code calls window.showModalDialog. The purpose of this signal is to allow the client application to prepare the new view to behave as modal. Once the signal is emitted a new main loop will be run to block user interaction in the parent -WebKitWebView until the new dialog is closed.

+WebKitWebView until the new dialog is closed.

Parameters

@@ -6013,7 +5997,7 @@ main loop will be run to block user interaction in the parent - + @@ -6030,7 +6014,7 @@ main loop will be run to block user interaction in the parent

The “run-color-chooser” signal

gboolean
-user_function (WebKitWebView             *web_view,
+user_function (WebKitWebView             *web_view,
                WebKitColorChooserRequest *request,
                gpointer                   user_data)

This signal is emitted when the user interacts with a <input @@ -6056,7 +6040,7 @@ reference count of the request.

- + @@ -6084,7 +6068,7 @@ reference count of the request.

The “run-file-chooser” signal

gboolean
-user_function (WebKitWebView            *web_view,
+user_function (WebKitWebView            *web_view,
                WebKitFileChooserRequest *request,
                gpointer                  user_data)

This signal is emitted when the user interacts with a <input @@ -6109,7 +6093,7 @@ argument.

- + @@ -6136,7 +6120,7 @@ argument.

The “script-dialog” signal

gboolean
-user_function (WebKitWebView      *web_view,
+user_function (WebKitWebView      *web_view,
                WebKitScriptDialog *dialog,
                gpointer            user_data)

Emitted when JavaScript code calls window.alert, @@ -6178,7 +6162,7 @@ closed,

- + @@ -6205,8 +6189,8 @@ closed,

The “show-notification” signal

gboolean
-user_function (WebKitWebView      *web_view,
-               WebKitNotification *notification,
+user_function (WebKitWebView      *web_view,
+               WebKitNotification *notification,
                gpointer            user_data)

This signal is emitted when a notification should be presented to the user. The notification @@ -6225,12 +6209,12 @@ support for it.

- + - + @@ -6252,7 +6236,7 @@ support for it.

The “show-option-menu” signal

gboolean
-user_function (WebKitWebView    *web_view,
+user_function (WebKitWebView    *web_view,
                WebKitOptionMenu *menu,
                GdkEvent         *event,
                GdkRectangle     *rectangle,
@@ -6262,7 +6246,7 @@ user_function (menu
  to get
 the details of all items that should be displayed. The area of the element in the
-WebKitWebView is given as rectangle
+WebKitWebView is given as rectangle
  parameter, it can be used to position the
 menu. If this was triggered by a user interaction, like a mouse click,
 event
@@ -6281,7 +6265,7 @@ To handle this signal asynchronously you should keep a ref of the 

web_view

-
+ @@ -6319,7 +6303,7 @@ To handle this signal asynchronously you should keep a ref of the

The “submit-form” signal

void
-user_function (WebKitWebView               *web_view,
+user_function (WebKitWebView               *web_view,
                WebKitFormSubmissionRequest *request,
                gpointer                     user_data)

This signal is emitted when a form is about to be submitted. The request @@ -6345,7 +6329,7 @@ form has not been submitted,

web_view

-
+ @@ -6367,7 +6351,7 @@ form has not been submitted,

The “web-process-crashed” signal

gboolean
-user_function (WebKitWebView *web_view,
+user_function (WebKitWebView *web_view,
                gpointer       user_data)

This signal is emitted when the web process crashes.

@@ -6385,7 +6369,7 @@ user_function (

web_view

-
+ @@ -6407,7 +6391,7 @@ user_function (

The “web-process-terminated” signal

void
-user_function (WebKitWebView                    *web_view,
+user_function (WebKitWebView                    *web_view,
                WebKitWebProcessTerminationReason reason,
                gpointer                          user_data)

This signal is emitted when the web process terminates abnormally due @@ -6424,7 +6408,7 @@ to reason

- + @@ -6446,6 +6430,6 @@ to reason +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebsiteData.html b/Documentation/webkit2gtk-4.0/html/WebKitWebsiteData.html index 14269bde9be50046f867555bf89efb196f2c6e39..500e2945425fcc18298d4b170a80ab054231e28f 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebsiteData.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebsiteData.html @@ -3,12 +3,12 @@ WebKitWebsiteData: WebKitGTK Reference Manual - + - + @@ -103,7 +103,7 @@

Object Hierarchy

-
    GBoxed
+
    GBoxed
     ╰── WebKitWebsiteData
 
@@ -368,6 +368,13 @@ for the given types
+ + + + + + + + + @@ -186,48 +193,54 @@ - + - + - + + + + + + - + - + - + - + - +

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

web_view

the WebKitWebView

the WebKitWebView

 

notification

a WebKitNotification

a WebKitNotification

 

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

the WebKitWebView on which the signal is emitted

the WebKitWebView on which the signal is emitted

 

the WebKitWebView

the WebKitWebView

 

web_view

the WebKitWebView

the WebKitWebView

 
 

WEBKIT_WEBSITE_DATA_HSTS_CACHE

+

HSTS cache. Since 2.26

+
 

WEBKIT_WEBSITE_DATA_ALL

All types.

@@ -386,6 +393,6 @@ for the given types +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWebsiteDataManager.html b/Documentation/webkit2gtk-4.0/html/WebKitWebsiteDataManager.html index 4b582d481306e47ef668d03a0920d62f2dfed3ee..bc52844290ca77d30aed5c5d8bae8c9a288d5e82 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWebsiteDataManager.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWebsiteDataManager.html @@ -3,12 +3,12 @@ WebKitWebsiteDataManager: WebKitGTK Reference Manual - + - + @@ -115,6 +115,13 @@
const gchar * + +webkit_website_data_manager_get_hsts_cache_directory () +
WebKitCookieManager * gchar * base-cache-directoryRead / Write / Construct OnlyRead / Write / Construct Only
gchar * base-data-directoryRead / Write / Construct OnlyRead / Write / Construct Only
gchar * disk-cache-directoryRead / Write / Construct OnlyRead / Write / Construct Only
+gchar *hsts-cache-directoryRead / Write / Construct Only
gchar * indexeddb-directoryRead / Write / Construct OnlyRead / Write / Construct Only
gboolean is-ephemeralRead / Write / Construct OnlyRead / Write / Construct Only
gchar * local-storage-directoryRead / Write / Construct OnlyRead / Write / Construct Only
gchar * offline-application-cache-directoryRead / Write / Construct OnlyRead / Write / Construct Only
gchar * websql-directoryRead / Write / Construct OnlyRead / Write / Construct Only
@@ -358,7 +371,7 @@ webkit_website_data_manager_is_ephemeral

Returns

TRUE if manager -is epheral or FALSE otherwise.

+is ephemeral or FALSE otherwise.

Since: 2.16

@@ -580,6 +593,36 @@ is ephemeral.


+

webkit_website_data_manager_get_hsts_cache_directory ()

+
const gchar *
+webkit_website_data_manager_get_hsts_cache_directory
+                               (WebKitWebsiteDataManager *manager);
+

Get the “hsts-cache-directory” property.

+
+

Parameters

+
+++++ + + + + + +

manager

a WebKitWebsiteDataManager

 
+
+
+

Returns

+

the directory where the HSTS cache is stored or NULL if manager +is ephemeral.

+

[allow-none]

+
+

Since: 2.26

+
+
+

webkit_website_data_manager_get_cookie_manager ()

WebKitCookieManager *
 webkit_website_data_manager_get_cookie_manager
@@ -931,8 +974,7 @@ webkit_website_data_manager_clear_finish
 
  “base-cache-directory”     gchar *

The base directory for Website cache. This is used as a base directory for any Website cache when no specific cache directory has been provided.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -942,8 +984,7 @@ for any Website cache when no specific cache directory has been provided.

  “base-data-directory”      gchar *

The base directory for Website data. This is used as a base directory for any Website data when no specific data directory has been provided.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -952,18 +993,25 @@ for any Website data when no specific data directory has been provided.

The “disk-cache-directory” property

  “disk-cache-directory”     gchar *

The directory where HTTP disk cache will be stored.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10


+

The “hsts-cache-directory” property

+
  “hsts-cache-directory”     gchar *
+

The directory where the HTTP Strict-Transport-Security (HSTS) cache will be stored.

+

Flags: Read / Write / Construct Only

+

Default value: NULL

+

Since: 2.26

+
+
+

The “indexeddb-directory” property

  “indexeddb-directory”      gchar *

The directory where IndexedDB databases will be stored.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -975,8 +1023,7 @@ for any Website data when no specific data directory has been provided.

handles all websites data as non-persistent, and nothing will be written to the client storage. Note that if you create an ephemeral WebKitWebsiteDataManager all other construction parameters to configure data directories will be ignored.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: FALSE

Since: 2.16

@@ -985,8 +1032,7 @@ parameters to configure data directories will be ignored.

The “local-storage-directory” property

  “local-storage-directory”  gchar *

The directory where local storage data will be stored.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -995,8 +1041,7 @@ parameters to configure data directories will be ignored.

The “offline-application-cache-directory” property

  “offline-application-cache-directory” gchar *

The directory where offline web application cache will be stored.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -1009,8 +1054,7 @@ parameters to configure data directories will be ignored.

WebKitWebsiteDataManager:websql-directory has been deprecated since version 2.24. and should not be used in newly-written code.

WebSQL is no longer supported. Use IndexedDB instead.

-

Owner: WebKitWebsiteDataManager

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: NULL

Since: 2.10

@@ -1021,6 +1065,6 @@ parameters to configure data directories will be ignored.

+
Generated by GTK-Doc V1.29.1
\ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/WebKitWindowProperties.html b/Documentation/webkit2gtk-4.0/html/WebKitWindowProperties.html index 1592fd3324e9c40d7a24cc726c29d56f86dcca8e..e8c48623d6f49dd46b1c7146b11ce37377f85af3 100644 --- a/Documentation/webkit2gtk-4.0/html/WebKitWindowProperties.html +++ b/Documentation/webkit2gtk-4.0/html/WebKitWindowProperties.html @@ -3,12 +3,12 @@ WebKitWindowProperties: WebKitGTK Reference Manual - + - + @@ -29,7 +29,7 @@

WebKitWindowProperties

-

WebKitWindowProperties — Window properties of a WebKitWebView

+

WebKitWindowProperties — Window properties of a WebKitWebView

@@ -120,43 +120,43 @@ gboolean fullscreen -Read / Write / Construct Only +Read / Write / Construct Only GdkRectangle * geometry -Read / Write / Construct Only +Read / Write / Construct Only gboolean locationbar-visible -Read / Write / Construct Only +Read / Write / Construct Only gboolean menubar-visible -Read / Write / Construct Only +Read / Write / Construct Only gboolean resizable -Read / Write / Construct Only +Read / Write / Construct Only gboolean scrollbars-visible -Read / Write / Construct Only +Read / Write / Construct Only gboolean statusbar-visible -Read / Write / Construct Only +Read / Write / Construct Only gboolean toolbar-visible -Read / Write / Construct Only +Read / Write / Construct Only
@@ -182,11 +182,11 @@

Description

-

The content of a WebKitWebView can request to change certain +

The content of a WebKitWebView can request to change certain properties of the window containing the view. This can include the x, y position of the window, the width and height but also if a toolbar, scrollbar, statusbar, locationbar should be visible to the user, -and the request to show the WebKitWebView fullscreen.

+and the request to show the WebKitWebView fullscreen.

The “ready-to-show” signal handler is the proper place to apply the initial window properties. Then you can monitor the WebKitWindowProperties by connecting to ::notify signal.

@@ -236,48 +236,48 @@ to apply the initial window properties. Then you can monitor the 40 41 42 -
static void ready_to_show_cb (WebKitWebView *web_view, gpointer user_data)
-{
-    GtkWidget *window;
-    WebKitWindowProperties *window_properties;
-    gboolean visible;
+        
static void ready_to_show_cb (WebKitWebView *web_view, gpointer user_data)
+{
+    GtkWidget *window;
+    WebKitWindowProperties *window_properties;
+    gboolean visible;
 
-    /* Create the window to contain the WebKitWebView */
-    window = browser_window_new ();
-    gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (web_view));
-    gtk_widget_show (GTK_WIDGET (web_view));
+    /* Create the window to contain the WebKitWebView */
+    window = browser_window_new ();
+    gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (web_view));
+    gtk_widget_show (GTK_WIDGET (web_view));
 
-    /* Get the WebKitWindowProperties of the web view and monitor it */
-    window_properties = webkit_web_view_get_window_properties (web_view);
-    g_signal_connect (window_properties, "notify::geometry",
-                      G_CALLBACK (window_geometry_changed), window);
-    g_signal_connect (window_properties, "notify::toolbar-visible",
-                      G_CALLBACK (window_toolbar_visibility_changed), window);
-    g_signal_connect (window_properties, "notify::menubar-visible",
-                      G_CALLBACK (window_menubar_visibility_changed), window);
-    ....
+    /* Get the WebKitWindowProperties of the web view and monitor it */
+    window_properties = webkit_web_view_get_window_properties (web_view);
+    g_signal_connect (window_properties, "notify::geometry",
+                      G_CALLBACK (window_geometry_changed), window);
+    g_signal_connect (window_properties, "notify::toolbar-visible",
+                      G_CALLBACK (window_toolbar_visibility_changed), window);
+    g_signal_connect (window_properties, "notify::menubar-visible",
+                      G_CALLBACK (window_menubar_visibility_changed), window);
+    ....
 
-    /* Apply the window properties before showing the window */
-    visible = webkit_window_properties_get_toolbar_visible (window_properties);
-    browser_window_set_toolbar_visible (BROWSER_WINDOW (window), visible);
-    visible = webkit_window_properties_get_menubar_visible (window_properties);
-    browser_window_set_menubar_visible (BROWSER_WINDOW (window), visible);
-    ....
+    /* Apply the window properties before showing the window */
+    visible = webkit_window_properties_get_toolbar_visible (window_properties);
+    browser_window_set_toolbar_visible (BROWSER_WINDOW (window), visible);
+    visible = webkit_window_properties_get_menubar_visible (window_properties);
+    browser_window_set_menubar_visible (BROWSER_WINDOW (window), visible);
+    ....
 
-    if (webkit_window_properties_get_fullscreen (window_properties)) {
-        gtk_window_fullscreen (GTK_WINDOW (window));
-    } else {
-        GdkRectangle geometry;
+    if (webkit_window_properties_get_fullscreen (window_properties)) {
+        gtk_window_fullscreen (GTK_WINDOW (window));
+    } else {
+        GdkRectangle geometry;
 
-        gtk_window_set_resizable (GTK_WINDOW (window),
-                                  webkit_window_properties_get_resizable (window_properties));
-        webkit_window_properties_get_geometry (window_properties, &geometry);
-        gtk_window_move (GTK_WINDOW (window), geometry.x, geometry.y);
-        gtk_window_resize (GTK_WINDOW (window), geometry.width, geometry.height);
-    }
+        gtk_window_set_resizable (GTK_WINDOW (window),
+                                  webkit_window_properties_get_resizable (window_properties));
+        webkit_window_properties_get_geometry (window_properties, &geometry);
+        gtk_window_move (GTK_WINDOW (window), geometry.x, geometry.y);
+        gtk_window_resize (GTK_WINDOW (window), geometry.width, geometry.height);
+    }
 
-    gtk_widget_show (window);
-}
+ gtk_widget_show (window); +}
@@ -518,8 +518,7 @@ webkit_window_properties_get_fullscreen

The “fullscreen” property

  “fullscreen”               gboolean

Whether window will be displayed fullscreen.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: FALSE


@@ -527,16 +526,14 @@ webkit_window_properties_get_fullscreen

The “geometry” property

  “geometry”                 GdkRectangle *

The size and position of the window on the screen.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only


The “locationbar-visible” property

  “locationbar-visible”      gboolean

Whether the locationbar should be visible for the window.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE


@@ -544,8 +541,7 @@ webkit_window_properties_get_fullscreen

The “menubar-visible” property

  “menubar-visible”          gboolean

Whether the menubar should be visible for the window.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE


@@ -553,8 +549,7 @@ webkit_window_properties_get_fullscreen

The “resizable” property

  “resizable”                gboolean

Whether the window can be resized.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE


@@ -562,8 +557,7 @@ webkit_window_properties_get_fullscreen

The “scrollbars-visible” property

  “scrollbars-visible”       gboolean

Whether the scrollbars should be visible for the window.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE


@@ -571,8 +565,7 @@ webkit_window_properties_get_fullscreen

The “statusbar-visible” property

  “statusbar-visible”        gboolean

Whether the statusbar should be visible for the window.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE


@@ -580,8 +573,7 @@ webkit_window_properties_get_fullscreen

The “toolbar-visible” property

  “toolbar-visible”          gboolean

Whether the toolbar should be visible for the window.

-

Owner: WebKitWindowProperties

-

Flags: Read / Write / Construct Only

+

Flags: Read / Write / Construct Only

Default value: TRUE

@@ -591,6 +583,6 @@ webkit_window_properties_get_fullscreen +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/annotation-glossary.html b/Documentation/webkit2gtk-4.0/html/annotation-glossary.html index 9ab2be4c269f015b5d7b31bbdc19c6647b66b02f..436fdaaf377c2246c94f13b73d5b0b1c18123996 100644 --- a/Documentation/webkit2gtk-4.0/html/annotation-glossary.html +++ b/Documentation/webkit2gtk-4.0/html/annotation-glossary.html @@ -3,11 +3,11 @@ Annotation Glossary: WebKitGTK Reference Manual - + - - + + @@ -27,7 +27,7 @@ T
Home -Prev +Prev
@@ -66,8 +66,10 @@

Free data after the code is done.

transfer none

Don't free data after the code is done.

+
type
+

Override the parsed C type with given type.

+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-10.html b/Documentation/webkit2gtk-4.0/html/api-index-2-10.html new file mode 100644 index 0000000000000000000000000000000000000000..aaa7aca32609664e4269cbb56a05ab0cd9de8cb9 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-10.html @@ -0,0 +1,175 @@ + + + + +Index of new symbols in 2.10: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.10

+

E

+
+WEBKIT_EDITING_COMMAND_CREATE_LINK, macro in WebKitWebView +
+
+
+WEBKIT_EDITING_COMMAND_INSERT_IMAGE, macro in WebKitWebView +
+
+
+WebKitEditorState:typing-attributes, object property in WebKitEditorState +
+
+
+WebKitEditorTypingAttributes, enum in WebKitEditorState +
+
+
+webkit_editor_state_get_typing_attributes, function in WebKitEditorState +
+
+

I

+
+webkit_install_missing_media_plugins_permission_request_get_description, function in WebKitInstallMissingMediaPluginsPermissionRequest +
+
+

S

+
+WebKitSettings:allow-file-access-from-file-urls, object property in WebKitSettings +
+
+
+webkit_settings_get_allow_file_access_from_file_urls, function in WebKitSettings +
+
+
+webkit_settings_set_allow_file_access_from_file_urls, function in WebKitSettings +
+
+

W

+
+WebKitWebContext:website-data-manager, object property in WebKitWebContext +
+
+
+WebKitWebEditor::selection-changed, object signal in WebKitWebEditor +
+
+
+WebKitWebsiteDataManager:base-cache-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:base-data-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:disk-cache-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:indexeddb-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:local-storage-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:offline-application-cache-directory, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataManager:websql-directory, object property in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_base_cache_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_base_data_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_disk_cache_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_indexeddb_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_local_storage_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_offline_application_cache_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_websql_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_new, function in WebKitWebsiteDataManager +
+
+
+webkit_web_context_get_website_data_manager, function in WebKitWebContext +
+
+
+webkit_web_context_get_web_process_count_limit, function in WebKitWebContext +
+
+
+webkit_web_context_new_with_website_data_manager, function in WebKitWebContext +
+
+
+webkit_web_context_set_web_process_count_limit, function in WebKitWebContext +
+
+
+webkit_web_editor_get_page, function in WebKitWebEditor +
+
+
+webkit_web_page_get_editor, function in WebKitWebPage +
+
+
+webkit_web_view_execute_editing_command_with_argument, function in WebKitWebView +
+
+
+webkit_web_view_get_editor_state, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-12.html b/Documentation/webkit2gtk-4.0/html/api-index-2-12.html new file mode 100644 index 0000000000000000000000000000000000000000..5a9ad735444127429a1fa6e9e6356684a1233618 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-12.html @@ -0,0 +1,119 @@ + + + + +Index of new symbols in 2.12: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-14.html b/Documentation/webkit2gtk-4.0/html/api-index-2-14.html new file mode 100644 index 0000000000000000000000000000000000000000..8d9b38e24d00bfaa860c91a0acd29cf0671ec53e --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-14.html @@ -0,0 +1,42 @@ + + + + +Index of new symbols in 2.14: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-16.html b/Documentation/webkit2gtk-4.0/html/api-index-2-16.html new file mode 100644 index 0000000000000000000000000000000000000000..005af8694f2130130c218d1eca2e7d86b806ba4a --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-16.html @@ -0,0 +1,254 @@ + + + + +Index of new symbols in 2.16: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.16

+

H

+
+WebKitHardwareAccelerationPolicy, enum in WebKitSettings +
+
+

N

+
+WebKitNetworkProxyMode, enum in WebKitWebContext +
+
+
+webkit_network_proxy_settings_add_proxy_for_scheme, function in WebKitNetworkProxySettings +
+
+
+webkit_network_proxy_settings_copy, function in WebKitNetworkProxySettings +
+
+
+webkit_network_proxy_settings_free, function in WebKitNetworkProxySettings +
+
+
+webkit_network_proxy_settings_new, function in WebKitNetworkProxySettings +
+
+
+WebKitNotification:tag, object property in WebKitNotification +
+
+
+webkit_notification_get_tag, function in WebKitNotification +
+
+

P

+
+WebKitPrintCustomWidget::apply, object signal in WebKitPrintCustomWidget +
+
+
+WebKitPrintCustomWidget::update, object signal in WebKitPrintCustomWidget +
+
+
+WebKitPrintCustomWidget:title, object property in WebKitPrintCustomWidget +
+
+
+WebKitPrintCustomWidget:widget, object property in WebKitPrintCustomWidget +
+
+
+WebKitPrintOperation::create-custom-widget, object signal in WebKitPrintOperation +
+
+
+webkit_print_custom_widget_get_title, function in WebKitPrintCustomWidget +
+
+
+webkit_print_custom_widget_get_widget, function in WebKitPrintCustomWidget +
+
+
+webkit_print_custom_widget_new, function in WebKitPrintCustomWidget +
+
+

S

+
+webkit_security_origin_get_host, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_get_port, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_get_protocol, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_is_opaque, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_new, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_new_for_uri, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_ref, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_to_string, function in WebKitSecurityOrigin +
+
+
+webkit_security_origin_unref, function in WebKitSecurityOrigin +
+
+
+WebKitSettings:hardware-acceleration-policy, object property in WebKitSettings +
+
+
+webkit_settings_get_hardware_acceleration_policy, function in WebKitSettings +
+
+
+webkit_settings_set_hardware_acceleration_policy, function in WebKitSettings +
+
+

W

+
+WebKitWebContext::initialize-notification-permissions, object signal in WebKitWebContext +
+
+
+WebKitWebPage::form-controls-associated, object signal in WebKitWebPage +
+
+
+WebKitWebsiteDataManager:is-ephemeral, object property in WebKitWebsiteDataManager +
+
+
+WebKitWebsiteDataTypes, enum in WebKitWebsiteData +
+
+
+webkit_website_data_get_name, function in WebKitWebsiteData +
+
+
+webkit_website_data_get_size, function in WebKitWebsiteData +
+
+
+webkit_website_data_get_types, function in WebKitWebsiteData +
+
+
+webkit_website_data_manager_clear, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_clear_finish, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_fetch, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_fetch_finish, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_cookie_manager, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_is_ephemeral, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_new_ephemeral, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_remove, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_remove_finish, function in WebKitWebsiteDataManager +
+
+
+webkit_website_data_ref, function in WebKitWebsiteData +
+
+
+webkit_website_data_unref, function in WebKitWebsiteData +
+
+
+WebKitWebView:is-ephemeral, object property in WebKitWebView +
+
+
+webkit_web_context_initialize_notification_permissions, function in WebKitWebContext +
+
+
+webkit_web_context_is_ephemeral, function in WebKitWebContext +
+
+
+webkit_web_context_new_ephemeral, function in WebKitWebContext +
+
+
+webkit_web_context_set_network_proxy_settings, function in WebKitWebContext +
+
+
+webkit_web_view_get_website_data_manager, function in WebKitWebView +
+
+
+webkit_web_view_is_ephemeral, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-18.html b/Documentation/webkit2gtk-4.0/html/api-index-2-18.html new file mode 100644 index 0000000000000000000000000000000000000000..26eae40fdb66d31bc0145827cdf694314b631302 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-18.html @@ -0,0 +1,175 @@ + + + + +Index of new symbols in 2.18: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.18

+

A

+
+webkit_application_info_get_name, function in WebKitApplicationInfo +
+
+
+webkit_application_info_get_version, function in WebKitApplicationInfo +
+
+
+webkit_application_info_new, function in WebKitApplicationInfo +
+
+
+webkit_application_info_ref, function in WebKitApplicationInfo +
+
+
+webkit_application_info_set_name, function in WebKitApplicationInfo +
+
+
+webkit_application_info_set_version, function in WebKitApplicationInfo +
+
+
+webkit_application_info_unref, function in WebKitApplicationInfo +
+
+
+WebKitAutomationSession::create-web-view, object signal in WebKitAutomationSession +
+
+
+WebKitAutomationSession:id, object property in WebKitAutomationSession +
+
+
+webkit_automation_session_get_application_info, function in WebKitAutomationSession +
+
+
+webkit_automation_session_get_id, function in WebKitAutomationSession +
+
+
+webkit_automation_session_set_application_info, function in WebKitAutomationSession +
+
+

C

+
+webkit_context_menu_item_get_gaction, function in WebKitContextMenuItem +
+
+
+webkit_context_menu_item_new_from_gaction, function in WebKitContextMenuItem +
+
+

O

+
+WebKitOptionMenu::close, object signal in WebKitOptionMenu +
+
+
+webkit_option_menu_activate_item, function in WebKitOptionMenu +
+
+
+webkit_option_menu_close, function in WebKitOptionMenu +
+
+
+webkit_option_menu_get_item, function in WebKitOptionMenu +
+
+
+webkit_option_menu_get_n_items, function in WebKitOptionMenu +
+
+
+webkit_option_menu_item_copy, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_free, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_get_label, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_get_tooltip, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_is_enabled, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_is_group_child, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_is_group_label, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_item_is_selected, function in WebKitOptionMenuItem +
+
+
+webkit_option_menu_select_item, function in WebKitOptionMenu +
+
+

W

+
+WebKitWebContext::automation-started, object signal in WebKitWebContext +
+
+
+WebKitWebView::show-option-menu, object signal in WebKitWebView +
+
+
+WebKitWebView:is-controlled-by-automation, object property in WebKitWebView +
+
+
+webkit_web_context_is_automation_allowed, function in WebKitWebContext +
+
+
+webkit_web_context_set_automation_allowed, function in WebKitWebContext +
+
+
+webkit_web_view_is_controlled_by_automation, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-2.html b/Documentation/webkit2gtk-4.0/html/api-index-2-2.html new file mode 100644 index 0000000000000000000000000000000000000000..e3e1de44e7461e98467676fad049713dc73e19b6 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-2.html @@ -0,0 +1,197 @@ + + + + +Index of new symbols in 2.2: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.2

+

A

+
+WebKitAuthenticationRequest::cancelled, object signal in WebKitAuthenticationRequest +
+
+
+WebKitAuthenticationScheme, enum in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_authenticate, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_cancel, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_can_save_credentials, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_get_host, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_get_port, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_get_proposed_credential, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_get_realm, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_get_scheme, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_is_for_proxy, function in WebKitAuthenticationRequest +
+
+
+webkit_authentication_request_is_retry, function in WebKitAuthenticationRequest +
+
+

C

+
+WebKitCredentialPersistence, enum in WebKitAuthenticationRequest +
+
+
+webkit_credential_copy, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_free, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_get_password, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_get_persistence, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_get_username, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_has_password, function in WebKitAuthenticationRequest +
+
+
+webkit_credential_new, function in WebKitAuthenticationRequest +
+
+

F

+
+webkit_frame_get_javascript_context_for_script_world, function in WebKitFrame +
+
+
+webkit_frame_get_javascript_global_context, function in WebKitFrame +
+
+
+webkit_frame_get_uri, function in WebKitFrame +
+
+
+webkit_frame_is_main_frame, function in WebKitFrame +
+
+

S

+
+WebKitScriptWorld::window-object-cleared, object signal in WebKitScriptWorld +
+
+
+webkit_script_world_get_default, function in WebKitScriptWorld +
+
+
+webkit_script_world_new, function in WebKitScriptWorld +
+
+
+WebKitSettings:enable-accelerated-2d-canvas, object property in WebKitSettings +
+
+
+WebKitSettings:enable-write-console-messages-to-stdout, object property in WebKitSettings +
+
+
+webkit_settings_get_enable_accelerated_2d_canvas, function in WebKitSettings +
+
+
+webkit_settings_get_enable_spatial_navigation, function in WebKitSettings +
+
+
+webkit_settings_get_enable_write_console_messages_to_stdout, function in WebKitSettings +
+
+
+webkit_settings_set_enable_accelerated_2d_canvas, function in WebKitSettings +
+
+
+webkit_settings_set_enable_spatial_navigation, function in WebKitSettings +
+
+
+webkit_settings_set_enable_write_console_messages_to_stdout, function in WebKitSettings +
+
+

U

+
+webkit_uri_scheme_request_finish_error, function in WebKitURISchemeRequest +
+
+

W

+
+WebKitWebView::authenticate, object signal in WebKitWebView +
+
+
+webkit_web_page_get_main_frame, function in WebKitWebPage +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-20.html b/Documentation/webkit2gtk-4.0/html/api-index-2-20.html new file mode 100644 index 0000000000000000000000000000000000000000..7d70d2749dd3f03ed250e455d5092e5c9f67e154 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-20.html @@ -0,0 +1,133 @@ + + + + +Index of new symbols in 2.20: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.20

+

C

+
+webkit_cookie_manager_add_cookie, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_add_cookie_finish, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_delete_cookie, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_delete_cookie_finish, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_get_cookies, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_get_cookies_finish, function in WebKitCookieManager +
+
+

E

+
+webkit_editor_state_is_copy_available, function in WebKitEditorState +
+
+
+webkit_editor_state_is_cut_available, function in WebKitEditorState +
+
+
+webkit_editor_state_is_paste_available, function in WebKitEditorState +
+
+
+webkit_editor_state_is_redo_available, function in WebKitEditorState +
+
+
+webkit_editor_state_is_undo_available, function in WebKitEditorState +
+
+

F

+
+WebKitFormSubmissionStep, enum in WebKitWebPage +
+
+
+webkit_form_submission_request_list_text_fields, function in WebKitFormSubmissionRequest +
+
+

N

+
+webkit_navigation_action_is_redirect, function in WebKitNavigationAction +
+
+

S

+
+WebKitSettings:enable-encrypted-media, object property in WebKitSettings +
+
+
+webkit_settings_font_size_to_pixels, function in WebKitSettings +
+
+
+webkit_settings_font_size_to_points, function in WebKitSettings +
+
+
+webkit_settings_get_enable_encrypted_media, function in WebKitSettings +
+
+
+webkit_settings_set_enable_encrypted_media, function in WebKitSettings +
+
+

W

+
+WebKitWebPage::will-submit-form, object signal in WebKitWebPage +
+
+
+WebKitWebProcessTerminationReason, enum in WebKitWebView +
+
+
+WebKitWebView::web-process-terminated, object signal in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-22.html b/Documentation/webkit2gtk-4.0/html/api-index-2-22.html new file mode 100644 index 0000000000000000000000000000000000000000..24567490b0deb8c4e82f5401f81048cdc99a52dd --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-22.html @@ -0,0 +1,106 @@ + + + + +Index of new symbols in 2.22: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-24.html b/Documentation/webkit2gtk-4.0/html/api-index-2-24.html new file mode 100644 index 0000000000000000000000000000000000000000..c10525d746d96a8b19322f42bb25637fc16c7d7a --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-24.html @@ -0,0 +1,157 @@ + + + + +Index of new symbols in 2.24: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.24

+

S

+
+webkit_script_dialog_close, function in WebKitWebView +
+
+
+webkit_script_dialog_ref, function in WebKitWebView +
+
+
+webkit_script_dialog_unref, function in WebKitWebView +
+
+
+WebKitSettings:enable-back-forward-navigation-gestures, object property in WebKitSettings +
+
+
+WebKitSettings:enable-javascript-markup, object property in WebKitSettings +
+
+
+WebKitSettings:enable-mock-capture-devices, object property in WebKitSettings +
+
+
+webkit_settings_get_enable_back_forward_navigation_gestures, function in WebKitSettings +
+
+
+webkit_settings_get_enable_javascript_markup, function in WebKitSettings +
+
+
+webkit_settings_get_enable_mock_capture_devices, function in WebKitSettings +
+
+
+webkit_settings_set_enable_back_forward_navigation_gestures, function in WebKitSettings +
+
+
+webkit_settings_set_enable_javascript_markup, function in WebKitSettings +
+
+

U

+
+webkit_uri_for_display, function in WebKitURIUtilities +
+
+
+WebKitUserContentFilterError, enum in WebKitError +
+
+
+WebKitUserContentFilterStore:path, object property in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_get_identifier, function in WebKitUserContent +
+
+
+webkit_user_content_filter_ref, function in WebKitUserContent +
+
+
+webkit_user_content_filter_store_fetch_identifiers, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_fetch_identifiers_finish, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_get_path, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_load, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_load_finish, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_new, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_remove, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_remove_finish, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_save, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_save_finish, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_save_from_file, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_store_save_from_file_finish, function in WebKitUserContentFilterStore +
+
+
+webkit_user_content_filter_unref, function in WebKitUserContent +
+
+
+webkit_user_content_manager_add_filter, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_remove_all_filters, function in WebKitUserContentManager +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-26.html b/Documentation/webkit2gtk-4.0/html/api-index-2-26.html new file mode 100644 index 0000000000000000000000000000000000000000..3f63f8ef0d39e19edb20fc9d9a8cb088d137aa83 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-26.html @@ -0,0 +1,150 @@ + + + + +Index of new symbols in 2.26: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.26

+

F

+
+webkit_frame_get_id, function in WebKitFrame +
+
+

G

+
+WebKitGeolocationManager::start, object signal in Geolocation manager +
+
+
+WebKitGeolocationManager::stop, object signal in Geolocation manager +
+
+
+WebKitGeolocationManager:enable-high-accuracy, object property in Geolocation manager +
+
+
+WebKitGeolocationPosition, struct in Geolocation manager +
+
+
+webkit_geolocation_manager_failed, function in Geolocation manager +
+
+
+webkit_geolocation_manager_get_enable_high_accuracy, function in Geolocation manager +
+
+
+webkit_geolocation_manager_update_position, function in Geolocation manager +
+
+
+webkit_geolocation_position_copy, function in Geolocation manager +
+
+
+webkit_geolocation_position_free, function in Geolocation manager +
+
+
+webkit_geolocation_position_new, function in Geolocation manager +
+
+
+webkit_geolocation_position_set_altitude, function in Geolocation manager +
+
+
+webkit_geolocation_position_set_altitude_accuracy, function in Geolocation manager +
+
+
+webkit_geolocation_position_set_heading, function in Geolocation manager +
+
+
+webkit_geolocation_position_set_speed, function in Geolocation manager +
+
+
+webkit_geolocation_position_set_timestamp, function in Geolocation manager +
+
+

S

+
+WebKitSettings:enable-media, object property in WebKitSettings +
+
+
+webkit_settings_get_enable_media, function in WebKitSettings +
+
+
+webkit_settings_set_enable_media, function in WebKitSettings +
+
+

U

+
+webkit_user_content_manager_remove_filter_by_id, function in WebKitUserContentManager +
+
+

W

+
+WebKitWebPage::form-controls-associated-for-frame, object signal in WebKitWebPage +
+
+
+WebKitWebsiteDataManager:hsts-cache-directory, object property in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_hsts_cache_directory, function in WebKitWebsiteDataManager +
+
+
+webkit_web_context_add_path_to_sandbox, function in WebKitWebContext +
+
+
+webkit_web_context_get_geolocation_manager, function in WebKitWebContext +
+
+
+webkit_web_context_get_sandbox_enabled, function in WebKitWebContext +
+
+
+webkit_web_context_set_sandbox_enabled, function in WebKitWebContext +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-4.html b/Documentation/webkit2gtk-4.0/html/api-index-2-4.html new file mode 100644 index 0000000000000000000000000000000000000000..d0bffc97bcf8bf50eb2217a687ecba721c62ebac --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-4.html @@ -0,0 +1,107 @@ + + + + +Index of new symbols in 2.4: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-6.html b/Documentation/webkit2gtk-4.0/html/api-index-2-6.html new file mode 100644 index 0000000000000000000000000000000000000000..a6eec366e4c8cd03f8846a654f30d964e4adbb56 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-6.html @@ -0,0 +1,183 @@ + + + + +Index of new symbols in 2.6: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.6

+

D

+
+WebKitDownload:allow-overwrite, object property in WebKitDownload +
+
+
+webkit_download_get_allow_overwrite, function in WebKitDownload +
+
+
+webkit_download_set_allow_overwrite, function in WebKitDownload +
+
+

N

+
+WebKitNavigationPolicyDecision:navigation-action, object property in WebKitNavigationPolicyDecision +
+
+
+webkit_navigation_action_copy, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_free, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_get_modifiers, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_get_mouse_button, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_get_navigation_type, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_get_request, function in WebKitNavigationAction +
+
+
+webkit_navigation_action_is_user_gesture, function in WebKitNavigationAction +
+
+
+webkit_navigation_policy_decision_get_navigation_action, function in WebKitNavigationPolicyDecision +
+
+

U

+
+WebKitURIResponse:http-headers, object property in WebKitURIResponse +
+
+
+webkit_uri_response_get_http_headers, function in WebKitURIResponse +
+
+
+WebKitUserContentInjectedFrames, enum in WebKitUserContent +
+
+
+WebKitUserScriptInjectionTime, enum in WebKitUserContent +
+
+
+WebKitUserStyleLevel, enum in WebKitUserContent +
+
+
+webkit_user_content_manager_add_script, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_add_style_sheet, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_new, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_remove_all_scripts, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_remove_all_style_sheets, function in WebKitUserContentManager +
+
+
+webkit_user_script_new, function in WebKitUserContent +
+
+
+webkit_user_script_ref, function in WebKitUserContent +
+
+
+webkit_user_script_unref, function in WebKitUserContent +
+
+
+webkit_user_style_sheet_new, function in WebKitUserContent +
+
+
+webkit_user_style_sheet_ref, function in WebKitUserContent +
+
+
+webkit_user_style_sheet_unref, function in WebKitUserContent +
+
+

W

+
+WebKitWebView::load-failed-with-tls-errors, object signal in WebKitWebView +
+
+
+WebKitWebView:settings, object property in WebKitWebView +
+
+
+WebKitWebView:user-content-manager, object property in WebKitWebView +
+
+
+webkit_web_context_allow_tls_certificate_for_host, function in WebKitWebContext +
+
+
+webkit_web_view_get_user_content_manager, function in WebKitWebView +
+
+
+webkit_web_view_load_bytes, function in WebKitWebView +
+
+
+webkit_web_view_new_with_settings, function in WebKitWebView +
+
+
+webkit_web_view_new_with_user_content_manager, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-2-8.html b/Documentation/webkit2gtk-4.0/html/api-index-2-8.html new file mode 100644 index 0000000000000000000000000000000000000000..0508e775aa88f641a839660ac65deca503bf38a2 --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-2-8.html @@ -0,0 +1,190 @@ + + + + +Index of new symbols in 2.8: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of new symbols in 2.8

+

C

+
+WebKitColorChooserRequest::finished, object signal in WebKitColorChooserRequest +
+
+
+webkit_color_chooser_request_cancel, function in WebKitColorChooserRequest +
+
+
+webkit_color_chooser_request_finish, function in WebKitColorChooserRequest +
+
+
+webkit_color_chooser_request_get_element_rectangle, function in WebKitColorChooserRequest +
+
+
+webkit_color_chooser_request_get_rgba, function in WebKitColorChooserRequest +
+
+
+webkit_color_chooser_request_set_rgba, function in WebKitColorChooserRequest +
+
+
+webkit_context_menu_get_user_data, function in WebKitContextMenu +
+
+
+webkit_context_menu_set_user_data, function in WebKitContextMenu +
+
+

H

+
+webkit_hit_test_result_context_is_selection, function in WebKitHitTestResult +
+
+

N

+
+WebKitNotification::closed, object signal in WebKitNotification +
+
+
+WebKitNotification:body, object property in WebKitNotification +
+
+
+WebKitNotification:id, object property in WebKitNotification +
+
+
+WebKitNotification:title, object property in WebKitNotification +
+
+
+webkit_notification_close, function in WebKitNotification +
+
+
+webkit_notification_get_body, function in WebKitNotification +
+
+
+webkit_notification_get_id, function in WebKitNotification +
+
+
+webkit_notification_get_title, function in WebKitNotification +
+
+

U

+
+WebKitUserContentManager::script-message-received, object signal in WebKitUserContentManager +
+
+
+webkit_user_content_manager_register_script_message_handler, function in WebKitUserContentManager +
+
+
+webkit_user_content_manager_unregister_script_message_handler, function in WebKitUserContentManager +
+
+
+webkit_user_media_permission_is_for_audio_device, function in WebKitUserMediaPermissionRequest +
+
+
+webkit_user_media_permission_is_for_video_device, function in WebKitUserMediaPermissionRequest +
+
+

W

+
+WebKitWebContext:local-storage-directory, object property in WebKitWebContext +
+
+
+WebKitWebInspector:can-attach, object property in WebKitWebInspector +
+
+
+WebKitWebPage::context-menu, object signal in WebKitWebPage +
+
+
+WebKitWebResource::failed-with-tls-errors, object signal in WebKitWebResource +
+
+
+WebKitWebView::run-color-chooser, object signal in WebKitWebView +
+
+
+WebKitWebView::show-notification, object signal in WebKitWebView +
+
+
+WebKitWebView:editable, object property in WebKitWebView +
+
+
+WebKitWebView:is-playing-audio, object property in WebKitWebView +
+
+
+webkit_web_context_new, function in WebKitWebContext +
+
+
+webkit_web_hit_test_result_get_node, function in WebKitWebHitTestResult +
+
+
+webkit_web_inspector_get_can_attach, function in WebKitWebInspector +
+
+
+webkit_web_view_get_background_color, function in WebKitWebView +
+
+
+webkit_web_view_is_playing_audio, function in WebKitWebView +
+
+
+webkit_web_view_set_background_color, function in WebKitWebView +
+
+
+webkit_web_view_set_editable, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/api-index-deprecated.html b/Documentation/webkit2gtk-4.0/html/api-index-deprecated.html new file mode 100644 index 0000000000000000000000000000000000000000..dcf0ec90515ef3bc468802e65614cafaa7bc34bd --- /dev/null +++ b/Documentation/webkit2gtk-4.0/html/api-index-deprecated.html @@ -0,0 +1,169 @@ + + + + +Index of deprecated symbols: WebKitGTK Reference Manual + + + + + + + + + + + + + + + + +
+

+Index of deprecated symbols

+

C

+
+webkit_context_menu_item_get_action, function in WebKitContextMenuItem +
+
+
+webkit_context_menu_item_new, function in WebKitContextMenuItem +
+
+
+webkit_cookie_manager_delete_all_cookies, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_delete_cookies_for_domain, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_get_domains_with_cookies, function in WebKitCookieManager +
+
+
+webkit_cookie_manager_get_domains_with_cookies_finish, function in WebKitCookieManager +
+
+

F

+
+webkit_form_submission_request_get_text_fields, function in WebKitFormSubmissionRequest +
+
+
+webkit_frame_get_javascript_context_for_script_world, function in WebKitFrame +
+
+
+webkit_frame_get_javascript_global_context, function in WebKitFrame +
+
+

J

+
+webkit_javascript_result_get_global_context, function in WebKitWebView +
+
+
+webkit_javascript_result_get_value, function in WebKitWebView +
+
+

N

+
+WebKitNavigationPolicyDecision:modifiers, object property in WebKitNavigationPolicyDecision +
+
+
+WebKitNavigationPolicyDecision:mouse-button, object property in WebKitNavigationPolicyDecision +
+
+
+WebKitNavigationPolicyDecision:navigation-type, object property in WebKitNavigationPolicyDecision +
+
+
+WebKitNavigationPolicyDecision:request, object property in WebKitNavigationPolicyDecision +
+
+
+webkit_navigation_policy_decision_get_modifiers, function in WebKitNavigationPolicyDecision +
+
+
+webkit_navigation_policy_decision_get_mouse_button, function in WebKitNavigationPolicyDecision +
+
+
+webkit_navigation_policy_decision_get_navigation_type, function in WebKitNavigationPolicyDecision +
+
+
+webkit_navigation_policy_decision_get_request, function in WebKitNavigationPolicyDecision +
+
+

S

+
+WebKitSettings:enable-private-browsing, object property in WebKitSettings +
+
+
+webkit_settings_get_enable_private_browsing, function in WebKitSettings +
+
+
+webkit_settings_set_enable_private_browsing, function in WebKitSettings +
+
+

W

+
+WebKitWebContext:local-storage-directory, object property in WebKitWebContext +
+
+
+WebKitWebPage::form-controls-associated, object signal in WebKitWebPage +
+
+
+WebKitWebsiteDataManager:websql-directory, object property in WebKitWebsiteDataManager +
+
+
+webkit_website_data_manager_get_websql_directory, function in WebKitWebsiteDataManager +
+
+
+WebKitWebView::web-process-crashed, object signal in WebKitWebView +
+
+
+webkit_web_context_get_web_process_count_limit, function in WebKitWebContext +
+
+
+webkit_web_context_set_disk_cache_directory, function in WebKitWebContext +
+
+
+webkit_web_context_set_web_process_count_limit, function in WebKitWebContext +
+
+
+webkit_web_view_get_javascript_global_context, function in WebKitWebView +
+
+
+ + + \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/ch01.html b/Documentation/webkit2gtk-4.0/html/ch01.html index 19e2726f1683d83513194a8b83fa6804583f370c..bffc56e678bbf35f34cce55d91c0890f005cb536 100644 --- a/Documentation/webkit2gtk-4.0/html/ch01.html +++ b/Documentation/webkit2gtk-4.0/html/ch01.html @@ -3,12 +3,12 @@ Class Overview: WebKitGTK Reference Manual - + - + @@ -27,8 +27,7 @@ WebKitWebContext — Manages aspects common to all WebKitWebViews
-The main frame document title of this #WebKitWebView. If -the title has not been received yet, it will be %NULL. — The central class of the WPE WebKit and WebKitGTK APIs +WebKitWebView — The central class of the WPE WebKit and WebKitGTK APIs
WebKitAuthenticationRequest — Represents an authentication request @@ -88,7 +87,7 @@ the title has not been received yet, it will be %NULL.WebKitEditorState — Web editor state
-The title of the custom widget. — Allows to embed a custom widget in print dialog +WebKitPrintCustomWidget — Allows to embed a custom widget in print dialog
WebKitPrintOperation — Controls a print operation @@ -154,7 +153,7 @@ the title has not been received yet, it will be %NULL.User content — Defines user content types which affect web pages.
-The title for the notification. — Object used to hold information about a notification that should be shown to the user. +WebKitNotification — Object used to hold information about a notification that should be shown to the user.
WebKitNotificationPermissionRequest — A permission request for displaying web notifications @@ -177,9 +176,12 @@ the title has not been received yet, it will be %NULL.WebKitApplicationInfo
+
+Geolocation manager — WebKitGeolocationManager +
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/ch02.html b/Documentation/webkit2gtk-4.0/html/ch02.html index 45c64b0f58190227d1bff2ca377df4b04a630ce9..0270e2279460f16691668d1c54979c3f0ecd1e4b 100644 --- a/Documentation/webkit2gtk-4.0/html/ch02.html +++ b/Documentation/webkit2gtk-4.0/html/ch02.html @@ -3,12 +3,12 @@ Web Extensions: WebKitGTK Reference Manual - + - + - + @@ -16,7 +16,7 @@ Home -Prev +Prev Next
@@ -47,6 +47,6 @@
+
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/ch03.html b/Documentation/webkit2gtk-4.0/html/ch03.html index 1f88dc0749da7c78f4df520eafead63b2258325a..886f41ac23367c622d92786666ea05ce2951816d 100644 --- a/Documentation/webkit2gtk-4.0/html/ch03.html +++ b/Documentation/webkit2gtk-4.0/html/ch03.html @@ -3,12 +3,12 @@ Utilities: WebKitGTK Reference Manual - + - + @@ -27,6 +27,6 @@ +
Generated by GTK-Doc V1.29.1 \ No newline at end of file diff --git a/Documentation/webkit2gtk-4.0/html/index-all.html b/Documentation/webkit2gtk-4.0/html/index-all.html index f75a8114f483c96cc8f7067a580555e18a940b87..34d62c0a51fdc822b0a05cfafb699ca53a691821 100644 --- a/Documentation/webkit2gtk-4.0/html/index-all.html +++ b/Documentation/webkit2gtk-4.0/html/index-all.html @@ -3,12 +3,12 @@ Index: WebKitGTK Reference Manual - + - + @@ -26,1986 +26,2042 @@

A

-
WebKitApplicationInfo, WebKitApplicationInfo +
WebKitApplicationInfo, WebKitApplicationInfo
-
webkit_application_info_get_name, webkit_application_info_get_name () +
webkit_application_info_get_name, webkit_application_info_get_name ()
-
webkit_application_info_get_version, webkit_application_info_get_version () +
webkit_application_info_get_version, webkit_application_info_get_version ()
-
webkit_application_info_new, webkit_application_info_new () +
webkit_application_info_new, webkit_application_info_new ()
-
webkit_application_info_ref, webkit_application_info_ref () +
webkit_application_info_ref, webkit_application_info_ref ()
-
webkit_application_info_set_name, webkit_application_info_set_name () +
webkit_application_info_set_name, webkit_application_info_set_name ()
-
webkit_application_info_set_version, webkit_application_info_set_version () +
webkit_application_info_set_version, webkit_application_info_set_version ()
-
webkit_application_info_unref, webkit_application_info_unref () +
webkit_application_info_unref, webkit_application_info_unref ()
-
WebKitAuthenticationRequest, struct WebKitAuthenticationRequest +
WebKitAuthenticationRequest, struct WebKitAuthenticationRequest
-
WebKitAuthenticationRequest::cancelled, The “cancelled” signal +
WebKitAuthenticationRequest::cancelled, The “cancelled” signal
-
WebKitAuthenticationScheme, enum WebKitAuthenticationScheme +
WebKitAuthenticationScheme, enum WebKitAuthenticationScheme
-
webkit_authentication_request_authenticate, webkit_authentication_request_authenticate () +
webkit_authentication_request_authenticate, webkit_authentication_request_authenticate ()
-
webkit_authentication_request_cancel, webkit_authentication_request_cancel () +
webkit_authentication_request_cancel, webkit_authentication_request_cancel ()
-
webkit_authentication_request_can_save_credentials, webkit_authentication_request_can_save_credentials () +
webkit_authentication_request_can_save_credentials, webkit_authentication_request_can_save_credentials ()
-
webkit_authentication_request_get_host, webkit_authentication_request_get_host () +
webkit_authentication_request_get_host, webkit_authentication_request_get_host ()
-
webkit_authentication_request_get_port, webkit_authentication_request_get_port () +
webkit_authentication_request_get_port, webkit_authentication_request_get_port ()
-
webkit_authentication_request_get_proposed_credential, webkit_authentication_request_get_proposed_credential () +
webkit_authentication_request_get_proposed_credential, webkit_authentication_request_get_proposed_credential ()
-
webkit_authentication_request_get_realm, webkit_authentication_request_get_realm () +
webkit_authentication_request_get_realm, webkit_authentication_request_get_realm ()
-
webkit_authentication_request_get_scheme, webkit_authentication_request_get_scheme () +
webkit_authentication_request_get_scheme, webkit_authentication_request_get_scheme ()
-
webkit_authentication_request_is_for_proxy, webkit_authentication_request_is_for_proxy () +
webkit_authentication_request_is_for_proxy, webkit_authentication_request_is_for_proxy ()
-
webkit_authentication_request_is_retry, webkit_authentication_request_is_retry () +
webkit_authentication_request_is_retry, webkit_authentication_request_is_retry ()
-
WebKitAutomationSession, struct WebKitAutomationSession +
WebKitAutomationSession, struct WebKitAutomationSession
-
WebKitAutomationSession::create-web-view, The “create-web-view” signal +
WebKitAutomationSession::create-web-view, The “create-web-view” signal
-
WebKitAutomationSession:id, The “id” property +
WebKitAutomationSession:id, The “id” property
-
webkit_automation_session_get_application_info, webkit_automation_session_get_application_info () +
webkit_automation_session_get_application_info, webkit_automation_session_get_application_info ()
-
webkit_automation_session_get_id, webkit_automation_session_get_id () +
webkit_automation_session_get_id, webkit_automation_session_get_id ()
-
webkit_automation_session_set_application_info, webkit_automation_session_set_application_info () +
webkit_automation_session_set_application_info, webkit_automation_session_set_application_info ()

B

-
WebKitBackForwardList, struct WebKitBackForwardList +
WebKitBackForwardList, struct WebKitBackForwardList
-
WebKitBackForwardList::changed, The “changed” signal +
WebKitBackForwardList::changed, The “changed” signal
-
WebKitBackForwardListItem, struct WebKitBackForwardListItem +
WebKitBackForwardListItem, struct WebKitBackForwardListItem
-
webkit_back_forward_list_get_back_item, webkit_back_forward_list_get_back_item () +
webkit_back_forward_list_get_back_item, webkit_back_forward_list_get_back_item ()
-
webkit_back_forward_list_get_back_list, webkit_back_forward_list_get_back_list () +
webkit_back_forward_list_get_back_list, webkit_back_forward_list_get_back_list ()
-
webkit_back_forward_list_get_back_list_with_limit, webkit_back_forward_list_get_back_list_with_limit () +
webkit_back_forward_list_get_back_list_with_limit, webkit_back_forward_list_get_back_list_with_limit ()
-
webkit_back_forward_list_get_current_item, webkit_back_forward_list_get_current_item () +
webkit_back_forward_list_get_current_item, webkit_back_forward_list_get_current_item ()
-
webkit_back_forward_list_get_forward_item, webkit_back_forward_list_get_forward_item () +
webkit_back_forward_list_get_forward_item, webkit_back_forward_list_get_forward_item ()
-
webkit_back_forward_list_get_forward_list, webkit_back_forward_list_get_forward_list () +
webkit_back_forward_list_get_forward_list, webkit_back_forward_list_get_forward_list ()
-
webkit_back_forward_list_get_forward_list_with_limit, webkit_back_forward_list_get_forward_list_with_limit () +
webkit_back_forward_list_get_forward_list_with_limit, webkit_back_forward_list_get_forward_list_with_limit ()
-
webkit_back_forward_list_get_length, webkit_back_forward_list_get_length () +
webkit_back_forward_list_get_length, webkit_back_forward_list_get_length ()
-
webkit_back_forward_list_get_nth_item, webkit_back_forward_list_get_nth_item () +
webkit_back_forward_list_get_nth_item, webkit_back_forward_list_get_nth_item ()
-
webkit_back_forward_list_item_get_original_uri, webkit_back_forward_list_item_get_original_uri () +
webkit_back_forward_list_item_get_original_uri, webkit_back_forward_list_item_get_original_uri ()
-
webkit_back_forward_list_item_get_title, webkit_back_forward_list_item_get_title () +
webkit_back_forward_list_item_get_title, webkit_back_forward_list_item_get_title ()
-
webkit_back_forward_list_item_get_uri, webkit_back_forward_list_item_get_uri () +
webkit_back_forward_list_item_get_uri, webkit_back_forward_list_item_get_uri ()

C

-
WebKitCacheModel, enum WebKitCacheModel +
WebKitCacheModel, enum WebKitCacheModel
-
WEBKIT_CHECK_VERSION, WEBKIT_CHECK_VERSION() +
WEBKIT_CHECK_VERSION, WEBKIT_CHECK_VERSION()
-
WebKitColorChooserRequest, struct WebKitColorChooserRequest +
WebKitColorChooserRequest, struct WebKitColorChooserRequest
-
WebKitColorChooserRequest::finished, The “finished” signal +
WebKitColorChooserRequest::finished, The “finished” signal
-
WebKitColorChooserRequest:rgba, The “rgba” property +
WebKitColorChooserRequest:rgba, The “rgba” property
-
webkit_color_chooser_request_cancel, webkit_color_chooser_request_cancel () +
webkit_color_chooser_request_cancel, webkit_color_chooser_request_cancel ()
-
webkit_color_chooser_request_finish, webkit_color_chooser_request_finish () +
webkit_color_chooser_request_finish, webkit_color_chooser_request_finish ()
-
webkit_color_chooser_request_get_element_rectangle, webkit_color_chooser_request_get_element_rectangle () +
webkit_color_chooser_request_get_element_rectangle, webkit_color_chooser_request_get_element_rectangle ()
-
webkit_color_chooser_request_get_rgba, webkit_color_chooser_request_get_rgba () +
webkit_color_chooser_request_get_rgba, webkit_color_chooser_request_get_rgba ()
-
webkit_color_chooser_request_set_rgba, webkit_color_chooser_request_set_rgba () +
webkit_color_chooser_request_set_rgba, webkit_color_chooser_request_set_rgba ()
-
WebKitConsoleMessage, WebKitConsoleMessage +
WebKitConsoleMessage, WebKitConsoleMessage
-
WebKitConsoleMessageLevel, enum WebKitConsoleMessageLevel +
WebKitConsoleMessageLevel, enum WebKitConsoleMessageLevel
-
WebKitConsoleMessageSource, enum WebKitConsoleMessageSource +
WebKitConsoleMessageSource, enum WebKitConsoleMessageSource
-
webkit_console_message_copy, webkit_console_message_copy () +
webkit_console_message_copy, webkit_console_message_copy ()
-
webkit_console_message_free, webkit_console_message_free () +
webkit_console_message_free, webkit_console_message_free ()
-
webkit_console_message_get_level, webkit_console_message_get_level () +
webkit_console_message_get_level, webkit_console_message_get_level ()
-
webkit_console_message_get_line, webkit_console_message_get_line () +
webkit_console_message_get_line, webkit_console_message_get_line ()
-
webkit_console_message_get_source, webkit_console_message_get_source () +
webkit_console_message_get_source, webkit_console_message_get_source ()
-
webkit_console_message_get_source_id, webkit_console_message_get_source_id () +
webkit_console_message_get_source_id, webkit_console_message_get_source_id ()
-
webkit_console_message_get_text, webkit_console_message_get_text () +
webkit_console_message_get_text, webkit_console_message_get_text ()
-
WebKitContextMenu, WebKitContextMenu +
WebKitContextMenu, WebKitContextMenu
-
WebKitContextMenuAction, enum WebKitContextMenuAction +
WebKitContextMenuAction, enum WebKitContextMenuAction
-
WebKitContextMenuItem, WebKitContextMenuItem +
WebKitContextMenuItem, WebKitContextMenuItem
-
webkit_context_menu_append, webkit_context_menu_append () +
webkit_context_menu_append, webkit_context_menu_append ()
-
webkit_context_menu_first, webkit_context_menu_first () +
webkit_context_menu_first, webkit_context_menu_first ()
-
webkit_context_menu_get_items, webkit_context_menu_get_items () +
webkit_context_menu_get_items, webkit_context_menu_get_items ()
-
webkit_context_menu_get_item_at_position, webkit_context_menu_get_item_at_position () +
webkit_context_menu_get_item_at_position, webkit_context_menu_get_item_at_position ()
-
webkit_context_menu_get_n_items, webkit_context_menu_get_n_items () +
webkit_context_menu_get_n_items, webkit_context_menu_get_n_items ()
-
webkit_context_menu_get_user_data, webkit_context_menu_get_user_data () +
webkit_context_menu_get_user_data, webkit_context_menu_get_user_data ()
-
webkit_context_menu_insert, webkit_context_menu_insert () +
webkit_context_menu_insert, webkit_context_menu_insert ()
-
webkit_context_menu_item_get_action, webkit_context_menu_item_get_action () +
webkit_context_menu_item_get_action, webkit_context_menu_item_get_action ()
-
webkit_context_menu_item_get_gaction, webkit_context_menu_item_get_gaction () +
webkit_context_menu_item_get_gaction, webkit_context_menu_item_get_gaction ()
-
webkit_context_menu_item_get_stock_action, webkit_context_menu_item_get_stock_action () +
webkit_context_menu_item_get_stock_action, webkit_context_menu_item_get_stock_action ()
-
webkit_context_menu_item_get_submenu, webkit_context_menu_item_get_submenu () +
webkit_context_menu_item_get_submenu, webkit_context_menu_item_get_submenu ()
-
webkit_context_menu_item_is_separator, webkit_context_menu_item_is_separator () +
webkit_context_menu_item_is_separator, webkit_context_menu_item_is_separator ()
-
webkit_context_menu_item_new, webkit_context_menu_item_new () +
webkit_context_menu_item_new, webkit_context_menu_item_new ()
-
webkit_context_menu_item_new_from_gaction, webkit_context_menu_item_new_from_gaction () +
webkit_context_menu_item_new_from_gaction, webkit_context_menu_item_new_from_gaction ()
-
webkit_context_menu_item_new_from_stock_action, webkit_context_menu_item_new_from_stock_action () +
webkit_context_menu_item_new_from_stock_action, webkit_context_menu_item_new_from_stock_action ()
-
webkit_context_menu_item_new_from_stock_action_with_label, webkit_context_menu_item_new_from_stock_action_with_label () +
webkit_context_menu_item_new_from_stock_action_with_label, webkit_context_menu_item_new_from_stock_action_with_label ()
-
webkit_context_menu_item_new_separator, webkit_context_menu_item_new_separator () +
webkit_context_menu_item_new_separator, webkit_context_menu_item_new_separator ()
-
webkit_context_menu_item_new_with_submenu, webkit_context_menu_item_new_with_submenu () +
webkit_context_menu_item_new_with_submenu, webkit_context_menu_item_new_with_submenu ()
-
webkit_context_menu_item_set_submenu, webkit_context_menu_item_set_submenu () +
webkit_context_menu_item_set_submenu, webkit_context_menu_item_set_submenu ()
-
webkit_context_menu_last, webkit_context_menu_last () +
webkit_context_menu_last, webkit_context_menu_last ()
-
webkit_context_menu_move_item, webkit_context_menu_move_item () +
webkit_context_menu_move_item, webkit_context_menu_move_item ()
-
webkit_context_menu_new, webkit_context_menu_new () +
webkit_context_menu_new, webkit_context_menu_new ()
-
webkit_context_menu_new_with_items, webkit_context_menu_new_with_items () +
webkit_context_menu_new_with_items, webkit_context_menu_new_with_items ()
-
webkit_context_menu_prepend, webkit_context_menu_prepend () +
webkit_context_menu_prepend, webkit_context_menu_prepend ()
-
webkit_context_menu_remove, webkit_context_menu_remove () +
webkit_context_menu_remove, webkit_context_menu_remove ()
-
webkit_context_menu_remove_all, webkit_context_menu_remove_all () +
webkit_context_menu_remove_all, webkit_context_menu_remove_all ()
-
webkit_context_menu_set_user_data, webkit_context_menu_set_user_data () +
webkit_context_menu_set_user_data, webkit_context_menu_set_user_data ()
-
WebKitCookieAcceptPolicy, enum WebKitCookieAcceptPolicy +
WebKitCookieAcceptPolicy, enum WebKitCookieAcceptPolicy
-
WebKitCookieManager, struct WebKitCookieManager +
WebKitCookieManager, struct WebKitCookieManager
-
WebKitCookieManager::changed, The “changed” signal +
WebKitCookieManager::changed, The “changed” signal
-
WebKitCookiePersistentStorage, enum WebKitCookiePersistentStorage +
WebKitCookiePersistentStorage, enum WebKitCookiePersistentStorage
-
webkit_cookie_manager_add_cookie, webkit_cookie_manager_add_cookie () +
webkit_cookie_manager_add_cookie, webkit_cookie_manager_add_cookie ()
-
webkit_cookie_manager_add_cookie_finish, webkit_cookie_manager_add_cookie_finish () +
webkit_cookie_manager_add_cookie_finish, webkit_cookie_manager_add_cookie_finish ()
-
webkit_cookie_manager_delete_all_cookies, webkit_cookie_manager_delete_all_cookies () +
webkit_cookie_manager_delete_all_cookies, webkit_cookie_manager_delete_all_cookies ()
-
webkit_cookie_manager_delete_cookie, webkit_cookie_manager_delete_cookie () +
webkit_cookie_manager_delete_cookie, webkit_cookie_manager_delete_cookie ()
-
webkit_cookie_manager_delete_cookies_for_domain, webkit_cookie_manager_delete_cookies_for_domain () +
webkit_cookie_manager_delete_cookies_for_domain, webkit_cookie_manager_delete_cookies_for_domain ()
-
webkit_cookie_manager_delete_cookie_finish, webkit_cookie_manager_delete_cookie_finish () +
webkit_cookie_manager_delete_cookie_finish, webkit_cookie_manager_delete_cookie_finish ()
-
webkit_cookie_manager_get_accept_policy, webkit_cookie_manager_get_accept_policy () +
webkit_cookie_manager_get_accept_policy, webkit_cookie_manager_get_accept_policy ()
-
webkit_cookie_manager_get_accept_policy_finish, webkit_cookie_manager_get_accept_policy_finish () +
webkit_cookie_manager_get_accept_policy_finish, webkit_cookie_manager_get_accept_policy_finish ()
-
webkit_cookie_manager_get_cookies, webkit_cookie_manager_get_cookies () +
webkit_cookie_manager_get_cookies, webkit_cookie_manager_get_cookies ()
-
webkit_cookie_manager_get_cookies_finish, webkit_cookie_manager_get_cookies_finish () +
webkit_cookie_manager_get_cookies_finish, webkit_cookie_manager_get_cookies_finish ()
-
webkit_cookie_manager_get_domains_with_cookies, webkit_cookie_manager_get_domains_with_cookies () +
webkit_cookie_manager_get_domains_with_cookies, webkit_cookie_manager_get_domains_with_cookies ()
-
webkit_cookie_manager_get_domains_with_cookies_finish, webkit_cookie_manager_get_domains_with_cookies_finish () +
webkit_cookie_manager_get_domains_with_cookies_finish, webkit_cookie_manager_get_domains_with_cookies_finish ()
-
webkit_cookie_manager_set_accept_policy, webkit_cookie_manager_set_accept_policy () +
webkit_cookie_manager_set_accept_policy, webkit_cookie_manager_set_accept_policy ()
-
webkit_cookie_manager_set_persistent_storage, webkit_cookie_manager_set_persistent_storage () +
webkit_cookie_manager_set_persistent_storage, webkit_cookie_manager_set_persistent_storage ()
-
WebKitCredential, WebKitCredential +
WebKitCredential, WebKitCredential
-
WebKitCredentialPersistence, enum WebKitCredentialPersistence +
WebKitCredentialPersistence, enum WebKitCredentialPersistence
-
webkit_credential_copy, webkit_credential_copy () +
webkit_credential_copy, webkit_credential_copy ()
-
webkit_credential_free, webkit_credential_free () +
webkit_credential_free, webkit_credential_free ()
-
webkit_credential_get_password, webkit_credential_get_password () +
webkit_credential_get_password, webkit_credential_get_password ()
-
webkit_credential_get_persistence, webkit_credential_get_persistence () +
webkit_credential_get_persistence, webkit_credential_get_persistence ()
-
webkit_credential_get_username, webkit_credential_get_username () +
webkit_credential_get_username, webkit_credential_get_username ()
-
webkit_credential_has_password, webkit_credential_has_password () +
webkit_credential_has_password, webkit_credential_has_password ()
-
webkit_credential_new, webkit_credential_new () +
webkit_credential_new, webkit_credential_new ()

D

-
WebKitDeviceInfoPermissionRequest, struct WebKitDeviceInfoPermissionRequest +
WebKitDeviceInfoPermissionRequest, struct WebKitDeviceInfoPermissionRequest
-
WebKitDownload, struct WebKitDownload +
WebKitDownload, struct WebKitDownload
-
WebKitDownload::created-destination, The “created-destination” signal +
WebKitDownload::created-destination, The “created-destination” signal
-
WebKitDownload::decide-destination, The “decide-destination” signal +
WebKitDownload::decide-destination, The “decide-destination” signal
-
WebKitDownload::failed, The “failed” signal +
WebKitDownload::failed, The “failed” signal
-
WebKitDownload::finished, The “finished” signal +
WebKitDownload::finished, The “finished” signal
-
WebKitDownload::received-data, The “received-data” signal +
WebKitDownload::received-data, The “received-data” signal
-
WebKitDownload:allow-overwrite, The “allow-overwrite” property +
WebKitDownload:allow-overwrite, The “allow-overwrite” property
-
WebKitDownload:destination, The “destination” property +
WebKitDownload:destination, The “destination” property
-
WebKitDownload:estimated-progress, The “estimated-progress” property +
WebKitDownload:estimated-progress, The “estimated-progress” property
-
WebKitDownload:response, The “response” property +
WebKitDownload:response, The “response” property
-
WebKitDownloadError, enum WebKitDownloadError +
WebKitDownloadError, enum WebKitDownloadError
-
webkit_download_cancel, webkit_download_cancel () +
webkit_download_cancel, webkit_download_cancel ()
-
WEBKIT_DOWNLOAD_ERROR, WEBKIT_DOWNLOAD_ERROR +
WEBKIT_DOWNLOAD_ERROR, WEBKIT_DOWNLOAD_ERROR
-
webkit_download_error_quark, webkit_download_error_quark () +
webkit_download_error_quark, webkit_download_error_quark ()
-
webkit_download_get_allow_overwrite, webkit_download_get_allow_overwrite () +
webkit_download_get_allow_overwrite, webkit_download_get_allow_overwrite ()
-
webkit_download_get_destination, webkit_download_get_destination () +
webkit_download_get_destination, webkit_download_get_destination ()
-
webkit_download_get_elapsed_time, webkit_download_get_elapsed_time () +
webkit_download_get_elapsed_time, webkit_download_get_elapsed_time ()
-
webkit_download_get_estimated_progress, webkit_download_get_estimated_progress () +
webkit_download_get_estimated_progress, webkit_download_get_estimated_progress ()
-
webkit_download_get_received_data_length, webkit_download_get_received_data_length () +
webkit_download_get_received_data_length, webkit_download_get_received_data_length ()
-
webkit_download_get_request, webkit_download_get_request () +
webkit_download_get_request, webkit_download_get_request ()
-
webkit_download_get_response, webkit_download_get_response () +
webkit_download_get_response, webkit_download_get_response ()
-
webkit_download_get_web_view, webkit_download_get_web_view () +
webkit_download_get_web_view, webkit_download_get_web_view ()
-
webkit_download_set_allow_overwrite, webkit_download_set_allow_overwrite () +
webkit_download_set_allow_overwrite, webkit_download_set_allow_overwrite ()
-
webkit_download_set_destination, webkit_download_set_destination () +
webkit_download_set_destination, webkit_download_set_destination ()

E

-
WEBKIT_EDITING_COMMAND_COPY, WEBKIT_EDITING_COMMAND_COPY +
WEBKIT_EDITING_COMMAND_COPY, WEBKIT_EDITING_COMMAND_COPY
-
WEBKIT_EDITING_COMMAND_CREATE_LINK, WEBKIT_EDITING_COMMAND_CREATE_LINK +
WEBKIT_EDITING_COMMAND_CREATE_LINK, WEBKIT_EDITING_COMMAND_CREATE_LINK
-
WEBKIT_EDITING_COMMAND_CUT, WEBKIT_EDITING_COMMAND_CUT +
WEBKIT_EDITING_COMMAND_CUT, WEBKIT_EDITING_COMMAND_CUT
-
WEBKIT_EDITING_COMMAND_INSERT_IMAGE, WEBKIT_EDITING_COMMAND_INSERT_IMAGE +
WEBKIT_EDITING_COMMAND_INSERT_IMAGE, WEBKIT_EDITING_COMMAND_INSERT_IMAGE
-
WEBKIT_EDITING_COMMAND_PASTE, WEBKIT_EDITING_COMMAND_PASTE +
WEBKIT_EDITING_COMMAND_PASTE, WEBKIT_EDITING_COMMAND_PASTE
-
WEBKIT_EDITING_COMMAND_REDO, WEBKIT_EDITING_COMMAND_REDO +
WEBKIT_EDITING_COMMAND_REDO, WEBKIT_EDITING_COMMAND_REDO
-
WEBKIT_EDITING_COMMAND_SELECT_ALL, WEBKIT_EDITING_COMMAND_SELECT_ALL +
WEBKIT_EDITING_COMMAND_SELECT_ALL, WEBKIT_EDITING_COMMAND_SELECT_ALL
-
WEBKIT_EDITING_COMMAND_UNDO, WEBKIT_EDITING_COMMAND_UNDO +
WEBKIT_EDITING_COMMAND_UNDO, WEBKIT_EDITING_COMMAND_UNDO
-
WebKitEditorState, struct WebKitEditorState +
WebKitEditorState, struct WebKitEditorState
-
WebKitEditorState:typing-attributes, The “typing-attributes” property +
WebKitEditorState:typing-attributes, The “typing-attributes” property
-
WebKitEditorTypingAttributes, enum WebKitEditorTypingAttributes +
WebKitEditorTypingAttributes, enum WebKitEditorTypingAttributes
-
webkit_editor_state_get_typing_attributes, webkit_editor_state_get_typing_attributes () +
webkit_editor_state_get_typing_attributes, webkit_editor_state_get_typing_attributes ()
-
webkit_editor_state_is_copy_available, webkit_editor_state_is_copy_available () +
webkit_editor_state_is_copy_available, webkit_editor_state_is_copy_available ()
-
webkit_editor_state_is_cut_available, webkit_editor_state_is_cut_available () +
webkit_editor_state_is_cut_available, webkit_editor_state_is_cut_available ()
-
webkit_editor_state_is_paste_available, webkit_editor_state_is_paste_available () +
webkit_editor_state_is_paste_available, webkit_editor_state_is_paste_available ()
-
webkit_editor_state_is_redo_available, webkit_editor_state_is_redo_available () +
webkit_editor_state_is_redo_available, webkit_editor_state_is_redo_available ()
-
webkit_editor_state_is_undo_available, webkit_editor_state_is_undo_available () +
webkit_editor_state_is_undo_available, webkit_editor_state_is_undo_available ()

F

-
WebKitFaviconDatabase, struct WebKitFaviconDatabase +
WebKitFaviconDatabase, struct WebKitFaviconDatabase
-
WebKitFaviconDatabase::favicon-changed, The “favicon-changed” signal +
WebKitFaviconDatabase::favicon-changed, The “favicon-changed” signal
-
WebKitFaviconDatabaseError, enum WebKitFaviconDatabaseError +
WebKitFaviconDatabaseError, enum WebKitFaviconDatabaseError
-
webkit_favicon_database_clear, webkit_favicon_database_clear () +
webkit_favicon_database_clear, webkit_favicon_database_clear ()
-
WEBKIT_FAVICON_DATABASE_ERROR, WEBKIT_FAVICON_DATABASE_ERROR +
WEBKIT_FAVICON_DATABASE_ERROR, WEBKIT_FAVICON_DATABASE_ERROR
-
webkit_favicon_database_get_favicon, webkit_favicon_database_get_favicon () +
webkit_favicon_database_get_favicon, webkit_favicon_database_get_favicon ()
-
webkit_favicon_database_get_favicon_finish, webkit_favicon_database_get_favicon_finish () +
webkit_favicon_database_get_favicon_finish, webkit_favicon_database_get_favicon_finish ()
-
webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri () +
webkit_favicon_database_get_favicon_uri, webkit_favicon_database_get_favicon_uri ()
-
WebKitFileChooserRequest, struct WebKitFileChooserRequest +
WebKitFileChooserRequest, struct WebKitFileChooserRequest
-
WebKitFileChooserRequest:filter, The “filter” property +
WebKitFileChooserRequest:filter, The “filter” property
-
WebKitFileChooserRequest:mime-types, The “mime-types” property +
WebKitFileChooserRequest:mime-types, The “mime-types” property
-
WebKitFileChooserRequest:select-multiple, The “select-multiple” property +
WebKitFileChooserRequest:select-multiple, The “select-multiple” property
-
WebKitFileChooserRequest:selected-files, The “selected-files” property +
WebKitFileChooserRequest:selected-files, The “selected-files” property
-
webkit_file_chooser_request_cancel, webkit_file_chooser_request_cancel () +
webkit_file_chooser_request_cancel, webkit_file_chooser_request_cancel ()
-
webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types () +
webkit_file_chooser_request_get_mime_types, webkit_file_chooser_request_get_mime_types ()
-
webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter () +
webkit_file_chooser_request_get_mime_types_filter, webkit_file_chooser_request_get_mime_types_filter ()
-
webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files () +
webkit_file_chooser_request_get_selected_files, webkit_file_chooser_request_get_selected_files ()
-
webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple () +
webkit_file_chooser_request_get_select_multiple, webkit_file_chooser_request_get_select_multiple ()
-
webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files () +
webkit_file_chooser_request_select_files, webkit_file_chooser_request_select_files ()
-
WebKitFindController, WebKitFindController +
WebKitFindController, WebKitFindController
-
WebKitFindController::counted-matches, The “counted-matches” signal +
WebKitFindController::counted-matches, The “counted-matches” signal
-
WebKitFindController::failed-to-find-text, The “failed-to-find-text” signal +
WebKitFindController::failed-to-find-text, The “failed-to-find-text” signal
-
WebKitFindController::found-text, The “found-text” signal +
WebKitFindController::found-text, The “found-text” signal
-
WebKitFindController:max-match-count, The “max-match-count” property +
WebKitFindController:max-match-count, The “max-match-count” property
-
WebKitFindController:options, The “options” property +
WebKitFindController:options, The “options” property
-
WebKitFindController:text, The “text” property +
WebKitFindController:text, The “text” property
-
WebKitFindController:web-view, The “web-view” property +
WebKitFindController:web-view, The “web-view” property
-
WebKitFindOptions, enum WebKitFindOptions +
WebKitFindOptions, enum WebKitFindOptions
-
webkit_find_controller_count_matches, webkit_find_controller_count_matches () +
webkit_find_controller_count_matches, webkit_find_controller_count_matches ()
-
webkit_find_controller_get_max_match_count, webkit_find_controller_get_max_match_count () +
webkit_find_controller_get_max_match_count, webkit_find_controller_get_max_match_count ()
-
webkit_find_controller_get_options, webkit_find_controller_get_options () +
webkit_find_controller_get_options, webkit_find_controller_get_options ()
-
webkit_find_controller_get_search_text, webkit_find_controller_get_search_text () +
webkit_find_controller_get_search_text, webkit_find_controller_get_search_text ()
-
webkit_find_controller_get_web_view, webkit_find_controller_get_web_view () +
webkit_find_controller_get_web_view, webkit_find_controller_get_web_view ()
-
webkit_find_controller_search, webkit_find_controller_search () +
webkit_find_controller_search, webkit_find_controller_search ()
-
webkit_find_controller_search_finish, webkit_find_controller_search_finish () +
webkit_find_controller_search_finish, webkit_find_controller_search_finish ()
-
webkit_find_controller_search_next, webkit_find_controller_search_next () +
webkit_find_controller_search_next, webkit_find_controller_search_next ()
-
webkit_find_controller_search_previous, webkit_find_controller_search_previous () +
webkit_find_controller_search_previous, webkit_find_controller_search_previous ()
-
WebKitFormSubmissionRequest, struct WebKitFormSubmissionRequest +
WebKitFormSubmissionRequest, struct WebKitFormSubmissionRequest
-
WebKitFormSubmissionStep, enum WebKitFormSubmissionStep +
WebKitFormSubmissionStep, enum WebKitFormSubmissionStep
-
webkit_form_submission_request_get_text_fields, webkit_form_submission_request_get_text_fields () +
webkit_form_submission_request_get_text_fields, webkit_form_submission_request_get_text_fields ()
-
webkit_form_submission_request_list_text_fields, webkit_form_submission_request_list_text_fields () +
webkit_form_submission_request_list_text_fields, webkit_form_submission_request_list_text_fields ()
-
webkit_form_submission_request_submit, webkit_form_submission_request_submit () +
webkit_form_submission_request_submit, webkit_form_submission_request_submit ()
-
WebKitFrame, struct WebKitFrame +
WebKitFrame, struct WebKitFrame
-
webkit_frame_get_javascript_context_for_script_world, webkit_frame_get_javascript_context_for_script_world (), webkit_frame_get_javascript_context_for_script_world () +
webkit_frame_get_id, webkit_frame_get_id ()
-
webkit_frame_get_javascript_global_context, webkit_frame_get_javascript_global_context (), webkit_frame_get_javascript_global_context () +
webkit_frame_get_javascript_context_for_script_world, webkit_frame_get_javascript_context_for_script_world (), webkit_frame_get_javascript_context_for_script_world ()
-
webkit_frame_get_js_context, webkit_frame_get_js_context () +
webkit_frame_get_javascript_global_context, webkit_frame_get_javascript_global_context (), webkit_frame_get_javascript_global_context ()
-
webkit_frame_get_js_context_for_script_world, webkit_frame_get_js_context_for_script_world () +
webkit_frame_get_js_context, webkit_frame_get_js_context ()
-
webkit_frame_get_js_value_for_dom_object, webkit_frame_get_js_value_for_dom_object () +
webkit_frame_get_js_context_for_script_world, webkit_frame_get_js_context_for_script_world ()
-
webkit_frame_get_js_value_for_dom_object_in_script_world, webkit_frame_get_js_value_for_dom_object_in_script_world () +
webkit_frame_get_js_value_for_dom_object, webkit_frame_get_js_value_for_dom_object ()
-
webkit_frame_get_uri, webkit_frame_get_uri () +
webkit_frame_get_js_value_for_dom_object_in_script_world, webkit_frame_get_js_value_for_dom_object_in_script_world ()
-
webkit_frame_is_main_frame, webkit_frame_is_main_frame () +
webkit_frame_get_uri, webkit_frame_get_uri () +
+
webkit_frame_is_main_frame, webkit_frame_is_main_frame ()

G

-
WebKitGeolocationPermissionRequest, struct WebKitGeolocationPermissionRequest +
WebKitGeolocationManager, struct WebKitGeolocationManager +
+
WebKitGeolocationManager::start, The “start” signal +
+
WebKitGeolocationManager::stop, The “stop” signal +
+
WebKitGeolocationManager:enable-high-accuracy, The “enable-high-accuracy” property +
+
WebKitGeolocationPermissionRequest, struct WebKitGeolocationPermissionRequest +
+
WebKitGeolocationPosition, WebKitGeolocationPosition +
+
webkit_geolocation_manager_failed, webkit_geolocation_manager_failed () +
+
webkit_geolocation_manager_get_enable_high_accuracy, webkit_geolocation_manager_get_enable_high_accuracy () +
+
webkit_geolocation_manager_update_position, webkit_geolocation_manager_update_position () +
+
webkit_geolocation_position_copy, webkit_geolocation_position_copy () +
+
webkit_geolocation_position_free, webkit_geolocation_position_free () +
+
webkit_geolocation_position_new, webkit_geolocation_position_new () +
+
webkit_geolocation_position_set_altitude, webkit_geolocation_position_set_altitude () +
+
webkit_geolocation_position_set_altitude_accuracy, webkit_geolocation_position_set_altitude_accuracy ()
-
webkit_get_major_version, webkit_get_major_version () +
webkit_geolocation_position_set_heading, webkit_geolocation_position_set_heading ()
-
webkit_get_micro_version, webkit_get_micro_version () +
webkit_geolocation_position_set_speed, webkit_geolocation_position_set_speed ()
-
webkit_get_minor_version, webkit_get_minor_version () +
webkit_geolocation_position_set_timestamp, webkit_geolocation_position_set_timestamp () +
+
webkit_get_major_version, webkit_get_major_version () +
+
webkit_get_micro_version, webkit_get_micro_version () +
+
webkit_get_minor_version, webkit_get_minor_version ()

H

-
WebKitHardwareAccelerationPolicy, enum WebKitHardwareAccelerationPolicy +
WebKitHardwareAccelerationPolicy, enum WebKitHardwareAccelerationPolicy
-
WebKitHitTestResult, struct WebKitHitTestResult +
WebKitHitTestResult, struct WebKitHitTestResult
-
WebKitHitTestResult:context, The “context” property +
WebKitHitTestResult:context, The “context” property
-
WebKitHitTestResult:image-uri, The “image-uri” property +
WebKitHitTestResult:image-uri, The “image-uri” property
-
WebKitHitTestResult:link-label, The “link-label” property