webkit-0.14.2.0: Binding to the Webkit library.

Maintainergtk2hs-users@lists.sourceforge.net
Stabilityprovisional
Portabilityportable (depends on GHC)
Safe HaskellNone
LanguageHaskell98

Graphics.UI.Gtk.WebKit.WebResource

Contents

Description

Note:

Function webkit_web_resource_get_data haven't binding no idea how to handle GString.

Access to the WebKit Web Resource

Synopsis

Description

A web resource encapsulates the data of the download as well as the URI, MIME type and frame name of the resource.

Types

Constructors

webResourceNew :: GlibString string => ByteString -> string -> string -> string -> string -> IO WebResource Source #

Returns a new WebKitWebResource. The encoding can be empty. The frameName can be used if the resource represents contents of an entire HTML frame, otherwise pass empty.

Methods

webResourceGetData :: WebResourceClass self => self -> IO (Maybe ByteString) Source #

Returns the data of the WebResource.

webResourceGetEncoding :: (WebResourceClass self, GlibString string) => self -> IO (Maybe string) Source #

Get encoding.

webResourceGetFrameName :: (WebResourceClass self, GlibString string) => self -> IO (Maybe string) Source #

Get frame name.

webResourceGetMimeType :: (WebResourceClass self, GlibString string) => self -> IO (Maybe string) Source #

Get mime type.

webResourceGetUri :: (WebResourceClass self, GlibString string) => self -> IO string Source #

Get uri.