| Copyright | Will Thompson and Iñaki García Etxebarria |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
GI.WebKit2WebExtension.Objects.WebExtension
Description
Represents an extension of the WebProcess.
WebKitWebExtension is a loadable module for the WebProcess. It allows you to execute code in the WebProcess and being able to use the DOM API, to change any request or to inject custom JavaScript code, for example.
To create a WebKitWebExtension you should write a module with an initialization function that could
be either webkit_web_extension_initialize() with prototype WebExtensionInitializeFunction or
webkit_web_extension_initialize_with_user_data() with prototype WebExtensionInitializeWithUserDataFunction.
This function has to be public and it has to use the G_MODULE_EXPORT macro. It is called when the
web process is initialized.
c code
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);
}The previous piece of code shows a trivial example of an extension that notifies when
a WebPage is created.
WebKit has to know where it can find the created WebKitWebExtension. To do so you
should use the webkit_web_context_set_web_extensions_directory() function. The signal
WebKitWebContext::initialize-web-extensions is the recommended place to call it.
To provide the initialization data used by the webkit_web_extension_initialize_with_user_data()
function, you have to call webkit_web_context_set_web_extensions_initialization_user_data() with
the desired data as parameter. You can see an example of this in the following piece of code:
c code
#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;
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);
GtkWidget *view = webkit_web_view_new ();
// ...
}Synopsis
- newtype WebExtension = WebExtension (ManagedPtr WebExtension)
- class (GObject o, IsDescendantOf WebExtension o) => IsWebExtension o
- toWebExtension :: (MonadIO m, IsWebExtension o) => o -> m WebExtension
- webExtensionGetPage :: (HasCallStack, MonadIO m, IsWebExtension a) => a -> Word64 -> m (Maybe WebPage)
- webExtensionSendMessageToContext :: (HasCallStack, MonadIO m, IsWebExtension a, IsUserMessage b, IsCancellable c) => a -> b -> Maybe c -> Maybe AsyncReadyCallback -> m ()
- webExtensionSendMessageToContextFinish :: (HasCallStack, MonadIO m, IsWebExtension a, IsAsyncResult b) => a -> b -> m UserMessage
- type WebExtensionPageCreatedCallback = WebPage -> IO ()
- afterWebExtensionPageCreated :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionPageCreatedCallback) -> m SignalHandlerId
- onWebExtensionPageCreated :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionPageCreatedCallback) -> m SignalHandlerId
- type WebExtensionUserMessageReceivedCallback = UserMessage -> IO ()
- afterWebExtensionUserMessageReceived :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionUserMessageReceivedCallback) -> m SignalHandlerId
- onWebExtensionUserMessageReceived :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionUserMessageReceivedCallback) -> m SignalHandlerId
Exported types
newtype WebExtension Source #
Memory-managed wrapper type.
Constructors
| WebExtension (ManagedPtr WebExtension) |
Instances
| Eq WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension | |
| GObject WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension | |
| ManagedPtrNewtype WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension Methods toManagedPtr :: WebExtension -> ManagedPtr WebExtension | |
| TypedObject WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension | |
| HasParentTypes WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension | |
| IsGValue (Maybe WebExtension) Source # | Convert |
Defined in GI.WebKit2WebExtension.Objects.WebExtension Methods gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe WebExtension -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe WebExtension) | |
| type ParentTypes WebExtension Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension type ParentTypes WebExtension = '[Object] | |
class (GObject o, IsDescendantOf WebExtension o) => IsWebExtension o Source #
Type class for types which can be safely cast to WebExtension, for instance with toWebExtension.
Instances
| (GObject o, IsDescendantOf WebExtension o) => IsWebExtension o Source # | |
Defined in GI.WebKit2WebExtension.Objects.WebExtension | |
toWebExtension :: (MonadIO m, IsWebExtension o) => o -> m WebExtension Source #
Cast to WebExtension, for types for which this is known to be safe. For general casts, use castTo.
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, forceFloating, freezeNotify, getv, isFloating, notify, notifyByPspec, ref, refSink, runDispose, sendMessageToContext, sendMessageToContextFinish, stealData, stealQdata, thawNotify, unref, watchClosure.
Getters
getData, getPage, getProperty, getQdata.
Setters
getPage
Arguments
| :: (HasCallStack, MonadIO m, IsWebExtension a) | |
| => a |
|
| -> Word64 |
|
| -> m (Maybe WebPage) | Returns: the |
Get the web page of the given pageId.
sendMessageToContext
webExtensionSendMessageToContext Source #
Arguments
| :: (HasCallStack, MonadIO m, IsWebExtension a, IsUserMessage b, IsCancellable c) | |
| => a |
|
| -> b |
|
| -> Maybe c |
|
| -> Maybe AsyncReadyCallback |
|
| -> m () |
Send message to the WebKitWebContext corresponding to extension. If message is floating, it's consumed.
If you don't expect any reply, or you simply want to ignore it, you can pass Nothing as calback.
When the operation is finished, callback will be called. You can then call
webExtensionSendMessageToContextFinish to get the message reply.
Since: 2.28
sendMessageToContextFinish
webExtensionSendMessageToContextFinish Source #
Arguments
| :: (HasCallStack, MonadIO m, IsWebExtension a, IsAsyncResult b) | |
| => a |
|
| -> b |
|
| -> m UserMessage | Returns: a |
Finish an asynchronous operation started with webExtensionSendMessageToContext.
Since: 2.28
Signals
pageCreated
type WebExtensionPageCreatedCallback Source #
This signal is emitted when a new WebPage is created in
the Web Process.
afterWebExtensionPageCreated :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionPageCreatedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the pageCreated signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after webExtension #pageCreated callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self parameter.
Note that this requires activating the ImplicitParams GHC extension.
onWebExtensionPageCreated :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionPageCreatedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the pageCreated signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on webExtension #pageCreated callback
userMessageReceived
type WebExtensionUserMessageReceivedCallback Source #
Arguments
| = UserMessage |
|
| -> IO () |
This signal is emitted when a UserMessage is received from the
WebKitWebContext corresponding to extension. Messages sent by WebKitWebContext
are always broadcasted to all WebExtensions and they can't be
replied to. Calling userMessageSendReply will do nothing.
Since: 2.28
afterWebExtensionUserMessageReceived :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionUserMessageReceivedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the userMessageReceived signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after webExtension #userMessageReceived callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self parameter.
Note that this requires activating the ImplicitParams GHC extension.
onWebExtensionUserMessageReceived :: (IsWebExtension a, MonadIO m) => a -> ((?self :: a) => WebExtensionUserMessageReceivedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the userMessageReceived signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on webExtension #userMessageReceived callback