-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Binding to the Webkit library.
--   
--   WebKit is a web content engine, derived from KHTML and KJS from KDE,
--   and used primarily in Apple's Safari browser. It is made to be
--   embedded in other applications, such as mail readers, or web browsers.
--   It is able to display content such as HTML, SVG, XML, and others. It
--   also supports DOM, XMLHttpRequest, XSLT, CSS, Javascript/ECMAscript
--   and more.
@package webkit
@version 0.12.5.1

module Graphics.UI.Gtk.WebKit.DOM.Traversal
data NodeFilter
class NodeFilterClass a
instance NodeFilterClass NodeFilter

module Graphics.UI.Gtk.WebKit.DOM.Stylesheets
data MediaList
class MediaListClass a
instance MediaListClass MediaList

module Graphics.UI.Gtk.WebKit.DOM.Ranges
data DOMRange
class DOMRangeClass a
instance DOMRangeClass DOMRange

module Graphics.UI.Gtk.WebKit.DOM.Events
data Event
class EventClass a
instance EventClass Event

module Graphics.UI.Gtk.WebKit.DOM.Css
data CSSRule
class CSSRuleClass a
instance CSSRuleClass CSSRule


-- | Object used to communicate with the application when downloading
module Graphics.UI.Gtk.WebKit.Download
data Download
class GObjectClass o => DownloadClass o
data DownloadError
DownloadErrorCancelledByUser :: DownloadError
DownloadErrorDestination :: DownloadError
DownloadErrorNetwork :: DownloadError
data DownloadStatus
DownloadStatusError :: DownloadStatus
DownloadStatusCreated :: DownloadStatus
DownloadStatusStarted :: DownloadStatus
DownloadStatusCancelled :: DownloadStatus
DownloadStatusFinished :: DownloadStatus

-- | Create a new <a>Download</a> instance for the given
--   <a>NetworkRequest</a>
--   
--   Object used to communicate with the application when downloading.
downloadNew :: NetworkRequestClass request => request -> IO Download

-- | Initiates the <a>Download</a>.
--   
--   Notice that you must have set the destination-uri property before
--   calling this function.
downloadStart :: DownloadClass self => self -> IO ()

-- | Cancels the <a>Download</a>.
downloadCancel :: DownloadClass self => self -> IO ()

-- | Retrieves the URI from <a>Download</a> which is being downloaded.
downloadGetUri :: DownloadClass self => self -> IO (Maybe String)

-- | Retrieves the <a>NetworkRequest</a> that backs the download process.
downloadGetNetworkRequest :: DownloadClass self => self -> IO NetworkRequest

-- | Retrieves the <a>NetworkResponse</a> object that backs the download
--   process.
--   
--   <ul>
--   <li>Since 1.1.16</li>
--   </ul>
downloadGetNetworkResponse :: DownloadClass self => self -> IO NetworkResponse

-- | Retrieves the filename that was suggested by the server, or the one
--   derived from the URI.
downloadGetSuggestedFilename :: DownloadClass self => self -> IO (Maybe String)

-- | Obtains the URI to which the downloaded file will be written.
--   
--   It is set by Application before call <a>downloadStart</a>
downloadGetDestinationUri :: DownloadClass self => self -> IO (Maybe String)

-- | Determines the current progress of the <a>Download</a>
downloadGetProgress :: DownloadClass self => self -> IO Double

-- | Return elapsed time for the <a>Download</a> in seconds. includeing any
--   fractional part.
--   
--   If the <a>Download</a> is finished, had an error or was cancelled,
--   this is the time between its start and the event.
downloadGetElapsedTime :: DownloadClass self => self -> IO Double

-- | Returns the excepted total size of the download.
--   
--   This is expected because the server may provide incorrect or missing
--   Content-Length.
--   
--   Notice that this may grow over time.
downloadGetTotalSize :: DownloadClass self => self -> IO Int

-- | Returns the current already downleaded size
downloadGetCurrentSize :: DownloadClass self => self -> IO Int

-- | Obtains the current status of the <a>Download</a> as
--   <a>DownloadStatus</a>
downloadGetStatus :: DownloadClass self => self -> IO DownloadStatus

-- | Defines the URI that should be used to save the downloaded file to.
downloadSetDestinationUri :: DownloadClass self => self -> String -> IO ()

-- | The length of the data already downloaded
--   
--   Default value: 0
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
currentSize :: DownloadClass self => ReadAttr self Int

-- | The URI of the save location for this download.
--   
--   Default value: ""
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
destinationUri :: DownloadClass self => Attr self (Maybe String)

-- | The NetworkRequest instance associated with the download.
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
networkRequest :: DownloadClass self => Attr self NetworkRequest

-- | The NetworkResponse instance associated with the download.
--   
--   <ul>
--   <li>Since 1.1.16</li>
--   </ul>
networkResponse :: DownloadClass self => Attr self NetworkResponse

-- | Determines the current progress of the download. Notice that, although
--   the progress changes are reported as soon as possible, the emission of
--   the notify signal for this property is throttled, for the benefit of
--   download managers. If you care about every update, use <a>Download</a>
--   : currentSize.
--   
--   Allowed values: [0,1]
--   
--   Default value: 1
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
progress :: DownloadClass self => ReadAttr self Double

-- | Determines the current status of the download.
--   
--   Default value: <a>DownloadStatusCreated</a>
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
status :: DownloadClass self => ReadAttr self DownloadStatus

-- | The file name suggested as default when saving
--   
--   Default value: ""
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
suggestedFilename :: DownloadClass self => ReadAttr self (Maybe String)

-- | The total size of the file
--   
--   Default value: 0
--   
--   <ul>
--   <li>Since 1.1.2</li>
--   </ul>
totalSize :: DownloadClass self => ReadAttr self Int

-- | Emitted when download is interrupted either by user action or by
--   network errors, errorDetail will take any value of
--   <a>DownloadError</a>.
--   
--   <tt>download</tt>: the object on which the signal is emitted
--   <tt>errorCode</tt>: the corresponding error code <tt>errorDetail</tt>:
--   detailed error code for the error, see <a>DownloadError</a>
--   <tt>reason</tt>: a string describing the error
--   
--   Since 1.1.2
downloadError :: DownloadClass self => Signal self (Int -> Int -> String -> IO Bool)
instance Enum DownloadError
instance Enum DownloadStatus


-- | Object used to communicate with the application when downloading
module Graphics.UI.Gtk.WebKit.GeolocationPolicyDecision
data GeolocationPolicyDecision
class GObjectClass o => GeolocationPolicyDecisionClass o

-- | Will send the allow decision to the policy implementer.
--   
--   <ul>
--   <li>Since 1.1.23</li>
--   </ul>
geolocationPolicyAllow :: GeolocationPolicyDecisionClass decision => decision -> IO ()

-- | Will send the deny decision to the policy implementer.
--   
--   <ul>
--   <li>Since 1.1.23</li>
--   </ul>
geolocationPolicyDeny :: GeolocationPolicyDecisionClass decision => decision -> IO ()


-- | Access to the WebKit Web Resource
module Graphics.UI.Gtk.WebKit.HitTestResult
data HitTestResult
class GObjectClass o => HitTestResultClass o
data HitTestResultContext
HitTestResultContextDocument :: HitTestResultContext
HitTestResultContextLink :: HitTestResultContext
HitTestResultContextImage :: HitTestResultContext
HitTestResultContextMedia :: HitTestResultContext
HitTestResultContextSelection :: HitTestResultContext
HitTestResultContextEditable :: HitTestResultContext
instance Enum HitTestResultContext


-- | The target of a navigation request
module Graphics.UI.Gtk.WebKit.NetworkRequest
data NetworkRequest
class GObjectClass o => NetworkRequestClass o

-- | Create a new NetworkRequest with the given <tt>uri</tt>.
--   
--   It is used whenever WebKit wants to provide information about a
--   request that will be sent, or has been sent.
networkRequestNew :: String -> IO NetworkRequest

-- | Set the URI of <a>NetworkRequest</a>.
networkRequestSetUri :: NetworkRequestClass self => self -> String -> IO ()

-- | Return the uri of <a>NetworkRequest</a>.
networkRequestGetUri :: NetworkRequestClass self => self -> IO (Maybe String)


-- | The response given to a network request
module Graphics.UI.Gtk.WebKit.NetworkResponse
data NetworkResponse
class GObjectClass o => NetworkResponseClass o

-- | Set the URI of <a>NetworkResponse</a>.
networkResponseSetUri :: NetworkResponseClass self => self -> String -> IO ()

-- | Return the uri of <a>NetworkResponse</a>.
networkResponseGetUri :: NetworkResponseClass self => self -> IO (Maybe String)


-- | Access to the WebKit Web SecurityOrigin
module Graphics.UI.Gtk.WebKit.SecurityOrigin
data SecurityOrigin
class GObjectClass o => SecurityOriginClass o

-- | Returns the frame's security origin.
securityOriginGetAllWebDatabases :: SecurityOriginClass self => self -> IO [WebDatabase]

-- | Returns the hostname for the security origin.
securityOriginGetHost :: SecurityOriginClass self => self -> IO String

-- | Returns the port for the security origin.
securityOriginGetPort :: SecurityOriginClass self => self -> IO Int

-- | Returns the protocol for the security origin.
securityOriginGetProtocol :: SecurityOriginClass self => self -> IO String

-- | Returns the quota for Web Database storage of the security origin in
--   bytes.
securityOriginGetWebDatabaseQuota :: SecurityOriginClass self => self -> IO Int

-- | Adjust the quota for Web Database storage of the security origin
securityOriginSetWebDatabaseQuota :: SecurityOriginClass self => self -> Int -> IO ()

-- | Returns the usage for Web Database storage of the security origin in
--   bytes.
securityOriginGetWebDatabaseUsage :: SecurityOriginClass self => self -> IO Int


-- | Access to the WebKit Web Resource
module Graphics.UI.Gtk.WebKit.SoupAuthDialog
data SoupAuthDialog
class GObjectClass o => SoupAuthDialogClass o


-- | The history of a <a>WebView</a>
module Graphics.UI.Gtk.WebKit.WebBackForwardList
class ContainerClass o => WebViewClass o
data WebBackForwardList
class GObjectClass o => WebBackForwardListClass o

-- | Create an WebBackForwardList with a controlling WebView.
webBackForwardListNewWithWebView :: WebViewClass webview => webview -> IO WebBackForwardList

-- | Steps forward in the back forward list.
webBackForwardListGoForward :: WebBackForwardListClass self => self -> IO ()

-- | Steps back in the back forward list.
webBackForwardListGoBack :: WebBackForwardListClass self => self -> IO ()

-- | Check if an history item in the back forward list.
webBackForwardListContainsItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO Bool

-- | Go to the specified history item in the back forward list.
webBackForwardListGoToItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO ()

-- | Return the history item that precedes the current history item.
webBackForwardListGetBackItem :: WebBackForwardListClass self => self -> IO (Maybe WebHistoryItem)

-- | Return the current history item of the back forward list
webBackForwardListGetCurrentItem :: WebBackForwardListClass self => self -> IO WebHistoryItem

-- | Return the item that succeeds the current item
webBackForwardListGetForwardItem :: WebBackForwardListClass self => self -> IO (Maybe WebHistoryItem)

-- | Return the history item at a given index relative to the current item.
webBackForwardListGetNthItem :: WebBackForwardListClass self => self -> Int -> IO WebHistoryItem

-- | Return the number of items that preced the current item.
webBackForwardListGetBackLength :: WebBackForwardListClass self => self -> IO Int

-- | Return the number of items that succeed the current item.
webBackForwardListGetForwardLength :: WebBackForwardListClass self => self -> IO Int

-- | Return the maximum limit of the back forward list.
webBackForwardListGetLimit :: WebBackForwardListClass self => self -> IO Int

-- | Set the maximum limit of the back forward list.
--   
--   if the back forward list exceeds its capacity, items will be removed
--   everytime a new item had been added.
webBackForwardListSetLimit :: WebBackForwardListClass self => self -> Int -> IO ()

-- | Add the item to the back forward list.
webBackForwardListAddItem :: (WebBackForwardListClass self, WebHistoryItemClass item) => self -> item -> IO ()

-- | Return a list of items that succeed the current item, limited by
--   <tt>limit</tt>.
webBackForwardListGetForwardListWithLimit :: WebBackForwardListClass self => self -> Int -> IO [WebHistoryItem]

-- | Return a list of items that preced the current item. limited by limit.
webBackForwardListGetBackListWithLimit :: WebBackForwardListClass self => self -> Int -> IO [WebHistoryItem]


-- | Access to the WebKit Web Database
module Graphics.UI.Gtk.WebKit.WebDatabase
data WebDatabase
class GObjectClass o => WebDatabaseClass o

-- | Returns the name of the <a>WebDatabase</a> as seen by the user.
webDatabaseGetDisplayName :: WebDatabaseClass self => self -> IO String

-- | Returns the expected size of the Database in bytes as defined by the
--   web author. The Web Database standard allows web authors to specify an
--   expected size of the database to optimize the user experience.
webDatabaseGetExpectedSize :: WebDatabaseClass self => self -> IO Int

-- | Returns the absolute filename to the WebKitWebDatabase file on disk.
webDatabaseGetFilename :: WebDatabaseClass self => self -> IO String

-- | Returns the canonical name of the <a>WebDatabase</a>.
webDatabaseGetName :: WebDatabaseClass self => self -> IO String

-- | Returns the security origin of the WebKitWebDatabase.
webDatabaseGetSecurityOrigin :: WebDatabaseClass self => self -> IO SecurityOrigin

-- | Returns the actual size of the <a>WebDatabase</a> space on disk in
--   bytes.
webDatabaseGetSize :: WebDatabaseClass self => self -> IO Int

-- | Removes the <a>WebDatabase</a> from its security origin and destroys
--   all data stored in the database.
webDatabaseRemove :: WebDatabaseClass self => self -> IO ()


-- | Note
--   
--   Function <a>webkit_web_data_source_get_data</a> haven't binding, no
--   idea how to handle <a>GString</a>
--   
--   Access to the WebKit Web DataSource
module Graphics.UI.Gtk.WebKit.WebDataSource
data WebDataSource
class GObjectClass o => WebDataSourceClass o

-- | Creates a new <a>WebDataSource</a> instance. The URL of the
--   <a>WebDataSource</a> will be set to <a>about:blank</a>.
webDataSourceNew :: IO WebDataSource

-- | Returns the raw data that represents the the frame's content. The data
--   will be incomplete until the data has finished loading. Returns
--   <a>Nothing</a> if the web frame hasn't loaded any data. Use
--   <tt>webkitWebDataSourceIsLoading</tt> to test if data source is in the
--   process of loading.
webDataSourceGetData :: WebDataSourceClass self => self -> IO (Maybe String)

-- | Returns the text encoding name as set in the <a>WebView</a>, or if
--   not, the text encoding of the response.
webDataSourceGetEncoding :: WebDataSourceClass self => self -> IO String

-- | Returns a reference to the original request that was used to load the
--   web content. The NetworkRequest returned by this method is the request
--   prior to the <a>committed</a> load state. See
--   <a>webDataSourceGetRequest</a> for getting the <a>committed</a>
--   request.
webDataSourceGetInitialRequest :: WebDataSourceClass self => self -> IO NetworkRequest

-- | Returns the main resource of the data_source
webDataSourceGetMainResource :: WebDataSourceClass self => self -> IO WebResource

-- | Returns a NetworkRequest that was used to create this
--   <a>WebDataSource</a>. The NetworkRequest returned by this method is
--   the request that was <a>committed</a>, and hence, different from the
--   request you get from the <a>webDataSourceGetInitialRequest</a> method.
webDataSourceGetRequest :: WebDataSourceClass self => self -> IO NetworkRequest

-- | Gives you a List of <a>WebResource</a> objects that compose the
--   <a>WebView</a> to which this <a>WebDataSource</a> is attached.
webDataSourceGetSubresources :: WebDataSourceClass self => self -> IO [WebResource]

-- | Return the unreachable URI of data_source. The <tt>dataSource</tt>
--   will have an unreachable URL if it was created using
--   <tt>WebFrame'</tt>s <tt>webFrameLoadAlternateHtmlString</tt> method.
webDataSourceGetUnreachableUri :: WebDataSourceClass self => self -> IO String

-- | Returns the <a>WebFrame</a> that represents this data source
webDataSourceGetWebFrame :: WebDataSourceClass self => self -> IO WebFrame

-- | Determines whether the data source is in the process of loading its
--   content.
webDataSourceIsLoading :: WebDataSourceClass self => self -> IO Bool


-- | The content of a <a>WebView</a>
--   
--   Note: Functon <tt>webkit_web_frame_get_global_context</tt> can't
--   binding now, Because it need <tt>JSGlobalContextRef</tt> exist in
--   JavaScriptCore.
--   
--   Function <tt>webkit_web_frame_print_full</tt> can't binding now,
--   Because library <tt>GtkPrintOperation</tt> haven't binding.
module Graphics.UI.Gtk.WebKit.WebFrame
data WebFrame
class GObjectClass o => WebFrameClass o
data LoadStatus

-- | Create a new <a>WebFrame</a> instance with the given <tt>webview</tt>.
--   
--   A <a>WebFrame</a> contains the content of one URI.
webFrameNew :: WebViewClass webview => webview -> IO WebFrame

-- | Return the <a>WebView</a> that manages the given <a>WebFrame</a>.
webFrameGetWebView :: WebFrameClass self => self -> IO WebView

-- | Return the name of the given <a>WebFrame</a>.
webFrameGetName :: WebFrameClass self => self -> IO (Maybe String)

-- | Returns a WebKitNetworkResponse object representing the response that
--   was given to the request for the given frame, or <a>Nothing</a> if the
--   frame was not created by a load.
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webFrameGetNetworkResponse :: WebFrameClass self => self -> IO (Maybe NetworkResponse)

-- | Return the title of the given <a>WebFrame</a>.
webFrameGetTitle :: WebFrameClass self => self -> IO (Maybe String)

-- | Return the URI of the given <a>WebFrame</a>.
webFrameGetUri :: WebFrameClass self => self -> IO (Maybe String)

-- | Return the <tt>WebFrame'</tt>s parent frame if it has one, Otherwise
--   return Nothing.
webFrameGetParent :: WebFrameClass self => self -> IO (Maybe WebFrame)

-- | Determines the current status of the load.
--   
--   frame : a WebKitWebView
--   
--   <ul>
--   <li>Since 1.1.7</li>
--   </ul>
webFrameGetLoadStatus :: WebFrameClass self => self -> IO LoadStatus

-- | Request loading of the specified URI string.
webFrameLoadUri :: WebFrameClass self => self -> String -> IO ()

-- | Requests loading of the given <tt>content</tt> with the specified
--   <tt>mime_type</tt>, <tt>encoding</tt> and <tt>base_uri</tt>.
--   
--   If <tt>mime_type</tt> is <tt>Nothing</tt>, "text/html" is assumed.
--   
--   If <tt>encoding</tt> is <tt>Nothing</tt>, "UTF-8" is assumed.
webFrameLoadString :: WebFrameClass self => self -> String -> (Maybe String) -> (Maybe String) -> String -> IO ()

-- | Request loading of an alternate content for a URL that is unreachable.
--   
--   Using this method will preserve the back-forward list. The URI passed
--   in <tt>base_uri</tt> has to be an absolute URI.
webFrameLoadAlternateString :: WebFrameClass self => self -> String -> String -> String -> IO ()

-- | Connects to a given URI by initiating an asynchronous client request.
--   
--   Creates a provisional data source that will transition to a committed
--   data source once any data has been received. Use
--   <a>webFrameStopLoading</a> to stop the load. This function is
--   typically invoked on the main frame.
webFrameLoadRequest :: (WebFrameClass self, NetworkRequestClass requ) => self -> requ -> IO ()

-- | Stops and pending loads on the given data source and those of its
--   children.
webFrameStopLoading :: WebFrameClass self => self -> IO ()

-- | Reloads the initial request.
webFrameReload :: WebFrameClass self => self -> IO ()

-- | Return the <a>WebFrame</a> associated with the given name or
--   <tt>Nothing</tt> in case none if found
--   
--   For pre-defined names, return the given webframe if name is
webFrameFindFrame :: WebFrameClass self => self -> String -> IO (Maybe WebFrame)

-- | Returns the committed data source.
webFrameGetDataSource :: WebFrameClass self => self -> IO WebDataSource

-- | Return the policy of horizontal scrollbar.
webFrameGetHorizontalScrollbarPolicy :: WebFrameClass self => self -> IO PolicyType

-- | Return the policy of vertical scrollbar.
webFrameGetVerticalScrollbarPolicy :: WebFrameClass self => self -> IO PolicyType

-- | You use the <a>webFrameLoadRequest</a> method to initiate a request
--   that creates a provisional data source. The provisional data source
--   will transition to a committed data source once any data has been
--   received. Use <a>webFrameGetDataSource</a> to get the committed data
--   source.
webFrameGetProvisionalDataSource :: WebFrameClass self => self -> IO WebDataSource

-- | Returns the frame's security origin.
webFrameGetSecurityOrigin :: WebFrameClass self => self -> IO SecurityOrigin

-- | Prints the given <a>WebFrame</a>.
--   
--   by presenting a print dialog to the user.
webFramePrint :: WebFrameClass self => self -> IO ()
instance Enum LoadStatus


-- | One item of the <a>WebBackForwardList</a> and or global history
module Graphics.UI.Gtk.WebKit.WebHistoryItem
data WebHistoryItem
class GObjectClass o => WebHistoryItemClass o

-- | Create a new <a>WebHistoryItem</a> instance.
--   
--   A history item consists out of a title and a uri, it can be part of
--   the WebBackForwardList and the global history.
--   
--   The global history is used for coloring the links of visited sites.
--   <a>WebHistoryItem</a> constructed with <a>webHistoryItemNew</a> are
--   automatically added to the global history.
webHistoryItemNew :: IO WebHistoryItem

-- | Create a new <a>WebHistoryItem</a> instance with the given
--   <tt>uri</tt> and <tt>title</tt>.
--   
--   <a>WebHistoryItem</a> constructed with
--   <a>webHistoryItemNewWithData</a> are automatically added to the global
--   history.
webHistoryItemNewWithData :: String -> String -> IO WebHistoryItem

-- | The title of the <a>WebHistoryItem</a>
--   
--   Default value: <tt>Nothing</tt>
webHistoryItemTitle :: WebHistoryItemClass self => ReadAttr self (Maybe String)

-- | The alternate title of the history item.
--   
--   Default value: <tt>Nothing</tt>
webHistoryItemAlternateTitle :: WebHistoryItemClass self => Attr self (Maybe String)

-- | The URI of the history item.
--   
--   Default value: <tt>Nothing</tt>
webHistoryItemUri :: WebHistoryItemClass self => ReadAttr self (Maybe String)

-- | The original URI of the history item.
--   
--   Default value: <tt>Nothing</tt>
webHistoryItemOriginalUri :: WebHistoryItemClass self => ReadAttr self (Maybe String)

-- | The time at which the history item was last visited.
--   
--   Allowed values: &gt;= 0
--   
--   Default value: 0
webHistoryItemLastVisitedTime :: WebHistoryItemClass self => ReadAttr self Double

-- | Return the title of <a>WebHistoryItem</a>.
webHistoryItemGetTitle :: WebHistoryItemClass self => self -> IO (Maybe String)

-- | Return the alternate title of WebHistoryItem.
webHistoryItemGetAlternateTitle :: WebHistoryItemClass self => self -> IO (Maybe String)

-- | Set an alternate title for WebHistoryItem.
webHistoryItemSetAlternateTitle :: WebHistoryItemClass self => self -> (Maybe String) -> IO ()

-- | Return the URI of WebHistoryItem.
webHistoryItemGetUri :: WebHistoryItemClass self => self -> IO (Maybe String)

-- | Return the original URI of WebHistoryItem.
webHistoryItemGetOriginalUri :: WebHistoryItemClass self => self -> IO (Maybe String)

-- | Return the last visited time of WebHistoryItem.
webHistoryItemGetLastVisitedTime :: WebHistoryItemClass self => self -> IO Double

-- | Makes a copy of the item for use with other WebView objects.
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webHistoryItemCopy :: WebHistoryItemClass self => self -> IO WebHistoryItem


-- | Access to the WebKit Inspector
module Graphics.UI.Gtk.WebKit.WebInspector
data WebInspector
class GObjectClass o => WebInspectorClass o

-- | Obtains the URI that is currently being inspected
webInspectorGetInspectedUri :: WebInspectorClass self => self -> IO String

-- | Obtains the <a>WebView</a> that is used to render the
--   <a>WebInspector</a>.
--   
--   The <a>WebView</a> instance is created by the application, by handling
--   the <a>inspect-web-view</a> signal. This means that it may return
--   <tt>Nothing</tt> if the user hasn't inspected anything
webInspectorGetWebView :: WebInspectorClass self => self -> IO (Maybe WebView)

-- | Causes the Web Inspector to inspect the node that is located at the
--   given coordinates of the widget. The coordinates should be relative to
--   the WebKitWebView widget, not to the scrollable content, and may be
--   obtained from a <a>Event</a> directly.
--   
--   This means x, and y being zero doesn't guarantee you will hit the
--   left-most top corner of the content, since the contents may have been
--   scrolled.
--   
--   <ul>
--   <li>Since 1.1.17</li>
--   </ul>
webInspectorInspectCoordinates :: WebInspectorClass self => self -> Int -> Int -> IO ()

-- | Causes the Web Inspector to be shown.
--   
--   <ul>
--   <li>Since 1.1.17</li>
--   </ul>
webInspectorShow :: WebInspectorClass self => self -> IO ()

-- | Causes the Web Inspector to be closed.
--   
--   <ul>
--   <li>Since 1.1.17</li>
--   </ul>
webInspectorClose :: WebInspectorClass self => self -> IO ()

-- | The URI that is currently being inspected.
webInspectorInspectedUri :: WebInspectorClass self => ReadAttr self String

-- | This is enabling JavaScript profiling in the Inspector. This means
--   that Console.profiles will return the profiles.
webInspectorJSProfilingEnable :: WebInspectorClass self => Attr self Bool

-- | This is enabling Timeline profiling in the Inspector.
--   
--   Default value: <a>False</a>
--   
--   <ul>
--   <li>Since 1.1.17</li>
--   </ul>
webInspectorTimelineProfilingEnabled :: WebInspectorClass self => Attr self Bool

-- | The Web View that renders the Web Inspector itself.
webInspectorWebView :: WebInspectorClass self => ReadAttr self WebView

-- | Emitted when the inspector should appear in a separate window
--   
--   return True if the signal is handled
attachWindow :: WebInspectorClass self => Signal self (IO Bool)

-- | Emitted when the inspector should appear in a separate window.
--   
--   return True if the signal has been handled
detachWindow :: WebInspectorClass self => Signal self (IO Bool)

-- | Emitted when the inspector window should be closed.
--   
--   return True if the signal is handled.
closeWindow :: WebInspectorClass self => Signal self (IO Bool)

-- | Emitted when the inspector window should be displayed. Notice that the
--   window must have been created already by handling
--   <a>inspectWebView</a>.
--   
--   return True if the signal has been handled
showWindow :: WebInspectorClass self => Signal self (IO Bool)

-- | Emitted when the inspection is done. You should release your
--   references on the inspector at this time. The inspected <a>WebView</a>
--   may no longer exist when this signal is emitted.
finished :: WebInspectorClass self => Signal self (IO ())

-- | Emitted when the user activates the <tt>inspect</tt> context menu item
--   to inspect a web view. The application which is interested in the
--   inspector should create a window, or otherwise add the <a>WebView</a>
--   it creates to an existing window.
--   
--   You don't need to handle the reference count of the <a>WebView</a>
--   instance you create; the widget to which you add it will do that.
inspectWebView :: WebInspectorClass self => Signal self (WebView -> IO WebView)


-- | Access to the WebKit NavigationAction
module Graphics.UI.Gtk.WebKit.WebNavigationAction
data WebNavigationAction
class GObjectClass o => WebNavigationActionClass o
data NavigationReason
WebNavigationReasonLinkClicked :: NavigationReason
WebNavigationReasonFormSubmitted :: NavigationReason
WebNavigationReasonBackForward :: NavigationReason
WebNavigationReasonReload :: NavigationReason
WebNavigationReasonFormResubmitted :: NavigationReason
WebNavigationReasonOther :: NavigationReason

-- | Returns the DOM identifier for the mouse button used to click. DOM
--   button values are 1, 2 and 3 for left, middle and right buttons. If
--   the action was not initiated by a mouse click, returns -1.
webNavigationActionGetButton :: WebNavigationActionClass self => self -> IO Int

-- | Returns a bitmask with the the state of the modifier keys.
webNavigationActionGetModifierState :: WebNavigationActionClass self => self -> IO Int

-- | Returns the URI that was originally requested. This may differ from
--   the navigation target, for instance because of a redirect.
webNavigationActionGetOriginalUri :: WebNavigationActionClass self => self -> IO String

-- | Sets the URI that was originally requested. This may differ from the
--   navigation target, for instance because of a redirect.
webNavigationActionSetOriginalUri :: WebNavigationActionClass self => self -> String -> IO ()

-- | Returns the reason why WebKit is requesting a navigation.
webNavigationActionGetReason :: WebNavigationActionClass self => self -> IO NavigationReason

-- | Sets the reason why WebKit is requesting a navigation.
webNavigationActionSetReason :: WebNavigationActionClass self => self -> NavigationReason -> IO ()

-- | Returns the target frame of the action.
webNavigationActionGetTargetFrame :: WebNavigationActionClass self => self -> IO String
instance Enum NavigationReason
instance Eq NavigationReason
instance Show NavigationReason


-- | Access to the WebKit PolicyDecision
module Graphics.UI.Gtk.WebKit.WebPolicyDecision
data WebPolicyDecision
class GObjectClass o => WebPolicyDecisionClass o

-- | Will send the DOWNLOAD decision to the policy implementer.
webPolicyDecisionDownload :: WebPolicyDecisionClass self => self -> IO ()

-- | Will send the IGNORE decision to the policy implementer.
webPolicyDecisionIgnore :: WebPolicyDecisionClass self => self -> IO ()

-- | Will send the USE decision to the policy implementer.
webPolicyDecisionUse :: WebPolicyDecisionClass self => self -> IO ()


-- | Note:
--   
--   Function <a>webkit_web_resource_get_data</a> haven't binding no idea
--   how to handle <a>GString</a>.
--   
--   Access to the WebKit Web Resource
module Graphics.UI.Gtk.WebKit.WebResource
data WebResource
class GObjectClass o => WebResourceClass o

-- | Returns a new WebKitWebResource. The <tt>encoding</tt> can be empty.
--   The <tt>frameName</tt> can be used if the resource represents contents
--   of an entire HTML frame, otherwise pass empty.
webResourceNew :: String -> Int -> String -> String -> String -> String -> IO WebResource

-- | Returns the data of the WebResource.
webResourceGetData :: WebResourceClass self => self -> IO (Maybe String)

-- | Get encoding.
webResourceGetEncoding :: WebResourceClass self => self -> IO (Maybe String)

-- | Get frame name.
webResourceGetFrameName :: WebResourceClass self => self -> IO (Maybe String)

-- | Get mime type.
webResourceGetMimeType :: WebResourceClass self => self -> IO (Maybe String)

-- | Get uri.
webResourceGetUri :: WebResourceClass self => self -> IO String


-- | Control the behaviour of a <a>WebView</a>
module Graphics.UI.Gtk.WebKit.WebSettings
data WebSettings
class GObjectClass o => WebSettingsClass o
data EditingBehavior

-- | Create a new <a>WebSettings</a> instance.
--   
--   A <a>WebSettings</a> can be applied to a <a>WebView</a> to control the
--   to be used text encoding, color, font size, printing mode,script
--   support, loading of images and various other things.
webSettingsNew :: IO WebSettings

-- | Copy an existing <a>WebSettings</a> instance.
webSettingsCopy :: WebSettingsClass self => self -> IO WebSettings

-- | Return the User-Agent string currently used.
webSettingsGetUserAgent :: WebSettingsClass self => self -> IO (Maybe String)

-- | The default Cursive font family used to display text
--   
--   Default value <a>serif</a>
webSettingsCursiveFontFamily :: WebSettingsClass self => Attr self String

-- | The default font family used to display text
--   
--   Default value: <a>sans-serif</a>
webSettingsDefaultFontFamily :: WebSettingsClass self => Attr self String

-- | The default Fantasy font family used to display text
webSettingsFantasyFontFamily :: WebSettingsClass self => Attr self String

-- | The default font family used to display monospace text.
--   
--   Default value: <a>monospace</a>
webSettingsMonospaceFontFamily :: WebSettingsClass self => Attr self String

-- | The default Sans Serif font family used to display text
--   
--   Default value <a>sans-serif</a>
webSettingsSansFontFamily :: WebSettingsClass self => Attr self String

-- | The default Serif font family used to display text
--   
--   Default value: <a>serif</a>
webSettingsSerifFontFamily :: WebSettingsClass self => Attr self String

-- | The default font size used to display text
--   
--   Default value: &gt;=5
webSettingsDefaultFontSize :: WebSettingsClass self => Attr self Int

-- | The default font size used to display monospace text
--   
--   Allowed values: &gt;= 5
--   
--   Default value: 10
webSettingsDefaultMonospaceFontSize :: WebSettingsClass self => Attr self Int

-- | The minimum font size used to display text.
--   
--   Allowed values: &gt;=1
--   
--   Default value: 5
webSettingsMinimumFontSize :: WebSettingsClass self => Attr self Int

-- | The minimum logical font size used to display text
--   
--   Allowed values: &gt;=1
--   
--   Default value: 5
webSettingsMinimumLogicalFontSize :: WebSettingsClass self => Attr self Int

-- | Load images automatically
--   
--   Default value: True
webSettingsAutoLoadImages :: WebSettingsClass self => Attr self Bool

-- | Automatically shrink standalone images to fit
--   
--   Default value: True
webSettingsAutoShrinkImages :: WebSettingsClass self => Attr self Bool

-- | The default encoding used to display text
--   
--   Default value <a>iso-8859-1</a>
webSettingsDefaultEncoding :: WebSettingsClass self => Attr self String

-- | This settings controls various editing behaviors
webSettingsEditingBehavior :: WebSettingsClass self => Attr self EditingBehavior

-- | Whether to enable caret browsing mode.
webSettingsEnableCaretBrowsing :: WebSettingsClass self => Attr self Bool

-- | Whether developer extensions should be enabled.
--   
--   This enables, for now, the <a>WebInspector</a>
webSettingsEnableDeveloperExtras :: WebSettingsClass self => Attr self Bool

-- | Whether to enable HTML5 client-side SQL database support.
webSettingsEnableHtml5Database :: WebSettingsClass self => Attr self Bool

-- | Whether to enable HTML5 localStorage support.
webSettingsEnableHtml5LocalStorage :: WebSettingsClass self => Attr self Bool

-- | Whether to enable HTML5 offline web application cache support.
webSettingsEnableOfflineWebApplicationCache :: WebSettingsClass self => Attr self Bool

-- | Enable embedded plugin objects.
webSettingsEnablePlugins :: WebSettingsClass self => Attr self Bool

-- | Whether to enable private browsing mode.
webSettingsEnablePrivateBrowsing :: WebSettingsClass self => Attr self Bool

-- | Enable embedded scripting languages
webSettingsEnableScripts :: WebSettingsClass self => Attr self Bool

-- | Whether to enable speel checking while typing.
webSettingsEnableSpellChecking :: WebSettingsClass self => Attr self Bool

-- | Whether to allow files loaded through file:
webSettingsEnableUniversalAccessFromFileUris :: WebSettingsClass self => Attr self Bool

-- | Whether to enable the XSS Auditor.
--   
--   This feature filters some kinds of reflective XSS attacks on
--   vulnerable web sites.
webSettingsEnableXssAuditor :: WebSettingsClass self => Attr self Bool

-- | Enables the site-specific compatibility workarounds.
--   
--   Default value: False
webSettingsEnableSiteSpecificQuirks :: WebSettingsClass self => Attr self Bool

-- | Whether to enable DOM paste. If set to <a>True</a>,
--   document.execCommand(<a>Paste</a>) will correctly execute and paste
--   content of the clipboard.
--   
--   Default value: <a>False</a>
--   
--   <ul>
--   <li>Since 1.1.16</li>
--   </ul>
webSettingsEnableDomPaste :: WebSettingsClass self => Attr self Bool

-- | Whether right-clicks should be handled automatically to create, and
--   display the context menu. Turning this off will make WebKitGTK+ not
--   emit the populate-popup signal. Notice that the default button press
--   event handler may still handle right clicks for other reasons, such as
--   in-page context menus, or right-clicks that are handled by the page
--   itself.
--   
--   Default value: <a>True</a>
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webSettingsEnableDefaultContextMenu :: WebSettingsClass self => Attr self Bool

-- | Enable or disable the page cache. Disabling the page cache is
--   generally only useful for special circumstances like low-memory
--   scenarios or special purpose applications like static HTML viewers.
--   This setting only controls the Page Cache, this cache is different
--   than the disk-based or memory-based traditional 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:
--   
--   Default value: <a>False</a>
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webSettingsEnablePageCache :: WebSettingsClass self => Attr self Bool

-- | Whether to enable the Spatial Navigation. This feature consists in the
--   ability to navigate between focusable elements in a Web page, such as
--   hyperlinks 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 he might be trying to reach
--   towards the right, and if there are multiple elements, which element
--   he probably wants.
--   
--   Default value: <a>False</a>
--   
--   <ul>
--   <li>Since 1.1.23</li>
--   </ul>
webSettingsEnableSpatialNavigation :: WebSettingsClass self => Attr self Bool

-- | Enforce a resolution of 96 DPI.
webSettingsEnforce96Dpi :: WebSettingsClass self => Attr self Bool

-- | Whether JavaScript can open popup windows automatically without user
--   intervention.
webSettingsJSCanOpenWindowAuto :: WebSettingsClass self => Attr self Bool

-- | Whether background images should be printed
--   
--   Default value: True
webSettingsPrintBackgrounds :: WebSettingsClass self => Attr self Bool

-- | Whether text areas are resizable
--   
--   Default value : True
webSettingsResizableTextAreas :: WebSettingsClass self => Attr self Bool

-- | The languages to be used for spell checking, separated by commas
--   
--   The locale string typically is in the form lang_COUNTRY, where lang is
--   an ISO-639 language code, and COUNTRY is an ISO-3166 country code. For
--   instance, sv_FI for Swedish as written in Finland or pt_BR for
--   Portuguese as written in Brazil.
--   
--   If no value is specified then the value returned by
--   gtk_get_default_language will be used.
--   
--   Default value: <tt>Nothing</tt>
webSettingsSpellCheckingLang :: WebSettingsClass self => Attr self (Maybe String)

-- | Whether the tab key cycles through elements on the page.
--   
--   If flag is <a>True</a>, pressing the tab key will focus the next
--   element in the <tt>webView</tt>. If flag is <a>False</a>, the
--   <tt>webView</tt> will interpret tab key presses as normal key presses.
--   If the selected element is editable, the tab key will cause the
--   insertion of a tab character.
--   
--   Default value: <a>True</a>
--   
--   <ul>
--   <li>Since 1.1.17</li>
--   </ul>
webSettingsTabKeyCyclesThroughElements :: WebSettingsClass self => Attr self Bool

-- | The User-Agent string used by WebKit
--   
--   This will return a default User-Agent string if a custom string wasn't
--   provided by the application. Setting this property to a ((void *)0)
--   value or an empty string will result in the User-Agent string being
--   reset to the default value.
--   
--   Default value: "Mozilla<i>5.0 (X11; U; Linux x86_64; c)
--   AppleWebKit</i>531.2+ (KHTML, like Gecko) Safari/531.2+"
webSettingsUserAgent :: WebSettingsClass self => Attr self String

-- | The URI of a stylesheet that is applied to every page.
--   
--   Default value: <tt>Nothing</tt>
webSettingsUserStylesheetUri :: WebSettingsClass self => Attr self (Maybe String)

-- | The value by which the zoom level is changed when zooming in or out
--   
--   Allowed values: &gt;= 0
--   
--   Default value: 0.1
webSettingsZoomStep :: WebSettingsClass self => Attr self Float
instance Enum EditingBehavior


-- | Note:
--   
--   Signal `window-object-cleared` can't be bound now, because it needs
--   JavaScriptCore that hasn't binding.
--   
--   Signal `create-plugin-widget` can't be bound now, no idea how to bind
--   <tt>GHaskellTable</tt>
--   
--   <ul>
--   <li>TODO:</li>
--   </ul>
--   
--   Binding for webkit_web_view_get_snapshot
module Graphics.UI.Gtk.WebKit.WebView
data WebView
class ContainerClass o => WebViewClass o
data NavigationResponse
NavigationResponseAccept :: NavigationResponse
NavigationResponseIgnore :: NavigationResponse
NavigationResponseDownload :: NavigationResponse
data TargetInfo
WebViewTargetInfoHtml :: TargetInfo
WebViewTargetInfoText :: TargetInfo
WebViewTargetInfoImage :: TargetInfo
WebViewTargetInfoUriList :: TargetInfo
WebViewTargetInfoNetscapeUrl :: TargetInfo
data LoadStatus
LoadProvisional :: LoadStatus
LoadCommitted :: LoadStatus
LoadFinished :: LoadStatus
LoadFirstVisuallyNonEmptyLayout :: LoadStatus
LoadFailed :: LoadStatus
data ViewMode
WebViewViewModeWindowed :: ViewMode
WebViewViewModeFloating :: ViewMode
WebViewViewModeFullscreen :: ViewMode
WebViewViewModeMaximized :: ViewMode
WebViewViewModeMinimized :: ViewMode

-- | Create a new <a>WebView</a> widget.
--   
--   It is a <a>Widget</a> you can embed in a <a>ScrolledWindow</a>.
--   
--   You can load any URI into the <a>WebView</a> or any kind of data
--   string.
webViewNew :: IO WebView

-- | Requests loading of the specified URI string in a <a>WebView</a>
webViewLoadUri :: WebViewClass self => self -> String -> IO ()

-- | Loading the <tt>content</tt> string as html. The URI passed in
--   base_uri has to be an absolute URI. Deprecated since webkit v1.1.1,
--   use <a>webViewLoadString</a> instead.
webViewLoadHtmlString :: WebViewClass self => self -> String -> String -> IO ()

-- | Requests loading of the specified asynchronous client request. Creates
--   a provisional data source that will transition to a committed data
--   source once any data has been received. Use <a>webViewStopLoading</a>
--   to stop the load.
webViewLoadRequest :: (WebViewClass self, NetworkRequestClass request) => self -> request -> IO ()

-- | Requests loading of the given <tt>content</tt> with the specified
--   <tt>mime_type</tt>, <tt>encoding</tt> and <tt>base_uri</tt>. If
--   <tt>mime_type</tt> is <tt>Nothing</tt>, <a>text/html</a> is assumed.
--   If <tt>encoding</tt> is <tt>Nothing</tt>, <a>UTF-8</a> is assumed.
webViewLoadString :: WebViewClass self => self -> String -> (Maybe String) -> (Maybe String) -> String -> IO ()

-- | Determines the current status of the load.
webViewGetLoadStatus :: WebViewClass self => self -> IO LoadStatus

-- | Stops and pending loads on the given data source.
webViewStopLoading :: WebViewClass self => self -> IO ()

-- | Reloads the <a>WebView</a>
webViewReload :: WebViewClass self => self -> IO ()

-- | Reloads the <a>WebView</a> without using any cached data.
webViewReloadBypassCache :: WebViewClass self => self -> IO ()

-- | Determine whether <a>WebView</a> has a previous history item.
webViewCanGoBack :: WebViewClass self => self -> IO Bool

-- | Determine whether <a>WebView</a> has a next history item.
webViewCanGoForward :: WebViewClass self => self -> IO Bool

-- | Loads the previous history item.
webViewGoBack :: WebViewClass self => self -> IO ()

-- | Loads the next history item.
webViewGoForward :: WebViewClass self => self -> IO ()

-- | Return the <a>WebBackForwardList</a>
webViewGetBackForwardList :: WebViewClass self => self -> IO WebBackForwardList

-- | Set the <a>WebView</a> to maintian a back or forward list of history
--   items.
webViewSetMaintainsBackForwardList :: WebViewClass self => self -> Bool -> IO ()

-- | Go to the specified <a>WebHistoryItem</a>
webViewGoToBackForwardItem :: (WebViewClass self, WebHistoryItemClass item) => self -> item -> IO Bool

-- | Determines whether <a>WebView</a> has a history item of
--   <tt>steps</tt>.
--   
--   Negative values represent steps backward while positive values
--   represent steps forward
webViewCanGoBackOrForward :: WebViewClass self => self -> Int -> IO Bool

-- | Loads the history item that is the number of <tt>steps</tt> away from
--   the current item. Negative values represent steps backward while
--   positive values represent steps forward.
webViewGoBackOrForward :: WebViewClass self => self -> Int -> IO ()

-- | Returns the zoom level of <a>WebView</a> i.e. the factor by which
--   elements in the page are scaled with respect to their original size.
webViewGetZoomLevel :: WebViewClass self => self -> IO Float

-- | Sets the zoom level of <a>WebView</a>.
webViewSetZoomLevel :: WebViewClass self => self -> Float -> IO ()

-- | Increases the zoom level of <a>WebView</a>.
webViewZoomIn :: WebViewClass self => self -> IO ()

-- | Decreases the zoom level of <a>WebView</a>.
webViewZoomOut :: WebViewClass self => self -> IO ()

-- | Returns whether the zoom level affects only text or all elements.
webViewGetFullContentZoom :: WebViewClass self => self -> IO Bool

-- | Sets whether the zoom level affects only text or all elements.
webViewSetFullContentZoom :: WebViewClass self => self -> Bool -> IO ()

-- | Determines whether can cuts the current selection inside
--   <a>WebView</a> to the clipboard
webViewCanCutClipboard :: WebViewClass self => self -> IO Bool

-- | Determines whether can copies the current selection inside
--   <a>WebView</a> to the clipboard
webViewCanCopyClipboard :: WebViewClass self => self -> IO Bool

-- | Determines whether can pastes the current contents of the clipboard to
--   the <a>WebView</a>
webViewCanPasteClipboard :: WebViewClass self => self -> IO Bool

-- | Cuts the current selection inside <a>WebView</a> to the clipboard.
webViewCutClipboard :: WebViewClass self => self -> IO ()

-- | Copies the current selection inside <a>WebView</a> to the clipboard.
webViewCopyClipboard :: WebViewClass self => self -> IO ()

-- | Pastes the current contents of the clipboard to the <a>WebView</a>
webViewPasteClipboard :: WebViewClass self => self -> IO ()

-- | Determines whether or not it is currently possible to redo the last
--   editing command in the view
webViewCanRedo :: WebViewClass self => self -> IO Bool

-- | Determines whether or not it is currently possible to undo the last
--   editing command in the view
webViewCanUndo :: WebViewClass self => self -> IO Bool

-- | Redoes the last editing command in the view, if possible.
webViewRedo :: WebViewClass self => self -> IO ()

-- | Undoes the last editing command in the view, if possible.
webViewUndo :: WebViewClass self => self -> IO ()

-- | Deletes the current selection inside the <a>WebView</a>
webViewDeleteSelection :: WebViewClass self => self -> IO ()

-- | Determines whether text was selected
webViewHasSelection :: WebViewClass self => self -> IO Bool

-- | Attempts to select everything inside the <a>WebView</a>
webViewSelectAll :: WebViewClass self => self -> IO ()

-- | Returns the default encoding of the <a>WebView</a>
webViewGetEncoding :: WebViewClass self => self -> IO (Maybe String)

-- | Sets the current <a>WebView</a> encoding, without modifying the
--   default one, and reloads the page
webViewSetCustomEncoding :: WebViewClass self => self -> (Maybe String) -> IO ()

-- | Returns the current encoding of <a>WebView</a>,not the default
--   encoding.
webViewGetCustomEncoding :: WebViewClass self => self -> IO (Maybe String)

-- | Gets the value of the <a>view-mode</a> property of the <a>WebView</a>
webViewGetViewMode :: WebView -> IO ViewMode
webViewSetViewMode :: WebView -> ViewMode -> IO ()

-- | Returns whether <a>WebView</a> is in view source mode
webViewGetViewSourceMode :: WebViewClass self => self -> IO Bool

-- | Set whether the view should be in view source mode. Setting this mode
--   to (!(0)) before loading a URI will display the source of the web page
--   in a nice and readable format.
webViewSetViewSourceMode :: WebViewClass self => self -> Bool -> IO ()

-- | Returns whether the <a>WebView</a> has a transparent background
webViewGetTransparent :: WebViewClass self => self -> IO Bool

-- | Sets whether the WebKitWebView has a transparent background.
--   
--   Pass False to have the <a>WebView</a> draw a solid background (the
--   default), otherwise pass True.
webViewSetTransparent :: WebViewClass self => self -> Bool -> IO ()

-- | This function returns the list of targets this <a>WebView</a> can
--   provide for clipboard copying and as DND source. The targets in the
--   list are added with values from the <tt>WebViewTargetInfo</tt> enum,
--   using <tt>targetListAdd</tt> and <tt>targetListAddTextTargets</tt>.
webViewGetCopyTargetList :: WebViewClass self => self -> IO (Maybe TargetList)

-- | This function returns the list of targets this <a>WebView</a> can
--   provide for clipboard pasteing and as DND source. The targets in the
--   list are added with values from the <tt>WebViewTargetInfo</tt> enum,
--   using <tt>targetListAdd</tt> and <tt>targetListAddTextTargets</tt>.
webViewGetPasteTargetList :: WebViewClass self => self -> IO (Maybe TargetList)

-- | Attempts to highlight all occurances of string inside <a>WebView</a>
webViewMarkTextMatches :: WebViewClass self => self -> String -> Bool -> Int -> IO Int

-- | Removes highlighting previously set by <tt>webViewMarkTextMarches</tt>
webViewUnMarkTextMatches :: WebViewClass self => self -> IO ()

-- | Highlights text matches previously marked by
--   <a>webViewMarkTextMatches</a>
webViewSetHighlightTextMatches :: WebViewClass self => self -> Bool -> IO ()

-- | Obtains the URI for the favicon for the given WebKitWebView, or
--   <a>Nothing</a> if there is none.
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webViewGetIconUri :: WebViewClass self => self -> IO (Maybe String)

-- | Obtains a GdkPixbuf of the favicon for the given <a>WebView</a>. This
--   will return <tt>Nothing</tt> if there is no icon for the current
--   <a>WebView</a> or if the icon is in the database but not available at
--   the moment of this call. Use <a>webViewGetIconUri</a> if you need to
--   distinguish these cases.
--   
--   Usually you want to connect to WebKitWebView::icon-loaded and call
--   this method in the callback.
--   
--   See also <tt>faviconDatabaseTryGetFaviconPixbuf</tt>. Contrary to this
--   function the icon database one returns the URL of the page containing
--   the icon.
webViewTryGetFaviconPixbuf :: WebView -> Int -> Int -> IO (Maybe Pixbuf)

-- | Execute the script specified by <tt>script</tt>
webViewExecuteScript :: WebViewClass self => self -> String -> IO ()

-- | Returns whether or not a <tt>mimetype</tt> can be displayed using this
--   view.
webViewCanShowMimeType :: WebViewClass self => self -> String -> IO Bool

-- | Returns whether the user is allowed to edit the document.
webViewGetEditable :: WebViewClass self => self -> IO Bool

-- | Sets whether allows the user to edit its HTML document.
webViewSetEditable :: WebViewClass self => self -> Bool -> IO ()

-- | Obtains the <a>WebInspector</a> associated with the <a>WebView</a>
webViewGetInspector :: WebViewClass self => self -> IO WebInspector

-- | Determines the current progress of the load
webViewGetProgress :: WebViewClass self => self -> IO Double

-- | Looks for a specified string inside <a>WebView</a>
webViewSearchText :: WebViewClass self => self -> String -> Bool -> Bool -> Bool -> IO Bool

-- | Move the cursor in view as described by step and count.
webViewMoveCursor :: WebViewClass self => self -> MovementStep -> Int -> IO ()

-- | Return the main <a>WebFrame</a> of the given <a>WebView</a>.
webViewGetMainFrame :: WebViewClass self => self -> IO WebFrame

-- | Return the focused <a>WebFrame</a> (if any) of the given
--   <a>WebView</a>.
webViewGetFocusedFrame :: WebViewClass self => self -> IO (Maybe WebFrame)

-- | Apply <a>WebSettings</a> to a given <a>WebView</a>
--   
--   !!NOTE!!, currently lack of useful APIs of <a>WebSettings</a> in
--   webkitgtk. If you want to set the encoding, font family or font size
--   of the <a>WebView</a>, please use related functions.
webViewSetWebSettings :: (WebViewClass self, WebSettingsClass settings) => self -> settings -> IO ()

-- | Return the <a>WebSettings</a> currently used by <a>WebView</a>.
webViewGetWebSettings :: WebViewClass self => self -> IO WebSettings

-- | Returns the instance of WebKitWebWindowFeatures held by the given
--   WebKitWebView.
webViewGetWindowFeatures :: WebViewClass self => self -> IO WebWindowFeatures

-- | Returns the title of <a>WebView</a> document, or Nothing in case of
--   failure
webViewGetTitle :: WebViewClass self => self -> IO (Maybe String)

-- | Returns the current URI of the contents displayed by the
--   <a>WebView</a>, or Nothing in case of failure
webViewGetUri :: WebViewClass self => self -> IO (Maybe String)
webViewGetDomDocument :: WebView -> IO (Maybe Document)

-- | Zoom level of the <a>WebView</a> instance
webViewZoomLevel :: WebViewClass self => Attr self Float

-- | Whether the full content is scaled when zooming
--   
--   Default value: False
webViewFullContentZoom :: WebViewClass self => Attr self Bool

-- | The default encoding of the <a>WebView</a> instance
--   
--   Default value: <tt>Nothing</tt>
webViewEncoding :: WebViewClass self => ReadAttr self (Maybe String)

-- | The custom encoding of the <a>WebView</a> instance
--   
--   Default value: <tt>Nothing</tt>
webViewCustomEncoding :: WebViewClass self => Attr self (Maybe String)

-- | Determines the current status of the load.
--   
--   Default value: <tt>LoadFinished</tt>
webViewLoadStatus :: WebViewClass self => ReadAttr self LoadStatus

-- | Determines the current progress of the load
--   
--   Default Value: 1
webViewProgress :: WebViewClass self => ReadAttr self Double

-- | Title of the <a>WebView</a> instance
webViewTitle :: WebViewClass self => ReadAttr self (Maybe String)

-- | The associated webInspector instance of the <a>WebView</a>
webViewInspector :: WebViewClass self => ReadAttr self WebInspector

-- | The associated webSettings of the <a>WebView</a> instance
webViewWebSettings :: WebViewClass self => Attr self WebSettings

-- | view source mode of the <a>WebView</a> instance
webViewViewSourceMode :: WebViewClass self => Attr self Bool

-- | transparent background of the <a>WebView</a> instance
webViewTransparent :: WebViewClass self => Attr self Bool

-- | Whether content of the <a>WebView</a> can be modified by the user
--   
--   Default value: <tt>False</tt>
webViewEditable :: WebViewClass self => Attr self Bool

-- | Returns the current URI of the contents displayed by the
--   <tt>web_view</tt>.
--   
--   Default value: Nothing
webViewUri :: WebViewClass self => ReadAttr self (Maybe String)

-- | The list of targets this web view supports for clipboard copying.
webViewCopyTargetList :: WebViewClass self => ReadAttr self (Maybe TargetList)

-- | The list of targets this web view supports for clipboard pasteing.
webViewPasteTargetList :: WebViewClass self => ReadAttr self (Maybe TargetList)

-- | An associated <a>WebWindowFeatures</a> instance.
webViewWindowFeatures :: WebViewClass self => Attr self WebWindowFeatures

-- | The URI for the favicon for the WebKitWebView.
--   
--   Default value: <a>Nothing</a>
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
webViewIconUri :: WebViewClass self => ReadAttr self String

-- | The <a>IMMulticontext</a> for the WebKitWebView.
--   
--   This is the input method context used for all text entry widgets
--   inside the WebKitWebView. It can be used to generate context menu
--   items for controlling the active input method.
--   
--   <ul>
--   <li>Since 1.1.20</li>
--   </ul>
webViewImContext :: WebViewClass self => ReadAttr self IMContext

-- | When a <a>WebFrame</a> begins to load, this signal is emitted
loadStarted :: WebViewClass self => Signal self (WebFrame -> IO ())

-- | When a <a>WebFrame</a> loaded the first data, this signal is emitted
loadCommitted :: WebViewClass self => Signal self (WebFrame -> IO ())

-- | When the global progress changed, this signal is emitted
--   
--   the global progress will be passed back to user function
progressChanged :: WebViewClass self => Signal self (Int -> IO ())

-- | When loading finished, this signal is emitted
loadFinished :: WebViewClass self => Signal self (WebFrame -> IO ())

-- | When An error occurred while loading.
--   
--   By default, if the signal is not handled, the WebView will display a
--   stock error page.
--   
--   You need to handle the signal if you want to provide your own error
--   page.
--   
--   The URI that triggered the error and the <a>GError</a> will be passed
--   back to user function.
loadError :: WebViewClass self => Signal self (WebFrame -> String -> GError -> IO Bool)

-- | Emitted after Icon loaded
iconLoaded :: WebViewClass self => Signal self (String -> IO ())

-- | When document loading finished, this signal is emitted
documentLoadFinished :: WebViewClass self => Signal self (WebFrame -> IO ())

-- | Emitted when a request is about to be sent. You can modify the request
--   while handling this signal. You can set the URI in the
--   <a>NetworkRequest</a> object itself, and add<i>remove</i>replace
--   headers using the SoupMessage object it carries, if it is present. See
--   <tt>networkRequestGetMessage</tt>. Setting the request URI to
--   <a>about:blank</a> will effectively cause the request to load nothing,
--   and can be used to disable the loading of specific resources.
--   
--   Notice that information about an eventual redirect is available in
--   response's SoupMessage, not in the SoupMessage carried by the request.
--   If response is ((void *)0), then this is not a redirected request.
--   
--   The <a>WebResource</a> object will be the same throughout all the
--   lifetime of the resource, but the contents may change from inbetween
--   signal emissions.
resourceRequestStarting :: WebViewClass self => Signal self (WebFrame -> WebResource -> Maybe NetworkRequest -> Maybe NetworkResponse -> IO ())

-- | When Document title changed, this signal is emitted.
--   
--   It can be used to set the Application <a>Window</a> title.
--   
--   webframe - which <a>WebFrame</a> changes the document title.
--   
--   title - current title string.
titleChanged :: WebViewClass self => Signal self (WebFrame -> String -> IO ())

-- | The <a>copyClipboard</a> signal is a keybinding signal which gets
--   emitted to copy the selection to the clipboard.
--   
--   The default bindings for this signal are Ctrl-c and Ctrl-Insert.
copyClipboard :: WebViewClass self => Signal self (IO ())

-- | The <a>cutClipboard</a> signal is a keybinding signal which gets
--   emitted to cut the selection to the clipboard.
--   
--   The default bindings for this signal are Ctrl-x and Shift-Delete.
cutClipboard :: WebViewClass self => Signal self (IO ())

-- | The <a>pasteClipboard</a> signal is a keybinding signal which gets
--   emitted to paste the contents of the clipboard into the Web view.
--   
--   The default bindings for this signal are Ctrl-v and Shift-Insert.
pasteClipboard :: WebViewClass self => Signal self (IO ())

-- | A JavaScript console message was created.
consoleMessage :: WebViewClass self => Signal self (String -> String -> Int -> String -> IO Bool)

-- | A JavaScript alert dialog was created.
scriptAlert :: WebViewClass self => Signal self (WebFrame -> String -> IO Bool)

-- | A JavaScript confirm dialog was created, providing Yes and No buttons.
scriptConfirm :: WebViewClass self => Signal self (WebFrame -> String -> IO Bool)

-- | A JavaScript prompt dialog was created, providing an entry to input
--   text.
scriptPrompt :: WebViewClass self => Signal self (WebFrame -> String -> String -> IO Bool)

-- | When status-bar text changed, this signal will emitted.
statusBarTextChanged :: WebViewClass self => Signal self (String -> IO ())

-- | When a context menu is about to be displayed this signal is emitted.
populatePopup :: WebViewClass self => Signal self (Menu -> IO ())
editingBegan :: WebViewClass self => Signal self (IO ())
editingEnded :: WebViewClass self => Signal self (IO ())

-- | The <a>selectAll</a> signal is a keybinding signal which gets emitted
--   to select the complete contents of the text view.
--   
--   The default bindings for this signal is Ctrl-a.
selectAll :: WebViewClass self => Signal self (IO ())

-- | When selection changed, this signal is emitted.
selectionChanged :: WebViewClass self => Signal self (IO ())

-- | Decide whether or not to display the given MIME type. If this signal
--   is not handled, the default behavior is to show the content of the
--   requested URI if WebKit can show this MIME type and the content
--   disposition is not a download; if WebKit is not able to show the MIME
--   type nothing happens.
--   
--   Notice that if you return True, meaning that you handled the signal,
--   you are expected to be aware of the <a>Content-Disposition</a> header.
--   A value of <a>attachment</a> usually indicates a download regardless
--   of the MIME type, see also soupMessageHeadersGetContentDisposition'
--   And you must call <tt>webPolicyDecisionIgnore</tt>,
--   <tt>webPolicyDecisionDownload</tt>, or <tt>webPolicyDecisionUse</tt>
--   on the <tt>webPolicyDecision</tt> object.
mimeTypePolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> NetworkRequest -> String -> WebPolicyDecision -> IO Bool)

-- | Emitted when frame requests a navigation to another page. If this
--   signal is not handled, the default behavior is to allow the
--   navigation.
--   
--   Notice that if you return True, meaning that you handled the signal,
--   you are expected to be aware of the <a>Content-Disposition</a> header.
--   A value of <a>attachment</a> usually indicates a download regardless
--   of the MIME type, see also soupMessageHeadersGetContentDisposition'
--   And you must call <tt>webPolicyDecisionIgnore</tt>,
--   <tt>webPolicyDecisionDownload</tt>, or <tt>webPolicyDecisionUse</tt>
--   on the <tt>webPolicyDecision</tt> object.
navigationPolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> NetworkRequest -> WebNavigationAction -> WebPolicyDecision -> IO Bool)

-- | Emitted when frame requests opening a new window. With this signal the
--   browser can use the context of the request to decide about the new
--   window. If the request is not handled the default behavior is to allow
--   opening the new window to load the URI, which will cause a
--   <a>createWebView</a> signal emission where the browser handles the new
--   window action but without information of the context that caused the
--   navigation. The following <a>navigationPolicyDecisionRequested</a>
--   emissions will load the page after the creation of the new window just
--   with the information of this new navigation context, without any
--   information about the action that made this new window to be opened.
--   
--   Notice that if you return True, meaning that you handled the signal,
--   you are expected to be aware of the <a>Content-Disposition</a> header.
--   A value of <a>attachment</a> usually indicates a download regardless
--   of the MIME type, see also soupMessageHeadersGetContentDisposition'
--   And you must call <tt>webPolicyDecisionIgnore</tt>,
--   <tt>webPolicyDecisionDownload</tt>, or <tt>webPolicyDecisionUse</tt>
--   on the <tt>webPolicyDecision</tt> object.
newWindowPolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> NetworkRequest -> WebNavigationAction -> WebPolicyDecision -> IO Bool)

-- | When a frame wants to cancel geolocation permission it had requested
--   before.
--   
--   <ul>
--   <li>Since 1.1.23</li>
--   </ul>
geolocationPolicyDecisionCancelled :: WebViewClass self => Signal self (WebFrame -> IO ())

-- | When a frame wants to get its geolocation permission. The receiver
--   must reply with a boolean wether it handled or not the request. If the
--   request is not handled, default behaviour is to deny geolocation.
--   
--   <ul>
--   <li>Since 1.1.23</li>
--   </ul>
geolocationPolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> GeolocationPolicyDecision -> IO ())

-- | The <a>moveCursor</a> will be emitted to apply the cursor movement
--   described by its parameters to the view.
moveCursor :: WebViewClass self => Signal self (MovementStep -> Int -> IO Bool)

-- | When set scroll adjustments, this signal is emitted.
setScrollAdjustments :: WebViewClass self => Signal self (Adjustment -> Adjustment -> IO ())

-- | When the cursor is over a link, this signal is emitted.
--   
--   title - the link's title or <tt>Nothing</tt> in case of failure.
--   
--   uri - the URI the link points to or <tt>Nothing</tt> in case of
--   failure.
hoveringOverLink :: WebViewClass self => Signal self (Maybe String -> Maybe String -> IO ())
createWebView :: WebViewClass self => Signal self (WebFrame -> IO WebView)

-- | Emitted after new <a>WebView</a> instance had been created in
--   <tt>onCreateWebView</tt> user function when the new <a>WebView</a>
--   should be displayed to the user.
--   
--   All the information about how the window should look, including
--   size,position,whether the location, status and scroll bars should be
--   displayed, is ready set.
webViewReady :: WebViewClass self => Signal self (IO Bool)

-- | Emitted when closing a WebView is requested.
--   
--   This occurs when a call is made from JavaScript's window.close
--   function. The default signal handler does not do anything. It is the
--   owner's responsibility to hide or delete the <a>WebView</a>, if
--   necessary.
--   
--   User function should return True to stop the handlers from being
--   invoked for the event or False to propagate the event furter
closeWebView :: WebViewClass self => Signal self (IO Bool)

-- | Emitted when printing is requested by the frame, usually because of a
--   javascript call. When handling this signal you should call
--   <tt>webFramePrintFull</tt> or <tt>webFramePrint</tt> to do the actual
--   printing.
--   
--   The default handler will present a print dialog and carry a print
--   operation. Notice that this means that if you intend to ignore a print
--   request you must connect to this signal, and return True.
printRequested :: WebViewClass self => Signal self (WebFrame -> IO Bool)

-- | The <a>databaseQuotaExceeded</a> signal will be emitted when a Web
--   Database exceeds the quota of its security origin. This signal may be
--   used to increase the size of the quota before the originating
--   operation fails.
databaseQuotaExceeded :: WebViewClass self => Signal self (WebFrame -> WebDatabase -> IO ())

-- | Emitted after A new <a>Download</a> is being requested.
--   
--   By default, if the signal is not handled, the download is cancelled.
--   
--   Notice that while handling this signal you must set the target URI
--   using <tt>downloadSetDestinationUri</tt>
--   
--   If you intend to handle downloads yourself, return False in user
--   function.
downloadRequested :: WebViewClass self => Signal self (Download -> IO Bool)

-- | The <a>redo</a> signal is a keybinding signal which gets emitted to
--   redo the last editing command.
--   
--   The default binding for this signal is Ctrl-Shift-z
redo :: WebViewClass self => Signal self (IO ())

-- | The <a>undo</a> signal is a keybinding signal which gets emitted to
--   undo the last editing command.
--   
--   The default binding for this signal is Ctrl-z
undo :: WebViewClass self => Signal self (IO ())
instance Enum NavigationResponse
instance Eq NavigationResponse
instance Show NavigationResponse
instance Enum TargetInfo
instance Eq TargetInfo
instance Show TargetInfo
instance Enum ViewMode
instance Eq ViewMode
instance Show ViewMode
instance Enum LoadStatus
instance Eq LoadStatus
instance Show LoadStatus


-- | Access to the WebKit Web WindowFeatures
module Graphics.UI.Gtk.WebKit.WebWindowFeatures
data WebWindowFeatures
class GObjectClass o => WebWindowFeaturesClass o

-- | Creates a new <a>WebWindowFeatures</a> instance with default values.
--   It must be manually attached to a WebView.
webWindowFeaturesNew :: IO WebWindowFeatures

-- | Decides if a <a>WebWindowFeatures</a> instance equals another, as in
--   has the same values.
webWindowFeaturesEqual :: (WebWindowFeaturesClass winA, WebWindowFeaturesClass winB) => winA -> winB -> IO Bool

-- | Controls whether window will be displayed fullscreen.
webWindowFeaturesFullscreen :: WebWindowFeaturesClass self => Attr self Bool

-- | The height of the window on the screen.
webWindowFeaturesHeight :: WebWindowFeaturesClass self => Attr self Int

-- | The width of the window on the screen.
webWindowFeaturesWidth :: WebWindowFeaturesClass self => Attr self Int

-- | The starting x position of the window on the screen.
webWindowFeaturesX :: WebWindowFeaturesClass self => Attr self Int

-- | The starting y position of the window on the screen.
webWindowFeaturesY :: WebWindowFeaturesClass self => Attr self Int

-- | Controls whether the locationbar should be visible for the window.
webWindowFeaturesLocationbarVisible :: WebWindowFeaturesClass self => Attr self Bool

-- | Controls whether the menubar should be visible for the window.
webWindowFeaturesMenubarVisible :: WebWindowFeaturesClass self => Attr self Bool

-- | Controls whether the scrollbar should be visible for the window.
webWindowFeaturesScrollbarVisible :: WebWindowFeaturesClass self => Attr self Bool

-- | Controls whether the statusbar should be visible for the window.
webWindowFeaturesStatusbarVisible :: WebWindowFeaturesClass self => Attr self Bool

-- | Controls whether the toolbar should be visible for the window.
webWindowFeaturesToolbarVisible :: WebWindowFeaturesClass self => Attr self Bool

module Graphics.UI.Gtk.WebKit.DOM.Event
eventStopPropagation :: EventClass self => self -> IO ()
eventPreventDefault :: EventClass self => self -> IO ()
eventInitEvent :: EventClass self => self -> String -> Bool -> Bool -> IO ()
eventStopImmediatePropagation :: EventClass self => self -> IO ()
cNONE :: Integer
cCAPTURING_PHASE :: Integer
cAT_TARGET :: Integer
cBUBBLING_PHASE :: Integer
cMOUSEDOWN :: Integer
cMOUSEUP :: Integer
cMOUSEOVER :: Integer
cMOUSEOUT :: Integer
cMOUSEMOVE :: Integer
cMOUSEDRAG :: Integer
cCLICK :: Integer
cDBLCLICK :: Integer
cKEYDOWN :: Integer
cKEYUP :: Integer
cKEYPRESS :: Integer
cDRAGDROP :: Integer
cFOCUS :: Integer
cBLUR :: Integer
cSELECT :: Integer
cCHANGE :: Integer
eventGetTarget :: EventClass self => self -> IO (Maybe EventTarget)
eventGetCurrentTarget :: EventClass self => self -> IO (Maybe EventTarget)
eventGetEventPhase :: EventClass self => self -> IO Word
eventGetBubbles :: EventClass self => self -> IO Bool
eventGetCancelable :: EventClass self => self -> IO Bool
eventGetTimeStamp :: EventClass self => self -> IO Word
eventGetDefaultPrevented :: EventClass self => self -> IO Bool
eventGetSrcElement :: EventClass self => self -> IO (Maybe EventTarget)
eventSetReturnValue :: EventClass self => self -> Bool -> IO ()
eventGetReturnValue :: EventClass self => self -> IO Bool
eventSetCancelBubble :: EventClass self => self -> Bool -> IO ()
eventGetCancelBubble :: EventClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.UIEvent
uiEventInitUIEvent :: (UIEventClass self, DOMWindowClass view) => self -> String -> Bool -> Bool -> Maybe view -> Int -> IO ()
uiEventGetView :: UIEventClass self => self -> IO (Maybe DOMWindow)
uiEventGetDetail :: UIEventClass self => self -> IO Int
uiEventGetKeyCode :: UIEventClass self => self -> IO Int
uiEventGetCharCode :: UIEventClass self => self -> IO Int
uiEventGetLayerX :: UIEventClass self => self -> IO Int
uiEventGetLayerY :: UIEventClass self => self -> IO Int
uiEventGetPageX :: UIEventClass self => self -> IO Int
uiEventGetPageY :: UIEventClass self => self -> IO Int
uiEventGetWhich :: UIEventClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.MouseEvent
mouseEventInitMouseEvent :: (MouseEventClass self, DOMWindowClass view, EventTargetClass relatedTarget) => self -> String -> Bool -> Bool -> Maybe view -> Int -> Int -> Int -> Int -> Int -> Bool -> Bool -> Bool -> Bool -> Word -> Maybe relatedTarget -> IO ()
mouseEventGetScreenX :: MouseEventClass self => self -> IO Int
mouseEventGetScreenY :: MouseEventClass self => self -> IO Int
mouseEventGetClientX :: MouseEventClass self => self -> IO Int
mouseEventGetClientY :: MouseEventClass self => self -> IO Int
mouseEventGetCtrlKey :: MouseEventClass self => self -> IO Bool
mouseEventGetShiftKey :: MouseEventClass self => self -> IO Bool
mouseEventGetAltKey :: MouseEventClass self => self -> IO Bool
mouseEventGetMetaKey :: MouseEventClass self => self -> IO Bool
mouseEventGetButton :: MouseEventClass self => self -> IO Word
mouseEventGetRelatedTarget :: MouseEventClass self => self -> IO (Maybe EventTarget)
mouseEventGetWebkitMovementX :: MouseEventClass self => self -> IO Int
mouseEventGetWebkitMovementY :: MouseEventClass self => self -> IO Int
mouseEventGetOffsetX :: MouseEventClass self => self -> IO Int
mouseEventGetOffsetY :: MouseEventClass self => self -> IO Int
mouseEventGetX :: MouseEventClass self => self -> IO Int
mouseEventGetY :: MouseEventClass self => self -> IO Int
mouseEventGetFromElement :: MouseEventClass self => self -> IO (Maybe Node)
mouseEventGetToElement :: MouseEventClass self => self -> IO (Maybe Node)

module Graphics.UI.Gtk.WebKit.DOM.EventTargetClosures
eventTargetAddEventListener :: (GObjectClass self, EventClass event) => self -> String -> Bool -> (self -> event -> IO ()) -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.EventM
type Signal target callback = target -> callback -> IO Bool
type EventM e t a = ReaderT (t, e) IO a
target :: EventM e t t
event :: EventM e t e
eventTarget :: EventClass e => EventM e t (Maybe EventTarget)
eventCurrentTarget :: EventClass e => EventM e t (Maybe EventTarget)
eventPhase :: EventClass e => EventM e t Word
bubbles :: EventClass e => EventM e t Bool
cancelable :: EventClass e => EventM e t Bool
timeStamp :: EventClass e => EventM e t Word
stopPropagation :: EventClass e => EventM e t ()
preventDefault :: EventClass e => EventM e t ()
defaultPrevented :: EventClass e => EventM e t Bool
stopImmediatePropagation :: EventClass e => EventM e t ()
srcElement :: EventClass e => EventM e t (Maybe EventTarget)
getCancelBubble :: EventClass e => EventM e t Bool
cancelBubble :: EventClass e => Bool -> EventM e t ()
getReturnValue :: EventClass e => EventM e t Bool
returnValue :: EventClass e => Bool -> EventM e t ()
uiView :: UIEventClass e => EventM e t (Maybe DOMWindow)
uiDetail :: UIEventClass e => EventM e t Int
uiKeyCode :: UIEventClass e => EventM e t Int
uiCharCode :: UIEventClass e => EventM e t Int
uiLayerX :: UIEventClass e => EventM e t Int
uiLayerY :: UIEventClass e => EventM e t Int
uiLayerXY :: UIEventClass e => EventM e t (Int, Int)
uiPageX :: UIEventClass e => EventM e t Int
uiPageY :: UIEventClass e => EventM e t Int
uiPageXY :: UIEventClass e => EventM e t (Int, Int)
uiWhich :: UIEventClass e => EventM e t Int
mouseScreenX :: MouseEventClass e => EventM e t Int
mouseScreenY :: MouseEventClass e => EventM e t Int
mouseScreenXY :: MouseEventClass e => EventM e t (Int, Int)
mouseClientX :: MouseEventClass e => EventM e t Int
mouseClientY :: MouseEventClass e => EventM e t Int
mouseClientXY :: MouseEventClass e => EventM e t (Int, Int)
mouseWebkitMovementX :: MouseEventClass e => EventM e t Int
mouseWebkitMovementY :: MouseEventClass e => EventM e t Int
mouseWebkitMovementXY :: MouseEventClass e => EventM e t (Int, Int)
mouseCtrlKey :: MouseEventClass e => EventM e t Bool
mouseShiftKey :: MouseEventClass e => EventM e t Bool
mouseAltKey :: MouseEventClass e => EventM e t Bool
mouseMetaKey :: MouseEventClass e => EventM e t Bool
mouseButton :: MouseEventClass e => EventM e t Word
mouseRelatedTarget :: MouseEventClass e => EventM e t (Maybe EventTarget)
mouseOffsetX :: MouseEventClass e => EventM e t Int
mouseOffsetY :: MouseEventClass e => EventM e t Int
mouseOffsetXY :: MouseEventClass e => EventM e t (Int, Int)
mouseX :: MouseEventClass e => EventM e t Int
mouseY :: MouseEventClass e => EventM e t Int
mouseXY :: MouseEventClass e => EventM e t (Int, Int)
mouseFromElement :: MouseEventClass e => EventM e t (Maybe Node)
mouseToElement :: MouseEventClass e => EventM e t (Maybe Node)
connect :: (GObjectClass t, EventClass e) => String -> t -> EventM e t () -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.Attr
attrGetName :: DOMAttrClass self => self -> IO String
attrGetSpecified :: DOMAttrClass self => self -> IO Bool
attrSetValue :: DOMAttrClass self => self -> String -> IO ()
attrGetValue :: DOMAttrClass self => self -> IO String
attrGetOwnerElement :: DOMAttrClass self => self -> IO (Maybe Element)
attrGetIsId :: DOMAttrClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.BarProp
barPropGetVisible :: BarPropClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.Blob
blobGetSize :: BlobClass self => self -> IO Word64

module Graphics.UI.Gtk.WebKit.DOM.CharacterData
characterDataSubstringData :: CharacterDataClass self => self -> Word -> Word -> IO String
characterDataAppendData :: CharacterDataClass self => self -> String -> IO ()
characterDataInsertData :: CharacterDataClass self => self -> Word -> String -> IO ()
characterDataDeleteData :: CharacterDataClass self => self -> Word -> Word -> IO ()
characterDataReplaceData :: CharacterDataClass self => self -> Word -> Word -> String -> IO ()
characterDataSetData :: CharacterDataClass self => self -> String -> IO ()
characterDataGetData :: CharacterDataClass self => self -> IO String
characterDataGetLength :: CharacterDataClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Console
consoleTime :: ConsoleClass self => self -> String -> IO ()
consoleGroupEnd :: ConsoleClass self => self -> IO ()

module Graphics.UI.Gtk.WebKit.DOM.CSSRule
cUNKNOWN_RULE :: Integer
cSTYLE_RULE :: Integer
cCHARSET_RULE :: Integer
cIMPORT_RULE :: Integer
cMEDIA_RULE :: Integer
cFONT_FACE_RULE :: Integer
cPAGE_RULE :: Integer
cWEBKIT_KEYFRAMES_RULE :: Integer
cWEBKIT_KEYFRAME_RULE :: Integer
cssRuleSetCssText :: CSSRuleClass self => self -> String -> IO ()
cssRuleGetCssText :: CSSRuleClass self => self -> IO String
cssRuleGetParentStyleSheet :: CSSRuleClass self => self -> IO (Maybe CSSStyleSheet)
cssRuleGetParentRule :: CSSRuleClass self => self -> IO (Maybe CSSRule)

module Graphics.UI.Gtk.WebKit.DOM.CSSRuleList
cssRuleListItem :: CSSRuleListClass self => self -> Word -> IO (Maybe CSSRule)
cssRuleListGetLength :: CSSRuleListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.CSSStyleDeclaration
cssStyleDeclarationGetPropertyValue :: CSSStyleDeclarationClass self => self -> String -> IO String
cssStyleDeclarationRemoveProperty :: CSSStyleDeclarationClass self => self -> String -> IO String
cssStyleDeclarationGetPropertyPriority :: CSSStyleDeclarationClass self => self -> String -> IO String
cssStyleDeclarationSetProperty :: CSSStyleDeclarationClass self => self -> String -> String -> String -> IO ()
cssStyleDeclarationItem :: CSSStyleDeclarationClass self => self -> Word -> IO String
cssStyleDeclarationGetPropertyShorthand :: CSSStyleDeclarationClass self => self -> String -> IO String
cssStyleDeclarationIsPropertyImplicit :: CSSStyleDeclarationClass self => self -> String -> IO Bool
cssStyleDeclarationSetCssText :: CSSStyleDeclarationClass self => self -> String -> IO ()
cssStyleDeclarationGetCssText :: CSSStyleDeclarationClass self => self -> IO String
cssStyleDeclarationGetLength :: CSSStyleDeclarationClass self => self -> IO Word
cssStyleDeclarationGetParentRule :: CSSStyleDeclarationClass self => self -> IO (Maybe CSSRule)

module Graphics.UI.Gtk.WebKit.DOM.CSSStyleSheet
cssStyleSheetInsertRule :: CSSStyleSheetClass self => self -> String -> Word -> IO Word
cssStyleSheetDeleteRule :: CSSStyleSheetClass self => self -> Word -> IO ()
cssStyleSheetAddRule :: CSSStyleSheetClass self => self -> String -> String -> Word -> IO Int
cssStyleSheetRemoveRule :: CSSStyleSheetClass self => self -> Word -> IO ()
cssStyleSheetGetOwnerRule :: CSSStyleSheetClass self => self -> IO (Maybe CSSRule)
cssStyleSheetGetCssRules :: CSSStyleSheetClass self => self -> IO (Maybe CSSRuleList)
cssStyleSheetGetRules :: CSSStyleSheetClass self => self -> IO (Maybe CSSRuleList)

module Graphics.UI.Gtk.WebKit.DOM.CSSValue
cCSS_INHERIT :: Integer
cCSS_PRIMITIVE_VALUE :: Integer
cCSS_VALUE_LIST :: Integer
cCSS_CUSTOM :: Integer
cssValueSetCssText :: CSSValueClass self => self -> String -> IO ()
cssValueGetCssText :: CSSValueClass self => self -> IO String
cssValueGetCssValueType :: CSSValueClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Document
documentCreateElement :: DocumentClass self => self -> String -> IO (Maybe Element)
documentCreateDocumentFragment :: DocumentClass self => self -> IO (Maybe DocumentFragment)
documentCreateTextNode :: DocumentClass self => self -> String -> IO (Maybe Text)
documentCreateComment :: DocumentClass self => self -> String -> IO (Maybe Comment)
documentCreateCDATASection :: DocumentClass self => self -> String -> IO (Maybe CDATASection)
documentCreateProcessingInstruction :: DocumentClass self => self -> String -> String -> IO (Maybe ProcessingInstruction)
documentCreateAttribute :: DocumentClass self => self -> String -> IO (Maybe DOMAttr)
documentCreateEntityReference :: DocumentClass self => self -> String -> IO (Maybe EntityReference)
documentGetElementsByTagName :: DocumentClass self => self -> String -> IO (Maybe NodeList)
documentImportNode :: (DocumentClass self, NodeClass importedNode) => self -> Maybe importedNode -> Bool -> IO (Maybe Node)
documentCreateElementNS :: DocumentClass self => self -> String -> String -> IO (Maybe Element)
documentCreateAttributeNS :: DocumentClass self => self -> String -> String -> IO (Maybe DOMAttr)
documentGetElementsByTagNameNS :: DocumentClass self => self -> String -> String -> IO (Maybe NodeList)
documentGetElementById :: DocumentClass self => self -> String -> IO (Maybe Element)
documentAdoptNode :: (DocumentClass self, NodeClass source) => self -> Maybe source -> IO (Maybe Node)
documentCreateEvent :: DocumentClass self => self -> String -> IO (Maybe Event)
documentCreateRange :: DocumentClass self => self -> IO (Maybe DOMRange)
documentCreateNodeIterator :: (DocumentClass self, NodeClass root, NodeFilterClass filter) => self -> Maybe root -> Word -> Maybe filter -> Bool -> IO (Maybe NodeIterator)
documentCreateTreeWalker :: (DocumentClass self, NodeClass root, NodeFilterClass filter) => self -> Maybe root -> Word -> Maybe filter -> Bool -> IO (Maybe TreeWalker)
documentGetOverrideStyle :: (DocumentClass self, ElementClass element) => self -> Maybe element -> String -> IO (Maybe CSSStyleDeclaration)
documentCreateExpression :: (DocumentClass self, XPathNSResolverClass resolver) => self -> String -> Maybe resolver -> IO (Maybe XPathExpression)
documentCreateNSResolver :: (DocumentClass self, NodeClass nodeResolver) => self -> Maybe nodeResolver -> IO (Maybe XPathNSResolver)
documentEvaluate :: (DocumentClass self, NodeClass contextNode, XPathNSResolverClass resolver, XPathResultClass inResult) => self -> String -> Maybe contextNode -> Maybe resolver -> Word -> Maybe inResult -> IO (Maybe XPathResult)
documentExecCommand :: DocumentClass self => self -> String -> Bool -> String -> IO Bool
documentQueryCommandEnabled :: DocumentClass self => self -> String -> IO Bool
documentQueryCommandIndeterm :: DocumentClass self => self -> String -> IO Bool
documentQueryCommandState :: DocumentClass self => self -> String -> IO Bool
documentQueryCommandSupported :: DocumentClass self => self -> String -> IO Bool
documentQueryCommandValue :: DocumentClass self => self -> String -> IO String
documentGetElementsByName :: DocumentClass self => self -> String -> IO (Maybe NodeList)
documentElementFromPoint :: DocumentClass self => self -> Int -> Int -> IO (Maybe Element)
documentCaretRangeFromPoint :: DocumentClass self => self -> Int -> Int -> IO (Maybe DOMRange)
documentCreateCSSStyleDeclaration :: DocumentClass self => self -> IO (Maybe CSSStyleDeclaration)
documentGetElementsByClassName :: DocumentClass self => self -> String -> IO (Maybe NodeList)
documentQuerySelector :: DocumentClass self => self -> String -> IO (Maybe Element)
documentQuerySelectorAll :: DocumentClass self => self -> String -> IO (Maybe NodeList)
documentWebkitExitPointerLock :: DocumentClass self => self -> IO ()
documentWebkitGetNamedFlows :: DocumentClass self => self -> IO (Maybe DOMNamedFlowCollection)
documentGetDoctype :: DocumentClass self => self -> IO (Maybe DocumentType)
documentGetImplementation :: DocumentClass self => self -> IO (Maybe DOMImplementation)
documentGetDocumentElement :: DocumentClass self => self -> IO (Maybe Element)
documentGetInputEncoding :: DocumentClass self => self -> IO String
documentGetXmlEncoding :: DocumentClass self => self -> IO String
documentSetXmlVersion :: DocumentClass self => self -> String -> IO ()
documentGetXmlVersion :: DocumentClass self => self -> IO String
documentSetXmlStandalone :: DocumentClass self => self -> Bool -> IO ()
documentGetXmlStandalone :: DocumentClass self => self -> IO Bool
documentSetDocumentURI :: DocumentClass self => self -> String -> IO ()
documentGetDocumentURI :: DocumentClass self => self -> IO String
documentGetDefaultView :: DocumentClass self => self -> IO (Maybe DOMWindow)
documentGetStyleSheets :: DocumentClass self => self -> IO (Maybe StyleSheetList)
documentSetTitle :: DocumentClass self => self -> String -> IO ()
documentGetTitle :: DocumentClass self => self -> IO String
documentGetReferrer :: DocumentClass self => self -> IO String
documentGetDomain :: DocumentClass self => self -> IO String
documentSetCookie :: DocumentClass self => self -> String -> IO ()
documentGetCookie :: DocumentClass self => self -> IO String
documentSetBody :: (HTMLElementClass val, DocumentClass self) => self -> Maybe val -> IO ()
documentGetBody :: DocumentClass self => self -> IO (Maybe HTMLElement)
documentGetHead :: DocumentClass self => self -> IO (Maybe HTMLHeadElement)
documentGetImages :: DocumentClass self => self -> IO (Maybe HTMLCollection)
documentGetApplets :: DocumentClass self => self -> IO (Maybe HTMLCollection)
documentGetLinks :: DocumentClass self => self -> IO (Maybe HTMLCollection)
documentGetForms :: DocumentClass self => self -> IO (Maybe HTMLCollection)
documentGetAnchors :: DocumentClass self => self -> IO (Maybe HTMLCollection)
documentGetLastModified :: DocumentClass self => self -> IO String
documentSetCharset :: DocumentClass self => self -> String -> IO ()
documentGetCharset :: DocumentClass self => self -> IO String
documentGetDefaultCharset :: DocumentClass self => self -> IO String
documentGetReadyState :: DocumentClass self => self -> IO String
documentGetCharacterSet :: DocumentClass self => self -> IO String
documentGetPreferredStylesheetSet :: DocumentClass self => self -> IO String
documentSetSelectedStylesheetSet :: DocumentClass self => self -> String -> IO ()
documentGetSelectedStylesheetSet :: DocumentClass self => self -> IO String
documentGetCompatMode :: DocumentClass self => self -> IO String
documentGetWebkitPointerLockElement :: DocumentClass self => self -> IO (Maybe Element)
documentOnabort :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnblur :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnchange :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnclick :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOncontextmenu :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndblclick :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndrag :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndragend :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndragenter :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndragleave :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndragover :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndragstart :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOndrop :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnerror :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnfocus :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOninput :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOninvalid :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnkeydown :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnkeypress :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnkeyup :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnload :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnmousedown :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnmouseenter :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnmouseleave :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnmousemove :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnmouseout :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnmouseover :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnmouseup :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnmousewheel :: DocumentClass self => Signal self (EventM MouseEvent self ())
documentOnreadystatechange :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnscroll :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnselect :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnsubmit :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnbeforecut :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOncut :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnbeforecopy :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOncopy :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnbeforepaste :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnpaste :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnreset :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnsearch :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnselectstart :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnselectionchange :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOntouchstart :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOntouchmove :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOntouchend :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOntouchcancel :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnwebkitfullscreenchange :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnwebkitfullscreenerror :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnwebkitpointerlockchange :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnwebkitpointerlockerror :: DocumentClass self => Signal self (EventM UIEvent self ())
documentOnsecuritypolicyviolation :: DocumentClass self => Signal self (EventM UIEvent self ())
documentGetVisibilityState :: DocumentClass self => self -> IO String
documentGetHidden :: DocumentClass self => self -> IO Bool
documentGetSecurityPolicy :: DocumentClass self => self -> IO (Maybe DOMSecurityPolicy)
documentGetCurrentScript :: DocumentClass self => self -> IO (Maybe HTMLScriptElement)

module Graphics.UI.Gtk.WebKit.DOM.DocumentType
documentTypeGetName :: DocumentTypeClass self => self -> IO String
documentTypeGetEntities :: DocumentTypeClass self => self -> IO (Maybe NamedNodeMap)
documentTypeGetNotations :: DocumentTypeClass self => self -> IO (Maybe NamedNodeMap)
documentTypeGetPublicId :: DocumentTypeClass self => self -> IO String
documentTypeGetSystemId :: DocumentTypeClass self => self -> IO String
documentTypeGetInternalSubset :: DocumentTypeClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.DOMApplicationCache
domApplicationCacheUpdate :: DOMApplicationCacheClass self => self -> IO ()
domApplicationCacheSwapCache :: DOMApplicationCacheClass self => self -> IO ()
domApplicationCacheAbort :: DOMApplicationCacheClass self => self -> IO ()
domApplicationCacheDispatchEvent :: (DOMApplicationCacheClass self, EventClass evt) => self -> Maybe evt -> IO Bool
cUNCACHED :: Integer
cIDLE :: Integer
cCHECKING :: Integer
cDOWNLOADING :: Integer
cUPDATEREADY :: Integer
cOBSOLETE :: Integer
domApplicationCacheGetStatus :: DOMApplicationCacheClass self => self -> IO Word
domApplicationCacheOnchecking :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOnerror :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOnnoupdate :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOndownloading :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOnprogress :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOnupdateready :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOncached :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())
domApplicationCacheOnobsolete :: DOMApplicationCacheClass self => Signal self (EventM UIEvent self ())

module Graphics.UI.Gtk.WebKit.DOM.DOMImplementation
domImplementationHasFeature :: DOMImplementationClass self => self -> String -> String -> IO Bool
domImplementationCreateDocumentType :: DOMImplementationClass self => self -> String -> String -> String -> IO (Maybe DocumentType)
domImplementationCreateDocument :: (DOMImplementationClass self, DocumentTypeClass doctype) => self -> String -> String -> Maybe doctype -> IO (Maybe Document)
domImplementationCreateCSSStyleSheet :: DOMImplementationClass self => self -> String -> String -> IO (Maybe CSSStyleSheet)
domImplementationCreateHTMLDocument :: DOMImplementationClass self => self -> String -> IO (Maybe HTMLDocument)

module Graphics.UI.Gtk.WebKit.DOM.DOMMimeType
domMimeTypeGetSuffixes :: DOMMimeTypeClass self => self -> IO String
domMimeTypeGetDescription :: DOMMimeTypeClass self => self -> IO String
domMimeTypeGetEnabledPlugin :: DOMMimeTypeClass self => self -> IO (Maybe DOMPlugin)

module Graphics.UI.Gtk.WebKit.DOM.DOMMimeTypeArray
domMimeTypeArrayItem :: DOMMimeTypeArrayClass self => self -> Word -> IO (Maybe DOMMimeType)
domMimeTypeArrayNamedItem :: DOMMimeTypeArrayClass self => self -> String -> IO (Maybe DOMMimeType)
domMimeTypeArrayGetLength :: DOMMimeTypeArrayClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMNamedFlowCollection
domNamedFlowCollectionItem :: DOMNamedFlowCollectionClass self => self -> Word -> IO (Maybe WebKitNamedFlow)
domNamedFlowCollectionNamedItem :: DOMNamedFlowCollectionClass self => self -> String -> IO (Maybe WebKitNamedFlow)
domNamedFlowCollectionGetLength :: DOMNamedFlowCollectionClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMPlugin
domPluginItem :: DOMPluginClass self => self -> Word -> IO (Maybe DOMMimeType)
domPluginNamedItem :: DOMPluginClass self => self -> String -> IO (Maybe DOMMimeType)
domPluginGetName :: DOMPluginClass self => self -> IO String
domPluginGetFilename :: DOMPluginClass self => self -> IO String
domPluginGetDescription :: DOMPluginClass self => self -> IO String
domPluginGetLength :: DOMPluginClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMPluginArray
domPluginArrayItem :: DOMPluginArrayClass self => self -> Word -> IO (Maybe DOMPlugin)
domPluginArrayNamedItem :: DOMPluginArrayClass self => self -> String -> IO (Maybe DOMPlugin)
domPluginArrayRefresh :: DOMPluginArrayClass self => self -> Bool -> IO ()
domPluginArrayGetLength :: DOMPluginArrayClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMSelection
domSelectionCollapse :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()
domSelectionCollapseToEnd :: DOMSelectionClass self => self -> IO ()
domSelectionCollapseToStart :: DOMSelectionClass self => self -> IO ()
domSelectionDeleteFromDocument :: DOMSelectionClass self => self -> IO ()
domSelectionContainsNode :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Bool -> IO Bool
domSelectionSelectAllChildren :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> IO ()
domSelectionExtend :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()
domSelectionGetRangeAt :: DOMSelectionClass self => self -> Int -> IO (Maybe DOMRange)
domSelectionRemoveAllRanges :: DOMSelectionClass self => self -> IO ()
domSelectionAddRange :: (DOMSelectionClass self, DOMRangeClass range) => self -> Maybe range -> IO ()
domSelectionModify :: DOMSelectionClass self => self -> String -> String -> String -> IO ()
domSelectionSetBaseAndExtent :: (DOMSelectionClass self, NodeClass baseNode, NodeClass extentNode) => self -> Maybe baseNode -> Int -> Maybe extentNode -> Int -> IO ()
domSelectionSetPosition :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()
domSelectionEmpty :: DOMSelectionClass self => self -> IO ()
domSelectionGetAnchorNode :: DOMSelectionClass self => self -> IO (Maybe Node)
domSelectionGetAnchorOffset :: DOMSelectionClass self => self -> IO Int
domSelectionGetFocusNode :: DOMSelectionClass self => self -> IO (Maybe Node)
domSelectionGetFocusOffset :: DOMSelectionClass self => self -> IO Int
domSelectionGetIsCollapsed :: DOMSelectionClass self => self -> IO Bool
domSelectionGetRangeCount :: DOMSelectionClass self => self -> IO Int
domSelectionGetBaseNode :: DOMSelectionClass self => self -> IO (Maybe Node)
domSelectionGetBaseOffset :: DOMSelectionClass self => self -> IO Int
domSelectionGetExtentNode :: DOMSelectionClass self => self -> IO (Maybe Node)
domSelectionGetExtentOffset :: DOMSelectionClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.DOMSettableTokenList
domSettableTokenListSetValue :: DOMSettableTokenListClass self => self -> String -> IO ()
domSettableTokenListGetValue :: DOMSettableTokenListClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.DOMTokenList
domTokenListItem :: DOMTokenListClass self => self -> Word -> IO String
domTokenListContains :: DOMTokenListClass self => self -> String -> IO Bool
domTokenListAdd :: DOMTokenListClass self => self -> String -> IO ()
domTokenListRemove :: DOMTokenListClass self => self -> String -> IO ()
domTokenListToggle :: DOMTokenListClass self => self -> String -> Bool -> IO Bool
domTokenListGetLength :: DOMTokenListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMWindow
domWindowGetSelection :: DOMWindowClass self => self -> IO (Maybe DOMSelection)
domWindowBlur :: DOMWindowClass self => self -> IO ()
domWindowPrint :: DOMWindowClass self => self -> IO ()
domWindowStop :: DOMWindowClass self => self -> IO ()
domWindowAlert :: DOMWindowClass self => self -> String -> IO ()
domWindowConfirm :: DOMWindowClass self => self -> String -> IO Bool
domWindowPrompt :: DOMWindowClass self => self -> String -> String -> IO String
domWindowFind :: DOMWindowClass self => self -> String -> Bool -> Bool -> Bool -> Bool -> Bool -> Bool -> IO Bool
domWindowScrollBy :: DOMWindowClass self => self -> Int -> Int -> IO ()
domWindowScrollTo :: DOMWindowClass self => self -> Int -> Int -> IO ()
domWindowScroll :: DOMWindowClass self => self -> Int -> Int -> IO ()
domWindowMoveBy :: DOMWindowClass self => self -> Float -> Float -> IO ()
domWindowMoveTo :: DOMWindowClass self => self -> Float -> Float -> IO ()
domWindowResizeBy :: DOMWindowClass self => self -> Float -> Float -> IO ()
domWindowResizeTo :: DOMWindowClass self => self -> Float -> Float -> IO ()
domWindowMatchMedia :: DOMWindowClass self => self -> String -> IO (Maybe MediaQueryList)
domWindowGetComputedStyle :: (DOMWindowClass self, ElementClass element) => self -> Maybe element -> String -> IO (Maybe CSSStyleDeclaration)
domWindowWebkitConvertPointFromPageToNode :: (DOMWindowClass self, NodeClass node, WebKitPointClass p) => self -> Maybe node -> Maybe p -> IO (Maybe WebKitPoint)
domWindowWebkitConvertPointFromNodeToPage :: (DOMWindowClass self, NodeClass node, WebKitPointClass p) => self -> Maybe node -> Maybe p -> IO (Maybe WebKitPoint)
domWindowClearTimeout :: DOMWindowClass self => self -> Int -> IO ()
domWindowClearInterval :: DOMWindowClass self => self -> Int -> IO ()
domWindowAtob :: DOMWindowClass self => self -> String -> IO String
domWindowBtoa :: DOMWindowClass self => self -> String -> IO String
domWindowDispatchEvent :: (DOMWindowClass self, EventClass evt) => self -> Maybe evt -> IO Bool
domWindowCaptureEvents :: DOMWindowClass self => self -> IO ()
domWindowReleaseEvents :: DOMWindowClass self => self -> IO ()
domWindowGetScreen :: DOMWindowClass self => self -> IO (Maybe DOMScreen)
domWindowGetHistory :: DOMWindowClass self => self -> IO (Maybe History)
domWindowGetLocationbar :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetMenubar :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetPersonalbar :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetScrollbars :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetStatusbar :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetToolbar :: DOMWindowClass self => self -> IO (Maybe BarProp)
domWindowGetNavigator :: DOMWindowClass self => self -> IO (Maybe Navigator)
domWindowGetClientInformation :: DOMWindowClass self => self -> IO (Maybe Navigator)
domWindowGetFrameElement :: DOMWindowClass self => self -> IO (Maybe Element)
domWindowGetOffscreenBuffering :: DOMWindowClass self => self -> IO Bool
domWindowGetOuterHeight :: DOMWindowClass self => self -> IO Int
domWindowGetOuterWidth :: DOMWindowClass self => self -> IO Int
domWindowGetInnerHeight :: DOMWindowClass self => self -> IO Int
domWindowGetInnerWidth :: DOMWindowClass self => self -> IO Int
domWindowGetScreenX :: DOMWindowClass self => self -> IO Int
domWindowGetScreenY :: DOMWindowClass self => self -> IO Int
domWindowGetScreenLeft :: DOMWindowClass self => self -> IO Int
domWindowGetScreenTop :: DOMWindowClass self => self -> IO Int
domWindowGetScrollX :: DOMWindowClass self => self -> IO Int
domWindowGetScrollY :: DOMWindowClass self => self -> IO Int
domWindowGetPageXOffset :: DOMWindowClass self => self -> IO Int
domWindowGetPageYOffset :: DOMWindowClass self => self -> IO Int
domWindowGetClosed :: DOMWindowClass self => self -> IO Bool
domWindowGetLength :: DOMWindowClass self => self -> IO Word
domWindowSetName :: DOMWindowClass self => self -> String -> IO ()
domWindowGetName :: DOMWindowClass self => self -> IO String
domWindowSetStatus :: DOMWindowClass self => self -> String -> IO ()
domWindowGetStatus :: DOMWindowClass self => self -> IO String
domWindowSetDefaultStatus :: DOMWindowClass self => self -> String -> IO ()
domWindowGetDefaultStatus :: DOMWindowClass self => self -> IO String
domWindowGetSelf :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetWindow :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetFrames :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetOpener :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetParent :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetTop :: DOMWindowClass self => self -> IO (Maybe DOMWindow)
domWindowGetDocument :: DOMWindowClass self => self -> IO (Maybe Document)
domWindowGetStyleMedia :: DOMWindowClass self => self -> IO (Maybe StyleMedia)
domWindowGetDevicePixelRatio :: DOMWindowClass self => self -> IO Double
domWindowGetApplicationCache :: DOMWindowClass self => self -> IO (Maybe DOMApplicationCache)
domWindowGetSessionStorage :: DOMWindowClass self => self -> IO (Maybe Storage)
domWindowGetLocalStorage :: DOMWindowClass self => self -> IO (Maybe Storage)
domWindowGetConsole :: DOMWindowClass self => self -> IO (Maybe Console)
domWindowGetCSS :: DOMWindowClass self => self -> IO (Maybe DOMWindowCSS)
domWindowOnabort :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnbeforeunload :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnblur :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOncanplay :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOncanplaythrough :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnchange :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnclick :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOncontextmenu :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndblclick :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndrag :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndragend :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndragenter :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndragleave :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndragover :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndragstart :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndrop :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOndurationchange :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnemptied :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnended :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnerror :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnfocus :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnhashchange :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOninput :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOninvalid :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnkeydown :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnkeypress :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnkeyup :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnload :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnloadeddata :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnloadedmetadata :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnloadstart :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnmessage :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnmousedown :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnmouseenter :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnmouseleave :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnmousemove :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnmouseout :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnmouseover :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnmouseup :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnmousewheel :: DOMWindowClass self => Signal self (EventM MouseEvent self ())
domWindowOnoffline :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnonline :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnpagehide :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnpageshow :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnpause :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnplay :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnplaying :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnpopstate :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnprogress :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnratechange :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnresize :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnscroll :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnseeked :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnseeking :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnselect :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnstalled :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnstorage :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnsubmit :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnsuspend :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntimeupdate :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnunload :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnvolumechange :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwaiting :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnreset :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnsearch :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwebkitanimationend :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwebkitanimationiteration :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwebkitanimationstart :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwebkittransitionend :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntransitionend :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntouchstart :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntouchmove :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntouchend :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOntouchcancel :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOndevicemotion :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOndeviceorientation :: DOMWindowClass self => Signal self (EventM UIEvent self ())
domWindowOnwebkitdeviceproximity :: DOMWindowClass self => Signal self (EventM UIEvent self ())

module Graphics.UI.Gtk.WebKit.DOM.DOMWindowCSS
domWindowCSSSupports :: DOMWindowCSSClass self => self -> String -> String -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.Element
elementGetAttribute :: ElementClass self => self -> String -> IO String
elementSetAttribute :: ElementClass self => self -> String -> String -> IO ()
elementRemoveAttribute :: ElementClass self => self -> String -> IO ()
elementGetAttributeNode :: ElementClass self => self -> String -> IO (Maybe DOMAttr)
elementSetAttributeNode :: (ElementClass self, DOMAttrClass newAttr) => self -> Maybe newAttr -> IO (Maybe DOMAttr)
elementRemoveAttributeNode :: (ElementClass self, DOMAttrClass oldAttr) => self -> Maybe oldAttr -> IO (Maybe DOMAttr)
elementGetElementsByTagName :: ElementClass self => self -> String -> IO (Maybe NodeList)
elementHasAttributes :: ElementClass self => self -> IO Bool
elementGetAttributeNS :: ElementClass self => self -> String -> String -> IO String
elementSetAttributeNS :: ElementClass self => self -> String -> String -> String -> IO ()
elementRemoveAttributeNS :: ElementClass self => self -> String -> String -> IO ()
elementGetElementsByTagNameNS :: ElementClass self => self -> String -> String -> IO (Maybe NodeList)
elementGetAttributeNodeNS :: ElementClass self => self -> String -> String -> IO (Maybe DOMAttr)
elementSetAttributeNodeNS :: (ElementClass self, DOMAttrClass newAttr) => self -> Maybe newAttr -> IO (Maybe DOMAttr)
elementHasAttribute :: ElementClass self => self -> String -> IO Bool
elementHasAttributeNS :: ElementClass self => self -> String -> String -> IO Bool
elementFocus :: ElementClass self => self -> IO ()
elementBlur :: ElementClass self => self -> IO ()
elementScrollIntoView :: ElementClass self => self -> Bool -> IO ()
elementScrollIntoViewIfNeeded :: ElementClass self => self -> Bool -> IO ()
elementScrollByLines :: ElementClass self => self -> Int -> IO ()
elementScrollByPages :: ElementClass self => self -> Int -> IO ()
elementGetElementsByClassName :: ElementClass self => self -> String -> IO (Maybe NodeList)
elementQuerySelector :: ElementClass self => self -> String -> IO (Maybe Element)
elementQuerySelectorAll :: ElementClass self => self -> String -> IO (Maybe NodeList)
elementWebkitMatchesSelector :: ElementClass self => self -> String -> IO Bool
elementWebkitRequestPointerLock :: ElementClass self => self -> IO ()
elementGetTagName :: ElementClass self => self -> IO String
elementGetAttributes :: ElementClass self => self -> IO (Maybe NamedNodeMap)
elementGetStyle :: ElementClass self => self -> IO (Maybe CSSStyleDeclaration)
elementSetId :: ElementClass self => self -> String -> IO ()
elementGetId :: ElementClass self => self -> IO String
elementGetOffsetLeft :: ElementClass self => self -> IO Int
elementGetOffsetTop :: ElementClass self => self -> IO Int
elementGetOffsetWidth :: ElementClass self => self -> IO Int
elementGetOffsetHeight :: ElementClass self => self -> IO Int
elementGetOffsetParent :: ElementClass self => self -> IO (Maybe Element)
elementGetClientLeft :: ElementClass self => self -> IO Int
elementGetClientTop :: ElementClass self => self -> IO Int
elementGetClientWidth :: ElementClass self => self -> IO Int
elementGetClientHeight :: ElementClass self => self -> IO Int
elementSetScrollLeft :: ElementClass self => self -> Int -> IO ()
elementGetScrollLeft :: ElementClass self => self -> IO Int
elementSetScrollTop :: ElementClass self => self -> Int -> IO ()
elementGetScrollTop :: ElementClass self => self -> IO Int
elementGetScrollWidth :: ElementClass self => self -> IO Int
elementGetScrollHeight :: ElementClass self => self -> IO Int
elementSetClassName :: ElementClass self => self -> String -> IO ()
elementGetClassName :: ElementClass self => self -> IO String
elementGetClassList :: ElementClass self => self -> IO (Maybe DOMTokenList)
elementGetFirstElementChild :: ElementClass self => self -> IO (Maybe Element)
elementGetLastElementChild :: ElementClass self => self -> IO (Maybe Element)
elementGetPreviousElementSibling :: ElementClass self => self -> IO (Maybe Element)
elementGetNextElementSibling :: ElementClass self => self -> IO (Maybe Element)
elementGetChildElementCount :: ElementClass self => self -> IO Word
elementGetWebkitRegionOverset :: ElementClass self => self -> IO String
elementOnabort :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnblur :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnchange :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnclick :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOncontextmenu :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndblclick :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndrag :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndragend :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndragenter :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndragleave :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndragover :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndragstart :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOndrop :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnerror :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnfocus :: ElementClass self => Signal self (EventM UIEvent self ())
elementOninput :: ElementClass self => Signal self (EventM UIEvent self ())
elementOninvalid :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnkeydown :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnkeypress :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnkeyup :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnload :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnmousedown :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnmouseenter :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnmouseleave :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnmousemove :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnmouseout :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnmouseover :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnmouseup :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnmousewheel :: ElementClass self => Signal self (EventM MouseEvent self ())
elementOnscroll :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnselect :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnsubmit :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnbeforecut :: ElementClass self => Signal self (EventM UIEvent self ())
elementOncut :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnbeforecopy :: ElementClass self => Signal self (EventM UIEvent self ())
elementOncopy :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnbeforepaste :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnpaste :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnreset :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnsearch :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnselectstart :: ElementClass self => Signal self (EventM UIEvent self ())
elementOntouchstart :: ElementClass self => Signal self (EventM UIEvent self ())
elementOntouchmove :: ElementClass self => Signal self (EventM UIEvent self ())
elementOntouchend :: ElementClass self => Signal self (EventM UIEvent self ())
elementOntouchcancel :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnwebkitfullscreenchange :: ElementClass self => Signal self (EventM UIEvent self ())
elementOnwebkitfullscreenerror :: ElementClass self => Signal self (EventM UIEvent self ())

module Graphics.UI.Gtk.WebKit.DOM.File
fileGetName :: FileClass self => self -> IO String
fileGetWebkitRelativePath :: FileClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.FileList
fileListItem :: FileListClass self => self -> Word -> IO (Maybe File)
fileListGetLength :: FileListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.History
historyGetLength :: HistoryClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.HTMLAnchorElement
htmlAnchorElementSetCharset :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetCharset :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetCoords :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetCoords :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetDownload :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetDownload :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetHref :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetHref :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetHreflang :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetHreflang :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetName :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetName :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetPing :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetPing :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetRel :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetRel :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetRev :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetRev :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetShape :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetShape :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetTarget :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetTarget :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetHash :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetHash :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetHost :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetHost :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetHostname :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetHostname :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetPathname :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetPathname :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetPort :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetPort :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetProtocol :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetProtocol :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementSetSearch :: HTMLAnchorElementClass self => self -> String -> IO ()
htmlAnchorElementGetSearch :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementGetOrigin :: HTMLAnchorElementClass self => self -> IO String
htmlAnchorElementGetText :: HTMLAnchorElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLAppletElement
htmlAppletElementSetAlign :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetAlign :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetAlt :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetAlt :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetArchive :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetArchive :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetCode :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetCode :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetCodeBase :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetCodeBase :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetHeight :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetHeight :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetHspace :: HTMLAppletElementClass self => self -> Int -> IO ()
htmlAppletElementGetHspace :: HTMLAppletElementClass self => self -> IO Int
htmlAppletElementSetName :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetName :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetObject :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetObject :: HTMLAppletElementClass self => self -> IO String
htmlAppletElementSetVspace :: HTMLAppletElementClass self => self -> Int -> IO ()
htmlAppletElementGetVspace :: HTMLAppletElementClass self => self -> IO Int
htmlAppletElementSetWidth :: HTMLAppletElementClass self => self -> String -> IO ()
htmlAppletElementGetWidth :: HTMLAppletElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLAreaElement
htmlAreaElementSetAlt :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetAlt :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementSetCoords :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetCoords :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementSetHref :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetHref :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementSetNoHref :: HTMLAreaElementClass self => self -> Bool -> IO ()
htmlAreaElementGetNoHref :: HTMLAreaElementClass self => self -> IO Bool
htmlAreaElementSetPing :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetPing :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementSetShape :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetShape :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementSetTarget :: HTMLAreaElementClass self => self -> String -> IO ()
htmlAreaElementGetTarget :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetHash :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetHost :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetHostname :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetPathname :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetPort :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetProtocol :: HTMLAreaElementClass self => self -> IO String
htmlAreaElementGetSearch :: HTMLAreaElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLBaseElement
htmlBaseElementSetHref :: HTMLBaseElementClass self => self -> String -> IO ()
htmlBaseElementGetHref :: HTMLBaseElementClass self => self -> IO String
htmlBaseElementSetTarget :: HTMLBaseElementClass self => self -> String -> IO ()
htmlBaseElementGetTarget :: HTMLBaseElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLBaseFontElement
htmlBaseFontElementSetColor :: HTMLBaseFontElementClass self => self -> String -> IO ()
htmlBaseFontElementGetColor :: HTMLBaseFontElementClass self => self -> IO String
htmlBaseFontElementSetFace :: HTMLBaseFontElementClass self => self -> String -> IO ()
htmlBaseFontElementGetFace :: HTMLBaseFontElementClass self => self -> IO String
htmlBaseFontElementSetSize :: HTMLBaseFontElementClass self => self -> Int -> IO ()
htmlBaseFontElementGetSize :: HTMLBaseFontElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLBodyElement
htmlBodyElementSetALink :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetALink :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementSetBackground :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetBackground :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementSetBgColor :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetBgColor :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementSetLink :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetLink :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementSetText :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetText :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementSetVLink :: HTMLBodyElementClass self => self -> String -> IO ()
htmlBodyElementGetVLink :: HTMLBodyElementClass self => self -> IO String
htmlBodyElementOnbeforeunload :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnhashchange :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnmessage :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnoffline :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnonline :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnpopstate :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnresize :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnstorage :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnunload :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnorientationchange :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnblur :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnerror :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnfocus :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())
htmlBodyElementOnload :: HTMLBodyElementClass self => Signal self (EventM UIEvent self ())

module Graphics.UI.Gtk.WebKit.DOM.HTMLBRElement
htmlbrElementSetClear :: HTMLBRElementClass self => self -> String -> IO ()
htmlbrElementGetClear :: HTMLBRElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLButtonElement
htmlButtonElementCheckValidity :: HTMLButtonElementClass self => self -> IO Bool
htmlButtonElementSetCustomValidity :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementSetAutofocus :: HTMLButtonElementClass self => self -> Bool -> IO ()
htmlButtonElementGetAutofocus :: HTMLButtonElementClass self => self -> IO Bool
htmlButtonElementSetDisabled :: HTMLButtonElementClass self => self -> Bool -> IO ()
htmlButtonElementGetDisabled :: HTMLButtonElementClass self => self -> IO Bool
htmlButtonElementGetForm :: HTMLButtonElementClass self => self -> IO (Maybe HTMLFormElement)
htmlButtonElementSetFormAction :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetFormAction :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementSetFormEnctype :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetFormEnctype :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementSetFormMethod :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetFormMethod :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementSetFormNoValidate :: HTMLButtonElementClass self => self -> Bool -> IO ()
htmlButtonElementGetFormNoValidate :: HTMLButtonElementClass self => self -> IO Bool
htmlButtonElementSetFormTarget :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetFormTarget :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementSetName :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetName :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementSetValue :: HTMLButtonElementClass self => self -> String -> IO ()
htmlButtonElementGetValue :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementGetWillValidate :: HTMLButtonElementClass self => self -> IO Bool
htmlButtonElementGetValidity :: HTMLButtonElementClass self => self -> IO (Maybe ValidityState)
htmlButtonElementGetValidationMessage :: HTMLButtonElementClass self => self -> IO String
htmlButtonElementGetLabels :: HTMLButtonElementClass self => self -> IO (Maybe NodeList)

module Graphics.UI.Gtk.WebKit.DOM.HTMLCollection
htmlCollectionItem :: HTMLCollectionClass self => self -> Word -> IO (Maybe Node)
htmlCollectionNamedItem :: HTMLCollectionClass self => self -> String -> IO (Maybe Node)
htmlCollectionGetLength :: HTMLCollectionClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.HTMLDirectoryElement
htmlDirectoryElementSetCompact :: HTMLDirectoryElementClass self => self -> Bool -> IO ()
htmlDirectoryElementGetCompact :: HTMLDirectoryElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLDivElement
htmlDivElementSetAlign :: HTMLDivElementClass self => self -> String -> IO ()
htmlDivElementGetAlign :: HTMLDivElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLDListElement
htmldListElementSetCompact :: HTMLDListElementClass self => self -> Bool -> IO ()
htmldListElementGetCompact :: HTMLDListElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLDocument
htmlDocumentClose :: HTMLDocumentClass self => self -> IO ()
htmlDocumentClear :: HTMLDocumentClass self => self -> IO ()
htmlDocumentCaptureEvents :: HTMLDocumentClass self => self -> IO ()
htmlDocumentReleaseEvents :: HTMLDocumentClass self => self -> IO ()
htmlDocumentHasFocus :: HTMLDocumentClass self => self -> IO Bool
htmlDocumentGetEmbeds :: HTMLDocumentClass self => self -> IO (Maybe HTMLCollection)
htmlDocumentGetPlugins :: HTMLDocumentClass self => self -> IO (Maybe HTMLCollection)
htmlDocumentGetScripts :: HTMLDocumentClass self => self -> IO (Maybe HTMLCollection)
htmlDocumentGetWidth :: HTMLDocumentClass self => self -> IO Int
htmlDocumentGetHeight :: HTMLDocumentClass self => self -> IO Int
htmlDocumentSetDir :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetDir :: HTMLDocumentClass self => self -> IO String
htmlDocumentSetDesignMode :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetDesignMode :: HTMLDocumentClass self => self -> IO String
htmlDocumentGetCompatMode :: HTMLDocumentClass self => self -> IO String
htmlDocumentGetActiveElement :: HTMLDocumentClass self => self -> IO (Maybe Element)
htmlDocumentSetBgColor :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetBgColor :: HTMLDocumentClass self => self -> IO String
htmlDocumentSetFgColor :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetFgColor :: HTMLDocumentClass self => self -> IO String
htmlDocumentSetAlinkColor :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetAlinkColor :: HTMLDocumentClass self => self -> IO String
htmlDocumentSetLinkColor :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetLinkColor :: HTMLDocumentClass self => self -> IO String
htmlDocumentSetVlinkColor :: HTMLDocumentClass self => self -> String -> IO ()
htmlDocumentGetVlinkColor :: HTMLDocumentClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLElement
htmlElementInsertAdjacentElement :: (HTMLElementClass self, ElementClass element) => self -> String -> Maybe element -> IO (Maybe Element)
htmlElementInsertAdjacentHTML :: HTMLElementClass self => self -> String -> String -> IO ()
htmlElementInsertAdjacentText :: HTMLElementClass self => self -> String -> String -> IO ()
htmlElementClick :: HTMLElementClass self => self -> IO ()
htmlElementSetTitle :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetTitle :: HTMLElementClass self => self -> IO String
htmlElementSetLang :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetLang :: HTMLElementClass self => self -> IO String
htmlElementSetTranslate :: HTMLElementClass self => self -> Bool -> IO ()
htmlElementGetTranslate :: HTMLElementClass self => self -> IO Bool
htmlElementSetDir :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetDir :: HTMLElementClass self => self -> IO String
htmlElementSetTabIndex :: HTMLElementClass self => self -> Int -> IO ()
htmlElementGetTabIndex :: HTMLElementClass self => self -> IO Int
htmlElementSetDraggable :: HTMLElementClass self => self -> Bool -> IO ()
htmlElementGetDraggable :: HTMLElementClass self => self -> IO Bool
htmlElementSetWebkitdropzone :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetWebkitdropzone :: HTMLElementClass self => self -> IO String
htmlElementSetHidden :: HTMLElementClass self => self -> Bool -> IO ()
htmlElementGetHidden :: HTMLElementClass self => self -> IO Bool
htmlElementSetAccessKey :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetAccessKey :: HTMLElementClass self => self -> IO String
htmlElementSetInnerHTML :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetInnerHTML :: HTMLElementClass self => self -> IO String
htmlElementSetInnerText :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetInnerText :: HTMLElementClass self => self -> IO String
htmlElementSetOuterHTML :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetOuterHTML :: HTMLElementClass self => self -> IO String
htmlElementSetOuterText :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetOuterText :: HTMLElementClass self => self -> IO String
htmlElementGetChildren :: HTMLElementClass self => self -> IO (Maybe HTMLCollection)
htmlElementSetContentEditable :: HTMLElementClass self => self -> String -> IO ()
htmlElementGetContentEditable :: HTMLElementClass self => self -> IO String
htmlElementGetIsContentEditable :: HTMLElementClass self => self -> IO Bool
htmlElementSetSpellcheck :: HTMLElementClass self => self -> Bool -> IO ()
htmlElementGetSpellcheck :: HTMLElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLFieldSetElement
htmlFieldSetElementCheckValidity :: HTMLFieldSetElementClass self => self -> IO Bool
htmlFieldSetElementSetCustomValidity :: HTMLFieldSetElementClass self => self -> String -> IO ()
htmlFieldSetElementSetDisabled :: HTMLFieldSetElementClass self => self -> Bool -> IO ()
htmlFieldSetElementGetDisabled :: HTMLFieldSetElementClass self => self -> IO Bool
htmlFieldSetElementGetForm :: HTMLFieldSetElementClass self => self -> IO (Maybe HTMLFormElement)
htmlFieldSetElementSetName :: HTMLFieldSetElementClass self => self -> String -> IO ()
htmlFieldSetElementGetName :: HTMLFieldSetElementClass self => self -> IO String
htmlFieldSetElementGetElements :: HTMLFieldSetElementClass self => self -> IO (Maybe HTMLCollection)
htmlFieldSetElementGetWillValidate :: HTMLFieldSetElementClass self => self -> IO Bool
htmlFieldSetElementGetValidity :: HTMLFieldSetElementClass self => self -> IO (Maybe ValidityState)
htmlFieldSetElementGetValidationMessage :: HTMLFieldSetElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLFontElement
htmlFontElementSetColor :: HTMLFontElementClass self => self -> String -> IO ()
htmlFontElementGetColor :: HTMLFontElementClass self => self -> IO String
htmlFontElementSetFace :: HTMLFontElementClass self => self -> String -> IO ()
htmlFontElementGetFace :: HTMLFontElementClass self => self -> IO String
htmlFontElementSetSize :: HTMLFontElementClass self => self -> String -> IO ()
htmlFontElementGetSize :: HTMLFontElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLFormElement
htmlFormElementSubmit :: HTMLFormElementClass self => self -> IO ()
htmlFormElementReset :: HTMLFormElementClass self => self -> IO ()
htmlFormElementCheckValidity :: HTMLFormElementClass self => self -> IO Bool
htmlFormElementSetAcceptCharset :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetAcceptCharset :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetAction :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetAction :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetAutocomplete :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetAutocomplete :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetEnctype :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetEnctype :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetEncoding :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetEncoding :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetMethod :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetMethod :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetName :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetName :: HTMLFormElementClass self => self -> IO String
htmlFormElementSetNoValidate :: HTMLFormElementClass self => self -> Bool -> IO ()
htmlFormElementGetNoValidate :: HTMLFormElementClass self => self -> IO Bool
htmlFormElementSetTarget :: HTMLFormElementClass self => self -> String -> IO ()
htmlFormElementGetTarget :: HTMLFormElementClass self => self -> IO String
htmlFormElementGetElements :: HTMLFormElementClass self => self -> IO (Maybe HTMLCollection)
htmlFormElementGetLength :: HTMLFormElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLFrameElement
htmlFrameElementSetFrameBorder :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetFrameBorder :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetLongDesc :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetLongDesc :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetMarginHeight :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetMarginHeight :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetMarginWidth :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetMarginWidth :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetName :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetName :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetNoResize :: HTMLFrameElementClass self => self -> Bool -> IO ()
htmlFrameElementGetNoResize :: HTMLFrameElementClass self => self -> IO Bool
htmlFrameElementSetScrolling :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetScrolling :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementSetSrc :: HTMLFrameElementClass self => self -> String -> IO ()
htmlFrameElementGetSrc :: HTMLFrameElementClass self => self -> IO String
htmlFrameElementGetContentDocument :: HTMLFrameElementClass self => self -> IO (Maybe Document)
htmlFrameElementGetContentWindow :: HTMLFrameElementClass self => self -> IO (Maybe DOMWindow)
htmlFrameElementGetWidth :: HTMLFrameElementClass self => self -> IO Int
htmlFrameElementGetHeight :: HTMLFrameElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLFrameSetElement
htmlFrameSetElementSetCols :: HTMLFrameSetElementClass self => self -> String -> IO ()
htmlFrameSetElementGetCols :: HTMLFrameSetElementClass self => self -> IO String
htmlFrameSetElementSetRows :: HTMLFrameSetElementClass self => self -> String -> IO ()
htmlFrameSetElementGetRows :: HTMLFrameSetElementClass self => self -> IO String
htmlFrameSetElementOnbeforeunload :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnhashchange :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnmessage :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnoffline :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnonline :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnpopstate :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnresize :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnstorage :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnunload :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnorientationchange :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnblur :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnerror :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnfocus :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())
htmlFrameSetElementOnload :: HTMLFrameSetElementClass self => Signal self (EventM UIEvent self ())

module Graphics.UI.Gtk.WebKit.DOM.HTMLHeadElement
htmlHeadElementSetProfile :: HTMLHeadElementClass self => self -> String -> IO ()
htmlHeadElementGetProfile :: HTMLHeadElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLHeadingElement
htmlHeadingElementSetAlign :: HTMLHeadingElementClass self => self -> String -> IO ()
htmlHeadingElementGetAlign :: HTMLHeadingElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLHRElement
htmlhrElementSetAlign :: HTMLHRElementClass self => self -> String -> IO ()
htmlhrElementGetAlign :: HTMLHRElementClass self => self -> IO String
htmlhrElementSetNoShade :: HTMLHRElementClass self => self -> Bool -> IO ()
htmlhrElementGetNoShade :: HTMLHRElementClass self => self -> IO Bool
htmlhrElementSetSize :: HTMLHRElementClass self => self -> String -> IO ()
htmlhrElementGetSize :: HTMLHRElementClass self => self -> IO String
htmlhrElementSetWidth :: HTMLHRElementClass self => self -> String -> IO ()
htmlhrElementGetWidth :: HTMLHRElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLHtmlElement
htmlHtmlElementSetVersion :: HTMLHtmlElementClass self => self -> String -> IO ()
htmlHtmlElementGetVersion :: HTMLHtmlElementClass self => self -> IO String
htmlHtmlElementSetManifest :: HTMLHtmlElementClass self => self -> String -> IO ()
htmlHtmlElementGetManifest :: HTMLHtmlElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLIFrameElement
htmliFrameElementSetAlign :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetAlign :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetFrameBorder :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetFrameBorder :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetHeight :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetHeight :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetLongDesc :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetLongDesc :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetMarginHeight :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetMarginHeight :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetMarginWidth :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetMarginWidth :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetName :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetName :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetSandbox :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetSandbox :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetSeamless :: HTMLIFrameElementClass self => self -> Bool -> IO ()
htmliFrameElementGetSeamless :: HTMLIFrameElementClass self => self -> IO Bool
htmliFrameElementSetScrolling :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetScrolling :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetSrc :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetSrc :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetSrcdoc :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetSrcdoc :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetWidth :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetWidth :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementGetContentDocument :: HTMLIFrameElementClass self => self -> IO (Maybe Document)
htmliFrameElementGetContentWindow :: HTMLIFrameElementClass self => self -> IO (Maybe DOMWindow)

module Graphics.UI.Gtk.WebKit.DOM.HTMLImageElement
htmlImageElementSetName :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetName :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetAlign :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetAlign :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetAlt :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetAlt :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetBorder :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetBorder :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetCrossOrigin :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetCrossOrigin :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetHeight :: HTMLImageElementClass self => self -> Int -> IO ()
htmlImageElementGetHeight :: HTMLImageElementClass self => self -> IO Int
htmlImageElementSetHspace :: HTMLImageElementClass self => self -> Int -> IO ()
htmlImageElementGetHspace :: HTMLImageElementClass self => self -> IO Int
htmlImageElementSetIsMap :: HTMLImageElementClass self => self -> Bool -> IO ()
htmlImageElementGetIsMap :: HTMLImageElementClass self => self -> IO Bool
htmlImageElementSetLongDesc :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetLongDesc :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetSrc :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetSrc :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetSrcset :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetSrcset :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetUseMap :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetUseMap :: HTMLImageElementClass self => self -> IO String
htmlImageElementSetVspace :: HTMLImageElementClass self => self -> Int -> IO ()
htmlImageElementGetVspace :: HTMLImageElementClass self => self -> IO Int
htmlImageElementSetWidth :: HTMLImageElementClass self => self -> Int -> IO ()
htmlImageElementGetWidth :: HTMLImageElementClass self => self -> IO Int
htmlImageElementGetComplete :: HTMLImageElementClass self => self -> IO Bool
htmlImageElementSetLowsrc :: HTMLImageElementClass self => self -> String -> IO ()
htmlImageElementGetLowsrc :: HTMLImageElementClass self => self -> IO String
htmlImageElementGetNaturalHeight :: HTMLImageElementClass self => self -> IO Int
htmlImageElementGetNaturalWidth :: HTMLImageElementClass self => self -> IO Int
htmlImageElementGetX :: HTMLImageElementClass self => self -> IO Int
htmlImageElementGetY :: HTMLImageElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLInputElement
htmlInputElementStepUp :: HTMLInputElementClass self => self -> Int -> IO ()
htmlInputElementStepDown :: HTMLInputElementClass self => self -> Int -> IO ()
htmlInputElementCheckValidity :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetCustomValidity :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementSelect :: HTMLInputElementClass self => self -> IO ()
htmlInputElementSetRangeText :: HTMLInputElementClass self => self -> String -> Word -> Word -> String -> IO ()
htmlInputElementSetValueForUser :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementSetAccept :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetAccept :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetAlt :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetAlt :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetAutocomplete :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetAutocomplete :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetAutofocus :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetAutofocus :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetDefaultChecked :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetDefaultChecked :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetChecked :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetChecked :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetDirName :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetDirName :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetDisabled :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetDisabled :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementGetForm :: HTMLInputElementClass self => self -> IO (Maybe HTMLFormElement)
htmlInputElementSetFiles :: (FileListClass val, HTMLInputElementClass self) => self -> Maybe val -> IO ()
htmlInputElementGetFiles :: HTMLInputElementClass self => self -> IO (Maybe FileList)
htmlInputElementSetFormAction :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetFormAction :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetFormEnctype :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetFormEnctype :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetFormMethod :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetFormMethod :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetFormNoValidate :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetFormNoValidate :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetFormTarget :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetFormTarget :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetHeight :: HTMLInputElementClass self => self -> Word -> IO ()
htmlInputElementGetHeight :: HTMLInputElementClass self => self -> IO Word
htmlInputElementSetIndeterminate :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetIndeterminate :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementGetList :: HTMLInputElementClass self => self -> IO (Maybe HTMLElement)
htmlInputElementSetMax :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetMax :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetMaxLength :: HTMLInputElementClass self => self -> Int -> IO ()
htmlInputElementGetMaxLength :: HTMLInputElementClass self => self -> IO Int
htmlInputElementSetMin :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetMin :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetMultiple :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetMultiple :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetName :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetName :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetPattern :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetPattern :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetPlaceholder :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetPlaceholder :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetReadOnly :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetReadOnly :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetRequired :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetRequired :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetSize :: HTMLInputElementClass self => self -> Word -> IO ()
htmlInputElementGetSize :: HTMLInputElementClass self => self -> IO Word
htmlInputElementSetSrc :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetSrc :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetStep :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetStep :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetDefaultValue :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetDefaultValue :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetValue :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetValue :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetValueAsNumber :: HTMLInputElementClass self => self -> Double -> IO ()
htmlInputElementGetValueAsNumber :: HTMLInputElementClass self => self -> IO Double
htmlInputElementSetWidth :: HTMLInputElementClass self => self -> Word -> IO ()
htmlInputElementGetWidth :: HTMLInputElementClass self => self -> IO Word
htmlInputElementGetWillValidate :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementGetValidity :: HTMLInputElementClass self => self -> IO (Maybe ValidityState)
htmlInputElementGetValidationMessage :: HTMLInputElementClass self => self -> IO String
htmlInputElementGetLabels :: HTMLInputElementClass self => self -> IO (Maybe NodeList)
htmlInputElementSetAlign :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetAlign :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetWebkitdirectory :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetWebkitdirectory :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetUseMap :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetUseMap :: HTMLInputElementClass self => self -> IO String
htmlInputElementSetIncremental :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetIncremental :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetWebkitSpeech :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetWebkitSpeech :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementSetWebkitGrammar :: HTMLInputElementClass self => self -> Bool -> IO ()
htmlInputElementGetWebkitGrammar :: HTMLInputElementClass self => self -> IO Bool
htmlInputElementOnwebkitspeechchange :: HTMLInputElementClass self => Signal self (EventM UIEvent self ())
htmlInputElementSetCapture :: HTMLInputElementClass self => self -> String -> IO ()
htmlInputElementGetCapture :: HTMLInputElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLLabelElement
htmlLabelElementGetForm :: HTMLLabelElementClass self => self -> IO (Maybe HTMLFormElement)
htmlLabelElementSetHtmlFor :: HTMLLabelElementClass self => self -> String -> IO ()
htmlLabelElementGetHtmlFor :: HTMLLabelElementClass self => self -> IO String
htmlLabelElementGetControl :: HTMLLabelElementClass self => self -> IO (Maybe HTMLElement)

module Graphics.UI.Gtk.WebKit.DOM.HTMLLegendElement
htmlLegendElementGetForm :: HTMLLegendElementClass self => self -> IO (Maybe HTMLFormElement)
htmlLegendElementSetAlign :: HTMLLegendElementClass self => self -> String -> IO ()
htmlLegendElementGetAlign :: HTMLLegendElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLLIElement
htmlliElementSetValue :: HTMLLIElementClass self => self -> Int -> IO ()
htmlliElementGetValue :: HTMLLIElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLLinkElement
htmlLinkElementSetDisabled :: HTMLLinkElementClass self => self -> Bool -> IO ()
htmlLinkElementGetDisabled :: HTMLLinkElementClass self => self -> IO Bool
htmlLinkElementSetCharset :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetCharset :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetHref :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetHref :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetHreflang :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetHreflang :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetMedia :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetMedia :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetRel :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetRel :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetRev :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetRev :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementSetTarget :: HTMLLinkElementClass self => self -> String -> IO ()
htmlLinkElementGetTarget :: HTMLLinkElementClass self => self -> IO String
htmlLinkElementGetSheet :: HTMLLinkElementClass self => self -> IO (Maybe StyleSheet)

module Graphics.UI.Gtk.WebKit.DOM.HTMLMapElement
htmlMapElementGetAreas :: HTMLMapElementClass self => self -> IO (Maybe HTMLCollection)
htmlMapElementSetName :: HTMLMapElementClass self => self -> String -> IO ()
htmlMapElementGetName :: HTMLMapElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLMenuElement
htmlMenuElementSetCompact :: HTMLMenuElementClass self => self -> Bool -> IO ()
htmlMenuElementGetCompact :: HTMLMenuElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLMetaElement
htmlMetaElementSetContent :: HTMLMetaElementClass self => self -> String -> IO ()
htmlMetaElementGetContent :: HTMLMetaElementClass self => self -> IO String
htmlMetaElementSetHttpEquiv :: HTMLMetaElementClass self => self -> String -> IO ()
htmlMetaElementGetHttpEquiv :: HTMLMetaElementClass self => self -> IO String
htmlMetaElementSetName :: HTMLMetaElementClass self => self -> String -> IO ()
htmlMetaElementGetName :: HTMLMetaElementClass self => self -> IO String
htmlMetaElementSetScheme :: HTMLMetaElementClass self => self -> String -> IO ()
htmlMetaElementGetScheme :: HTMLMetaElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLModElement
htmlModElementSetCite :: HTMLModElementClass self => self -> String -> IO ()
htmlModElementGetCite :: HTMLModElementClass self => self -> IO String
htmlModElementSetDateTime :: HTMLModElementClass self => self -> String -> IO ()
htmlModElementGetDateTime :: HTMLModElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLObjectElement
htmlObjectElementCheckValidity :: HTMLObjectElementClass self => self -> IO Bool
htmlObjectElementSetCustomValidity :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetForm :: HTMLObjectElementClass self => self -> IO (Maybe HTMLFormElement)
htmlObjectElementSetCode :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetCode :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetAlign :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetAlign :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetArchive :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetArchive :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetBorder :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetBorder :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetCodeBase :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetCodeBase :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetCodeType :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetCodeType :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetData :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetData :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetDeclare :: HTMLObjectElementClass self => self -> Bool -> IO ()
htmlObjectElementGetDeclare :: HTMLObjectElementClass self => self -> IO Bool
htmlObjectElementSetHeight :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetHeight :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetHspace :: HTMLObjectElementClass self => self -> Int -> IO ()
htmlObjectElementGetHspace :: HTMLObjectElementClass self => self -> IO Int
htmlObjectElementSetName :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetName :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetStandby :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetStandby :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetUseMap :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetUseMap :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementSetVspace :: HTMLObjectElementClass self => self -> Int -> IO ()
htmlObjectElementGetVspace :: HTMLObjectElementClass self => self -> IO Int
htmlObjectElementSetWidth :: HTMLObjectElementClass self => self -> String -> IO ()
htmlObjectElementGetWidth :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementGetWillValidate :: HTMLObjectElementClass self => self -> IO Bool
htmlObjectElementGetValidity :: HTMLObjectElementClass self => self -> IO (Maybe ValidityState)
htmlObjectElementGetValidationMessage :: HTMLObjectElementClass self => self -> IO String
htmlObjectElementGetContentDocument :: HTMLObjectElementClass self => self -> IO (Maybe Document)

module Graphics.UI.Gtk.WebKit.DOM.HTMLOListElement
htmloListElementSetCompact :: HTMLOListElementClass self => self -> Bool -> IO ()
htmloListElementGetCompact :: HTMLOListElementClass self => self -> IO Bool
htmloListElementSetStart :: HTMLOListElementClass self => self -> Int -> IO ()
htmloListElementGetStart :: HTMLOListElementClass self => self -> IO Int
htmloListElementSetReversed :: HTMLOListElementClass self => self -> Bool -> IO ()
htmloListElementGetReversed :: HTMLOListElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLOptGroupElement
htmlOptGroupElementSetDisabled :: HTMLOptGroupElementClass self => self -> Bool -> IO ()
htmlOptGroupElementGetDisabled :: HTMLOptGroupElementClass self => self -> IO Bool
htmlOptGroupElementSetLabel :: HTMLOptGroupElementClass self => self -> String -> IO ()
htmlOptGroupElementGetLabel :: HTMLOptGroupElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLOptionElement
htmlOptionElementSetDisabled :: HTMLOptionElementClass self => self -> Bool -> IO ()
htmlOptionElementGetDisabled :: HTMLOptionElementClass self => self -> IO Bool
htmlOptionElementGetForm :: HTMLOptionElementClass self => self -> IO (Maybe HTMLFormElement)
htmlOptionElementSetLabel :: HTMLOptionElementClass self => self -> String -> IO ()
htmlOptionElementGetLabel :: HTMLOptionElementClass self => self -> IO String
htmlOptionElementSetDefaultSelected :: HTMLOptionElementClass self => self -> Bool -> IO ()
htmlOptionElementGetDefaultSelected :: HTMLOptionElementClass self => self -> IO Bool
htmlOptionElementSetSelected :: HTMLOptionElementClass self => self -> Bool -> IO ()
htmlOptionElementGetSelected :: HTMLOptionElementClass self => self -> IO Bool
htmlOptionElementSetValue :: HTMLOptionElementClass self => self -> String -> IO ()
htmlOptionElementGetValue :: HTMLOptionElementClass self => self -> IO String
htmlOptionElementGetText :: HTMLOptionElementClass self => self -> IO String
htmlOptionElementGetIndex :: HTMLOptionElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLOptionsCollection
htmlOptionsCollectionNamedItem :: HTMLOptionsCollectionClass self => self -> String -> IO (Maybe Node)
htmlOptionsCollectionSetSelectedIndex :: HTMLOptionsCollectionClass self => self -> Int -> IO ()
htmlOptionsCollectionGetSelectedIndex :: HTMLOptionsCollectionClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLParagraphElement
htmlParagraphElementSetAlign :: HTMLParagraphElementClass self => self -> String -> IO ()
htmlParagraphElementGetAlign :: HTMLParagraphElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLParamElement
htmlParamElementSetName :: HTMLParamElementClass self => self -> String -> IO ()
htmlParamElementGetName :: HTMLParamElementClass self => self -> IO String
htmlParamElementSetValue :: HTMLParamElementClass self => self -> String -> IO ()
htmlParamElementGetValue :: HTMLParamElementClass self => self -> IO String
htmlParamElementSetValueType :: HTMLParamElementClass self => self -> String -> IO ()
htmlParamElementGetValueType :: HTMLParamElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLPreElement
htmlPreElementSetWidth :: HTMLPreElementClass self => self -> Int -> IO ()
htmlPreElementGetWidth :: HTMLPreElementClass self => self -> IO Int
htmlPreElementSetWrap :: HTMLPreElementClass self => self -> Bool -> IO ()
htmlPreElementGetWrap :: HTMLPreElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLQuoteElement
htmlQuoteElementSetCite :: HTMLQuoteElementClass self => self -> String -> IO ()
htmlQuoteElementGetCite :: HTMLQuoteElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLScriptElement
htmlScriptElementSetText :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetText :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetHtmlFor :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetHtmlFor :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetEvent :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetEvent :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetCharset :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetCharset :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetAsync :: HTMLScriptElementClass self => self -> Bool -> IO ()
htmlScriptElementGetAsync :: HTMLScriptElementClass self => self -> IO Bool
htmlScriptElementSetDefer :: HTMLScriptElementClass self => self -> Bool -> IO ()
htmlScriptElementGetDefer :: HTMLScriptElementClass self => self -> IO Bool
htmlScriptElementSetSrc :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetSrc :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetCrossOrigin :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetCrossOrigin :: HTMLScriptElementClass self => self -> IO String
htmlScriptElementSetNonce :: HTMLScriptElementClass self => self -> String -> IO ()
htmlScriptElementGetNonce :: HTMLScriptElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLSelectElement
htmlSelectElementItem :: HTMLSelectElementClass self => self -> Word -> IO (Maybe Node)
htmlSelectElementNamedItem :: HTMLSelectElementClass self => self -> String -> IO (Maybe Node)
htmlSelectElementAdd :: (HTMLSelectElementClass self, HTMLElementClass element, HTMLElementClass before) => self -> Maybe element -> Maybe before -> IO ()
htmlSelectElementRemove :: HTMLSelectElementClass self => self -> Int -> IO ()
htmlSelectElementCheckValidity :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementSetCustomValidity :: HTMLSelectElementClass self => self -> String -> IO ()
htmlSelectElementSetAutofocus :: HTMLSelectElementClass self => self -> Bool -> IO ()
htmlSelectElementGetAutofocus :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementSetDisabled :: HTMLSelectElementClass self => self -> Bool -> IO ()
htmlSelectElementGetDisabled :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementGetForm :: HTMLSelectElementClass self => self -> IO (Maybe HTMLFormElement)
htmlSelectElementSetMultiple :: HTMLSelectElementClass self => self -> Bool -> IO ()
htmlSelectElementGetMultiple :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementSetName :: HTMLSelectElementClass self => self -> String -> IO ()
htmlSelectElementGetName :: HTMLSelectElementClass self => self -> IO String
htmlSelectElementSetRequired :: HTMLSelectElementClass self => self -> Bool -> IO ()
htmlSelectElementGetRequired :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementSetSize :: HTMLSelectElementClass self => self -> Int -> IO ()
htmlSelectElementGetSize :: HTMLSelectElementClass self => self -> IO Int
htmlSelectElementGetOptions :: HTMLSelectElementClass self => self -> IO (Maybe HTMLOptionsCollection)
htmlSelectElementSetLength :: HTMLSelectElementClass self => self -> Word -> IO ()
htmlSelectElementGetLength :: HTMLSelectElementClass self => self -> IO Word
htmlSelectElementGetSelectedOptions :: HTMLSelectElementClass self => self -> IO (Maybe HTMLCollection)
htmlSelectElementSetSelectedIndex :: HTMLSelectElementClass self => self -> Int -> IO ()
htmlSelectElementGetSelectedIndex :: HTMLSelectElementClass self => self -> IO Int
htmlSelectElementSetValue :: HTMLSelectElementClass self => self -> String -> IO ()
htmlSelectElementGetValue :: HTMLSelectElementClass self => self -> IO String
htmlSelectElementGetWillValidate :: HTMLSelectElementClass self => self -> IO Bool
htmlSelectElementGetValidity :: HTMLSelectElementClass self => self -> IO (Maybe ValidityState)
htmlSelectElementGetValidationMessage :: HTMLSelectElementClass self => self -> IO String
htmlSelectElementGetLabels :: HTMLSelectElementClass self => self -> IO (Maybe NodeList)

module Graphics.UI.Gtk.WebKit.DOM.HTMLStyleElement
htmlStyleElementSetDisabled :: HTMLStyleElementClass self => self -> Bool -> IO ()
htmlStyleElementGetDisabled :: HTMLStyleElementClass self => self -> IO Bool
htmlStyleElementSetScoped :: HTMLStyleElementClass self => self -> Bool -> IO ()
htmlStyleElementGetScoped :: HTMLStyleElementClass self => self -> IO Bool
htmlStyleElementSetMedia :: HTMLStyleElementClass self => self -> String -> IO ()
htmlStyleElementGetMedia :: HTMLStyleElementClass self => self -> IO String
htmlStyleElementGetSheet :: HTMLStyleElementClass self => self -> IO (Maybe StyleSheet)

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableCaptionElement
htmlTableCaptionElementSetAlign :: HTMLTableCaptionElementClass self => self -> String -> IO ()
htmlTableCaptionElementGetAlign :: HTMLTableCaptionElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableCellElement
htmlTableCellElementGetCellIndex :: HTMLTableCellElementClass self => self -> IO Int
htmlTableCellElementSetAbbr :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetAbbr :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetAlign :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetAlign :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetAxis :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetAxis :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetBgColor :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetBgColor :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetCh :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetCh :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetChOff :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetChOff :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetColSpan :: HTMLTableCellElementClass self => self -> Int -> IO ()
htmlTableCellElementGetColSpan :: HTMLTableCellElementClass self => self -> IO Int
htmlTableCellElementSetHeaders :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetHeaders :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetHeight :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetHeight :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetNoWrap :: HTMLTableCellElementClass self => self -> Bool -> IO ()
htmlTableCellElementGetNoWrap :: HTMLTableCellElementClass self => self -> IO Bool
htmlTableCellElementSetRowSpan :: HTMLTableCellElementClass self => self -> Int -> IO ()
htmlTableCellElementGetRowSpan :: HTMLTableCellElementClass self => self -> IO Int
htmlTableCellElementSetScope :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetScope :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetVAlign :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetVAlign :: HTMLTableCellElementClass self => self -> IO String
htmlTableCellElementSetWidth :: HTMLTableCellElementClass self => self -> String -> IO ()
htmlTableCellElementGetWidth :: HTMLTableCellElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableColElement
htmlTableColElementSetAlign :: HTMLTableColElementClass self => self -> String -> IO ()
htmlTableColElementGetAlign :: HTMLTableColElementClass self => self -> IO String
htmlTableColElementSetCh :: HTMLTableColElementClass self => self -> String -> IO ()
htmlTableColElementGetCh :: HTMLTableColElementClass self => self -> IO String
htmlTableColElementSetChOff :: HTMLTableColElementClass self => self -> String -> IO ()
htmlTableColElementGetChOff :: HTMLTableColElementClass self => self -> IO String
htmlTableColElementSetSpan :: HTMLTableColElementClass self => self -> Int -> IO ()
htmlTableColElementGetSpan :: HTMLTableColElementClass self => self -> IO Int
htmlTableColElementSetVAlign :: HTMLTableColElementClass self => self -> String -> IO ()
htmlTableColElementGetVAlign :: HTMLTableColElementClass self => self -> IO String
htmlTableColElementSetWidth :: HTMLTableColElementClass self => self -> String -> IO ()
htmlTableColElementGetWidth :: HTMLTableColElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableElement
htmlTableElementCreateTHead :: HTMLTableElementClass self => self -> IO (Maybe HTMLElement)
htmlTableElementDeleteTHead :: HTMLTableElementClass self => self -> IO ()
htmlTableElementCreateTFoot :: HTMLTableElementClass self => self -> IO (Maybe HTMLElement)
htmlTableElementDeleteTFoot :: HTMLTableElementClass self => self -> IO ()
htmlTableElementCreateTBody :: HTMLTableElementClass self => self -> IO (Maybe HTMLElement)
htmlTableElementCreateCaption :: HTMLTableElementClass self => self -> IO (Maybe HTMLElement)
htmlTableElementDeleteCaption :: HTMLTableElementClass self => self -> IO ()
htmlTableElementInsertRow :: HTMLTableElementClass self => self -> Int -> IO (Maybe HTMLElement)
htmlTableElementDeleteRow :: HTMLTableElementClass self => self -> Int -> IO ()
htmlTableElementSetCaption :: (HTMLTableCaptionElementClass val, HTMLTableElementClass self) => self -> Maybe val -> IO ()
htmlTableElementGetCaption :: HTMLTableElementClass self => self -> IO (Maybe HTMLTableCaptionElement)
htmlTableElementSetTHead :: (HTMLTableSectionElementClass val, HTMLTableElementClass self) => self -> Maybe val -> IO ()
htmlTableElementGetTHead :: HTMLTableElementClass self => self -> IO (Maybe HTMLTableSectionElement)
htmlTableElementSetTFoot :: (HTMLTableSectionElementClass val, HTMLTableElementClass self) => self -> Maybe val -> IO ()
htmlTableElementGetTFoot :: HTMLTableElementClass self => self -> IO (Maybe HTMLTableSectionElement)
htmlTableElementGetRows :: HTMLTableElementClass self => self -> IO (Maybe HTMLCollection)
htmlTableElementGetTBodies :: HTMLTableElementClass self => self -> IO (Maybe HTMLCollection)
htmlTableElementSetAlign :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetAlign :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetBgColor :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetBgColor :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetBorder :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetBorder :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetCellPadding :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetCellPadding :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetCellSpacing :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetCellSpacing :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetFrame :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetFrame :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetRules :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetRules :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetSummary :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetSummary :: HTMLTableElementClass self => self -> IO String
htmlTableElementSetWidth :: HTMLTableElementClass self => self -> String -> IO ()
htmlTableElementGetWidth :: HTMLTableElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableRowElement
htmlTableRowElementInsertCell :: HTMLTableRowElementClass self => self -> Int -> IO (Maybe HTMLElement)
htmlTableRowElementDeleteCell :: HTMLTableRowElementClass self => self -> Int -> IO ()
htmlTableRowElementGetRowIndex :: HTMLTableRowElementClass self => self -> IO Int
htmlTableRowElementGetSectionRowIndex :: HTMLTableRowElementClass self => self -> IO Int
htmlTableRowElementGetCells :: HTMLTableRowElementClass self => self -> IO (Maybe HTMLCollection)
htmlTableRowElementSetAlign :: HTMLTableRowElementClass self => self -> String -> IO ()
htmlTableRowElementGetAlign :: HTMLTableRowElementClass self => self -> IO String
htmlTableRowElementSetBgColor :: HTMLTableRowElementClass self => self -> String -> IO ()
htmlTableRowElementGetBgColor :: HTMLTableRowElementClass self => self -> IO String
htmlTableRowElementSetCh :: HTMLTableRowElementClass self => self -> String -> IO ()
htmlTableRowElementGetCh :: HTMLTableRowElementClass self => self -> IO String
htmlTableRowElementSetChOff :: HTMLTableRowElementClass self => self -> String -> IO ()
htmlTableRowElementGetChOff :: HTMLTableRowElementClass self => self -> IO String
htmlTableRowElementSetVAlign :: HTMLTableRowElementClass self => self -> String -> IO ()
htmlTableRowElementGetVAlign :: HTMLTableRowElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTableSectionElement
htmlTableSectionElementInsertRow :: HTMLTableSectionElementClass self => self -> Int -> IO (Maybe HTMLElement)
htmlTableSectionElementDeleteRow :: HTMLTableSectionElementClass self => self -> Int -> IO ()
htmlTableSectionElementSetAlign :: HTMLTableSectionElementClass self => self -> String -> IO ()
htmlTableSectionElementGetAlign :: HTMLTableSectionElementClass self => self -> IO String
htmlTableSectionElementSetCh :: HTMLTableSectionElementClass self => self -> String -> IO ()
htmlTableSectionElementGetCh :: HTMLTableSectionElementClass self => self -> IO String
htmlTableSectionElementSetChOff :: HTMLTableSectionElementClass self => self -> String -> IO ()
htmlTableSectionElementGetChOff :: HTMLTableSectionElementClass self => self -> IO String
htmlTableSectionElementSetVAlign :: HTMLTableSectionElementClass self => self -> String -> IO ()
htmlTableSectionElementGetVAlign :: HTMLTableSectionElementClass self => self -> IO String
htmlTableSectionElementGetRows :: HTMLTableSectionElementClass self => self -> IO (Maybe HTMLCollection)

module Graphics.UI.Gtk.WebKit.DOM.HTMLTextAreaElement
htmlTextAreaElementCheckValidity :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementSetCustomValidity :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementSelect :: HTMLTextAreaElementClass self => self -> IO ()
htmlTextAreaElementSetRangeText :: HTMLTextAreaElementClass self => self -> String -> Word -> Word -> String -> IO ()
htmlTextAreaElementSetSelectionRange :: HTMLTextAreaElementClass self => self -> Int -> Int -> String -> IO ()
htmlTextAreaElementSetAutofocus :: HTMLTextAreaElementClass self => self -> Bool -> IO ()
htmlTextAreaElementGetAutofocus :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementSetCols :: HTMLTextAreaElementClass self => self -> Int -> IO ()
htmlTextAreaElementGetCols :: HTMLTextAreaElementClass self => self -> IO Int
htmlTextAreaElementSetDirName :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetDirName :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementSetDisabled :: HTMLTextAreaElementClass self => self -> Bool -> IO ()
htmlTextAreaElementGetDisabled :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementGetForm :: HTMLTextAreaElementClass self => self -> IO (Maybe HTMLFormElement)
htmlTextAreaElementSetMaxLength :: HTMLTextAreaElementClass self => self -> Int -> IO ()
htmlTextAreaElementGetMaxLength :: HTMLTextAreaElementClass self => self -> IO Int
htmlTextAreaElementSetName :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetName :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementSetPlaceholder :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetPlaceholder :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementSetReadOnly :: HTMLTextAreaElementClass self => self -> Bool -> IO ()
htmlTextAreaElementGetReadOnly :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementSetRequired :: HTMLTextAreaElementClass self => self -> Bool -> IO ()
htmlTextAreaElementGetRequired :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementSetRows :: HTMLTextAreaElementClass self => self -> Int -> IO ()
htmlTextAreaElementGetRows :: HTMLTextAreaElementClass self => self -> IO Int
htmlTextAreaElementSetWrap :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetWrap :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementSetDefaultValue :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetDefaultValue :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementSetValue :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetValue :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementGetTextLength :: HTMLTextAreaElementClass self => self -> IO Word
htmlTextAreaElementGetWillValidate :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementGetValidity :: HTMLTextAreaElementClass self => self -> IO (Maybe ValidityState)
htmlTextAreaElementGetValidationMessage :: HTMLTextAreaElementClass self => self -> IO String
htmlTextAreaElementGetLabels :: HTMLTextAreaElementClass self => self -> IO (Maybe NodeList)
htmlTextAreaElementSetSelectionStart :: HTMLTextAreaElementClass self => self -> Int -> IO ()
htmlTextAreaElementGetSelectionStart :: HTMLTextAreaElementClass self => self -> IO Int
htmlTextAreaElementSetSelectionEnd :: HTMLTextAreaElementClass self => self -> Int -> IO ()
htmlTextAreaElementGetSelectionEnd :: HTMLTextAreaElementClass self => self -> IO Int
htmlTextAreaElementSetSelectionDirection :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementGetSelectionDirection :: HTMLTextAreaElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLTitleElement
htmlTitleElementSetText :: HTMLTitleElementClass self => self -> String -> IO ()
htmlTitleElementGetText :: HTMLTitleElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLUListElement
htmluListElementSetCompact :: HTMLUListElementClass self => self -> Bool -> IO ()
htmluListElementGetCompact :: HTMLUListElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.KeyboardEvent
keyboardEventGetModifierState :: KeyboardEventClass self => self -> String -> IO Bool
keyboardEventInitKeyboardEvent :: (KeyboardEventClass self, DOMWindowClass view) => self -> String -> Bool -> Bool -> Maybe view -> String -> Word -> Bool -> Bool -> Bool -> Bool -> Bool -> IO ()
cKEY_LOCATION_STANDARD :: Integer
cKEY_LOCATION_LEFT :: Integer
cKEY_LOCATION_RIGHT :: Integer
cKEY_LOCATION_NUMPAD :: Integer
keyboardEventGetKeyIdentifier :: KeyboardEventClass self => self -> IO String
keyboardEventGetKeyLocation :: KeyboardEventClass self => self -> IO Word
keyboardEventGetCtrlKey :: KeyboardEventClass self => self -> IO Bool
keyboardEventGetShiftKey :: KeyboardEventClass self => self -> IO Bool
keyboardEventGetAltKey :: KeyboardEventClass self => self -> IO Bool
keyboardEventGetMetaKey :: KeyboardEventClass self => self -> IO Bool
keyboardEventGetAltGraphKey :: KeyboardEventClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.Location
locationGetOrigin :: LocationClass self => self -> IO String
locationGetAncestorOrigins :: LocationClass self => self -> IO (Maybe DOMStringList)

module Graphics.UI.Gtk.WebKit.DOM.MediaList
mediaListItem :: MediaListClass self => self -> Word -> IO String
mediaListDeleteMedium :: MediaListClass self => self -> String -> IO ()
mediaListAppendMedium :: MediaListClass self => self -> String -> IO ()
mediaListSetMediaText :: MediaListClass self => self -> String -> IO ()
mediaListGetMediaText :: MediaListClass self => self -> IO String
mediaListGetLength :: MediaListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.MediaQueryList
mediaQueryListGetMedia :: MediaQueryListClass self => self -> IO String
mediaQueryListGetMatches :: MediaQueryListClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.NamedNodeMap
namedNodeMapGetNamedItem :: NamedNodeMapClass self => self -> String -> IO (Maybe Node)
namedNodeMapSetNamedItem :: (NamedNodeMapClass self, NodeClass node) => self -> Maybe node -> IO (Maybe Node)
namedNodeMapRemoveNamedItem :: NamedNodeMapClass self => self -> String -> IO (Maybe Node)
namedNodeMapItem :: NamedNodeMapClass self => self -> Word -> IO (Maybe Node)
namedNodeMapGetNamedItemNS :: NamedNodeMapClass self => self -> String -> String -> IO (Maybe Node)
namedNodeMapSetNamedItemNS :: (NamedNodeMapClass self, NodeClass node) => self -> Maybe node -> IO (Maybe Node)
namedNodeMapRemoveNamedItemNS :: NamedNodeMapClass self => self -> String -> String -> IO (Maybe Node)
namedNodeMapGetLength :: NamedNodeMapClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Navigator
navigatorJavaEnabled :: NavigatorClass self => self -> IO Bool
navigatorGetStorageUpdates :: NavigatorClass self => self -> IO ()
navigatorGetAppCodeName :: NavigatorClass self => self -> IO String
navigatorGetAppName :: NavigatorClass self => self -> IO String
navigatorGetAppVersion :: NavigatorClass self => self -> IO String
navigatorGetLanguage :: NavigatorClass self => self -> IO String
navigatorGetUserAgent :: NavigatorClass self => self -> IO String
navigatorGetPlatform :: NavigatorClass self => self -> IO String
navigatorGetPlugins :: NavigatorClass self => self -> IO (Maybe DOMPluginArray)
navigatorGetMimeTypes :: NavigatorClass self => self -> IO (Maybe DOMMimeTypeArray)
navigatorGetProduct :: NavigatorClass self => self -> IO String
navigatorGetProductSub :: NavigatorClass self => self -> IO String
navigatorGetVendor :: NavigatorClass self => self -> IO String
navigatorGetVendorSub :: NavigatorClass self => self -> IO String
navigatorGetCookieEnabled :: NavigatorClass self => self -> IO Bool
navigatorGetOnLine :: NavigatorClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.Node
nodeInsertBefore :: (NodeClass self, NodeClass newChild, NodeClass refChild) => self -> Maybe newChild -> Maybe refChild -> IO (Maybe Node)
nodeReplaceChild :: (NodeClass self, NodeClass newChild, NodeClass oldChild) => self -> Maybe newChild -> Maybe oldChild -> IO (Maybe Node)
nodeRemoveChild :: (NodeClass self, NodeClass oldChild) => self -> Maybe oldChild -> IO (Maybe Node)
nodeAppendChild :: (NodeClass self, NodeClass newChild) => self -> Maybe newChild -> IO (Maybe Node)
nodeHasChildNodes :: NodeClass self => self -> IO Bool
nodeCloneNode :: NodeClass self => self -> Bool -> IO (Maybe Node)
nodeNormalize :: NodeClass self => self -> IO ()
nodeIsSupported :: NodeClass self => self -> String -> String -> IO Bool
nodeIsSameNode :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO Bool
nodeIsEqualNode :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO Bool
nodeLookupPrefix :: NodeClass self => self -> String -> IO String
nodeIsDefaultNamespace :: NodeClass self => self -> String -> IO Bool
nodeLookupNamespaceURI :: NodeClass self => self -> String -> IO String
nodeCompareDocumentPosition :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO Word
nodeContains :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO Bool
nodeDispatchEvent :: (NodeClass self, EventClass event) => self -> Maybe event -> IO Bool
cELEMENT_NODE :: Integer
cATTRIBUTE_NODE :: Integer
cTEXT_NODE :: Integer
cCDATA_SECTION_NODE :: Integer
cENTITY_REFERENCE_NODE :: Integer
cENTITY_NODE :: Integer
cPROCESSING_INSTRUCTION_NODE :: Integer
cCOMMENT_NODE :: Integer
cDOCUMENT_NODE :: Integer
cDOCUMENT_TYPE_NODE :: Integer
cDOCUMENT_FRAGMENT_NODE :: Integer
cNOTATION_NODE :: Integer
cDOCUMENT_POSITION_DISCONNECTED :: Integer
cDOCUMENT_POSITION_PRECEDING :: Integer
cDOCUMENT_POSITION_FOLLOWING :: Integer
cDOCUMENT_POSITION_CONTAINS :: Integer
cDOCUMENT_POSITION_CONTAINED_BY :: Integer
cDOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC :: Integer
nodeGetNodeName :: NodeClass self => self -> IO String
nodeSetNodeValue :: NodeClass self => self -> String -> IO ()
nodeGetNodeValue :: NodeClass self => self -> IO String
nodeGetNodeType :: NodeClass self => self -> IO Word
nodeGetParentNode :: NodeClass self => self -> IO (Maybe Node)
nodeGetChildNodes :: NodeClass self => self -> IO (Maybe NodeList)
nodeGetFirstChild :: NodeClass self => self -> IO (Maybe Node)
nodeGetLastChild :: NodeClass self => self -> IO (Maybe Node)
nodeGetPreviousSibling :: NodeClass self => self -> IO (Maybe Node)
nodeGetNextSibling :: NodeClass self => self -> IO (Maybe Node)
nodeGetOwnerDocument :: NodeClass self => self -> IO (Maybe Document)
nodeGetNamespaceURI :: NodeClass self => self -> IO String
nodeSetPrefix :: NodeClass self => self -> String -> IO ()
nodeGetPrefix :: NodeClass self => self -> IO String
nodeGetLocalName :: NodeClass self => self -> IO String
nodeGetBaseURI :: NodeClass self => self -> IO String
nodeSetTextContent :: NodeClass self => self -> String -> IO ()
nodeGetTextContent :: NodeClass self => self -> IO String
nodeGetParentElement :: NodeClass self => self -> IO (Maybe Element)

module Graphics.UI.Gtk.WebKit.DOM.NodeFilter
cFILTER_ACCEPT :: Integer
cFILTER_REJECT :: Integer
cFILTER_SKIP :: Integer
cSHOW_ALL :: Integer
cSHOW_ELEMENT :: Integer
cSHOW_ATTRIBUTE :: Integer
cSHOW_TEXT :: Integer
cSHOW_CDATA_SECTION :: Integer
cSHOW_ENTITY_REFERENCE :: Integer
cSHOW_ENTITY :: Integer
cSHOW_PROCESSING_INSTRUCTION :: Integer
cSHOW_COMMENT :: Integer
cSHOW_DOCUMENT :: Integer
cSHOW_DOCUMENT_TYPE :: Integer
cSHOW_DOCUMENT_FRAGMENT :: Integer
cSHOW_NOTATION :: Integer

module Graphics.UI.Gtk.WebKit.DOM.NodeIterator
nodeIteratorDetach :: NodeIteratorClass self => self -> IO ()
nodeIteratorGetRoot :: NodeIteratorClass self => self -> IO (Maybe Node)
nodeIteratorGetWhatToShow :: NodeIteratorClass self => self -> IO Word
nodeIteratorGetFilter :: NodeIteratorClass self => self -> IO (Maybe NodeFilter)
nodeIteratorGetExpandEntityReferences :: NodeIteratorClass self => self -> IO Bool
nodeIteratorGetReferenceNode :: NodeIteratorClass self => self -> IO (Maybe Node)
nodeIteratorGetPointerBeforeReferenceNode :: NodeIteratorClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.NodeList
nodeListItem :: NodeListClass self => self -> Word -> IO (Maybe Node)
nodeListGetLength :: NodeListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.ProcessingInstruction
processingInstructionGetTarget :: ProcessingInstructionClass self => self -> IO String
processingInstructionSetData :: ProcessingInstructionClass self => self -> String -> IO ()
processingInstructionGetData :: ProcessingInstructionClass self => self -> IO String
processingInstructionGetSheet :: ProcessingInstructionClass self => self -> IO (Maybe StyleSheet)

module Graphics.UI.Gtk.WebKit.DOM.Range
rangeSetStart :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> Int -> IO ()
rangeSetEnd :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> Int -> IO ()
rangeSetStartBefore :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeSetStartAfter :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeSetEndBefore :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeSetEndAfter :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeCollapse :: DOMRangeClass self => self -> Bool -> IO ()
rangeSelectNode :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeSelectNodeContents :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO ()
rangeCompareBoundaryPoints :: (DOMRangeClass self, DOMRangeClass sourceRange) => self -> Word -> Maybe sourceRange -> IO Int
rangeDeleteContents :: DOMRangeClass self => self -> IO ()
rangeExtractContents :: DOMRangeClass self => self -> IO (Maybe DocumentFragment)
rangeCloneContents :: DOMRangeClass self => self -> IO (Maybe DocumentFragment)
rangeInsertNode :: (DOMRangeClass self, NodeClass newNode) => self -> Maybe newNode -> IO ()
rangeSurroundContents :: (DOMRangeClass self, NodeClass newParent) => self -> Maybe newParent -> IO ()
rangeCloneRange :: DOMRangeClass self => self -> IO (Maybe DOMRange)
rangeToString :: DOMRangeClass self => self -> IO String
rangeDetach :: DOMRangeClass self => self -> IO ()
rangeCreateContextualFragment :: DOMRangeClass self => self -> String -> IO (Maybe DocumentFragment)
rangeIntersectsNode :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO Bool
rangeCompareNode :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> IO Int
rangeComparePoint :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> Int -> IO Int
rangeIsPointInRange :: (DOMRangeClass self, NodeClass refNode) => self -> Maybe refNode -> Int -> IO Bool
rangeExpand :: DOMRangeClass self => self -> String -> IO ()
cSTART_TO_START :: Integer
cSTART_TO_END :: Integer
cEND_TO_END :: Integer
cEND_TO_START :: Integer
cNODE_BEFORE :: Integer
cNODE_AFTER :: Integer
cNODE_BEFORE_AND_AFTER :: Integer
cNODE_INSIDE :: Integer
rangeGetStartContainer :: DOMRangeClass self => self -> IO (Maybe Node)
rangeGetStartOffset :: DOMRangeClass self => self -> IO Int
rangeGetEndContainer :: DOMRangeClass self => self -> IO (Maybe Node)
rangeGetEndOffset :: DOMRangeClass self => self -> IO Int
rangeGetCollapsed :: DOMRangeClass self => self -> IO Bool
rangeGetCommonAncestorContainer :: DOMRangeClass self => self -> IO (Maybe Node)
rangeGetText :: DOMRangeClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.Screen
screenGetHeight :: DOMScreenClass self => self -> IO Word
screenGetWidth :: DOMScreenClass self => self -> IO Word
screenGetColorDepth :: DOMScreenClass self => self -> IO Word
screenGetPixelDepth :: DOMScreenClass self => self -> IO Word
screenGetAvailLeft :: DOMScreenClass self => self -> IO Int
screenGetAvailTop :: DOMScreenClass self => self -> IO Int
screenGetAvailHeight :: DOMScreenClass self => self -> IO Word
screenGetAvailWidth :: DOMScreenClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.StyleMedia
styleMediaMatchMedium :: StyleMediaClass self => self -> String -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.StyleSheet
styleSheetSetDisabled :: StyleSheetClass self => self -> Bool -> IO ()
styleSheetGetDisabled :: StyleSheetClass self => self -> IO Bool
styleSheetGetOwnerNode :: StyleSheetClass self => self -> IO (Maybe Node)
styleSheetGetParentStyleSheet :: StyleSheetClass self => self -> IO (Maybe StyleSheet)
styleSheetGetHref :: StyleSheetClass self => self -> IO String
styleSheetGetTitle :: StyleSheetClass self => self -> IO String
styleSheetGetMedia :: StyleSheetClass self => self -> IO (Maybe MediaList)

module Graphics.UI.Gtk.WebKit.DOM.StyleSheetList
styleSheetListItem :: StyleSheetListClass self => self -> Word -> IO (Maybe StyleSheet)
styleSheetListGetLength :: StyleSheetListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Storage
storageKey :: StorageClass self => self -> Word -> IO String
storageGetItem :: StorageClass self => self -> String -> IO String
storageSetItem :: StorageClass self => self -> String -> String -> IO ()
storageRemoveItem :: StorageClass self => self -> String -> IO ()
storageClear :: StorageClass self => self -> IO ()
storageGetLength :: StorageClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Text
textSplitText :: TextClass self => self -> Word -> IO (Maybe Text)
textReplaceWholeText :: TextClass self => self -> String -> IO (Maybe Text)
textGetWholeText :: TextClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.TreeWalker
treeWalkerGetRoot :: TreeWalkerClass self => self -> IO (Maybe Node)
treeWalkerGetWhatToShow :: TreeWalkerClass self => self -> IO Word
treeWalkerGetFilter :: TreeWalkerClass self => self -> IO (Maybe NodeFilter)
treeWalkerGetExpandEntityReferences :: TreeWalkerClass self => self -> IO Bool
treeWalkerSetCurrentNode :: (NodeClass val, TreeWalkerClass self) => self -> Maybe val -> IO ()
treeWalkerGetCurrentNode :: TreeWalkerClass self => self -> IO (Maybe Node)

module Graphics.UI.Gtk.WebKit.DOM.ValidityState
validityStateGetValueMissing :: ValidityStateClass self => self -> IO Bool
validityStateGetTypeMismatch :: ValidityStateClass self => self -> IO Bool
validityStateGetPatternMismatch :: ValidityStateClass self => self -> IO Bool
validityStateGetTooLong :: ValidityStateClass self => self -> IO Bool
validityStateGetRangeUnderflow :: ValidityStateClass self => self -> IO Bool
validityStateGetRangeOverflow :: ValidityStateClass self => self -> IO Bool
validityStateGetStepMismatch :: ValidityStateClass self => self -> IO Bool
validityStateGetBadInput :: ValidityStateClass self => self -> IO Bool
validityStateGetCustomError :: ValidityStateClass self => self -> IO Bool
validityStateGetValid :: ValidityStateClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.WebKitNamedFlow
webKitNamedFlowGetRegionsByContent :: (WebKitNamedFlowClass self, NodeClass contentNode) => self -> Maybe contentNode -> IO (Maybe NodeList)
webKitNamedFlowGetRegions :: WebKitNamedFlowClass self => self -> IO (Maybe NodeList)
webKitNamedFlowGetContent :: WebKitNamedFlowClass self => self -> IO (Maybe NodeList)
webKitNamedFlowDispatchEvent :: (WebKitNamedFlowClass self, EventClass event) => self -> Maybe event -> IO Bool
webKitNamedFlowGetName :: WebKitNamedFlowClass self => self -> IO String
webKitNamedFlowGetOverset :: WebKitNamedFlowClass self => self -> IO Bool
webKitNamedFlowGetFirstEmptyRegionIndex :: WebKitNamedFlowClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.WebKitPoint
webKitPointSetX :: WebKitPointClass self => self -> Float -> IO ()
webKitPointGetX :: WebKitPointClass self => self -> IO Float
webKitPointSetY :: WebKitPointClass self => self -> Float -> IO ()
webKitPointGetY :: WebKitPointClass self => self -> IO Float

module Graphics.UI.Gtk.WebKit.DOM.XPathExpression
xPathExpressionEvaluate :: (XPathExpressionClass self, NodeClass contextNode, XPathResultClass inResult) => self -> Maybe contextNode -> Word -> Maybe inResult -> IO (Maybe XPathResult)

module Graphics.UI.Gtk.WebKit.DOM.XPathNSResolver
xPathNSResolverLookupNamespaceURI :: XPathNSResolverClass self => self -> String -> IO String

module Graphics.UI.Gtk.WebKit.DOM.XPathResult
xPathResultIterateNext :: XPathResultClass self => self -> IO (Maybe Node)
xPathResultSnapshotItem :: XPathResultClass self => self -> Word -> IO (Maybe Node)
cANY_TYPE :: Integer
cNUMBER_TYPE :: Integer
cSTRING_TYPE :: Integer
cBOOLEAN_TYPE :: Integer
cUNORDERED_NODE_ITERATOR_TYPE :: Integer
cORDERED_NODE_ITERATOR_TYPE :: Integer
cUNORDERED_NODE_SNAPSHOT_TYPE :: Integer
cORDERED_NODE_SNAPSHOT_TYPE :: Integer
cANY_UNORDERED_NODE_TYPE :: Integer
cFIRST_ORDERED_NODE_TYPE :: Integer
xPathResultGetResultType :: XPathResultClass self => self -> IO Word
xPathResultGetNumberValue :: XPathResultClass self => self -> IO Double
xPathResultGetStringValue :: XPathResultClass self => self -> IO String
xPathResultGetBooleanValue :: XPathResultClass self => self -> IO Bool
xPathResultGetSingleNodeValue :: XPathResultClass self => self -> IO (Maybe Node)
xPathResultGetInvalidIteratorState :: XPathResultClass self => self -> IO Bool
xPathResultGetSnapshotLength :: XPathResultClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.DOMSecurityPolicy
domSecurityPolicyAllowsConnectionTo :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsFontFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsFormAction :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsFrameFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsImageFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsMediaFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsObjectFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsPluginType :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsScriptFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsStyleFrom :: DOMSecurityPolicyClass self => self -> String -> IO Bool
domSecurityPolicyAllowsEval :: DOMSecurityPolicyClass self => self -> IO Bool
domSecurityPolicyAllowsInlineScript :: DOMSecurityPolicyClass self => self -> IO Bool
domSecurityPolicyAllowsInlineStyle :: DOMSecurityPolicyClass self => self -> IO Bool
domSecurityPolicyGetReportURIs :: DOMSecurityPolicyClass self => self -> IO (Maybe DOMStringList)

module Graphics.UI.Gtk.WebKit.DOM.DOMStringList
domStringListItem :: DOMStringListClass self => self -> Word -> IO String
domStringListContains :: DOMStringListClass self => self -> String -> IO Bool
domStringListGetLength :: DOMStringListClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.Geolocation
geolocationClearWatch :: GeolocationClass self => self -> Int -> IO ()

module Graphics.UI.Gtk.WebKit.DOM.HTMLCanvasElement
htmlCanvasElementSetWidth :: HTMLCanvasElementClass self => self -> Int -> IO ()
htmlCanvasElementGetWidth :: HTMLCanvasElementClass self => self -> IO Int
htmlCanvasElementSetHeight :: HTMLCanvasElementClass self => self -> Int -> IO ()
htmlCanvasElementGetHeight :: HTMLCanvasElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLDetailsElement
htmlDetailsElementSetOpen :: HTMLDetailsElementClass self => self -> Bool -> IO ()
htmlDetailsElementGetOpen :: HTMLDetailsElementClass self => self -> IO Bool

module Graphics.UI.Gtk.WebKit.DOM.HTMLEmbedElement
htmlEmbedElementSetAlign :: HTMLEmbedElementClass self => self -> String -> IO ()
htmlEmbedElementGetAlign :: HTMLEmbedElementClass self => self -> IO String
htmlEmbedElementSetHeight :: HTMLEmbedElementClass self => self -> Int -> IO ()
htmlEmbedElementGetHeight :: HTMLEmbedElementClass self => self -> IO Int
htmlEmbedElementSetName :: HTMLEmbedElementClass self => self -> String -> IO ()
htmlEmbedElementGetName :: HTMLEmbedElementClass self => self -> IO String
htmlEmbedElementSetSrc :: HTMLEmbedElementClass self => self -> String -> IO ()
htmlEmbedElementGetSrc :: HTMLEmbedElementClass self => self -> IO String
htmlEmbedElementSetWidth :: HTMLEmbedElementClass self => self -> Int -> IO ()
htmlEmbedElementGetWidth :: HTMLEmbedElementClass self => self -> IO Int

module Graphics.UI.Gtk.WebKit.DOM.HTMLKeygenElement
htmlKeygenElementCheckValidity :: HTMLKeygenElementClass self => self -> IO Bool
htmlKeygenElementSetCustomValidity :: HTMLKeygenElementClass self => self -> String -> IO ()
htmlKeygenElementSetAutofocus :: HTMLKeygenElementClass self => self -> Bool -> IO ()
htmlKeygenElementGetAutofocus :: HTMLKeygenElementClass self => self -> IO Bool
htmlKeygenElementSetChallenge :: HTMLKeygenElementClass self => self -> String -> IO ()
htmlKeygenElementGetChallenge :: HTMLKeygenElementClass self => self -> IO String
htmlKeygenElementSetDisabled :: HTMLKeygenElementClass self => self -> Bool -> IO ()
htmlKeygenElementGetDisabled :: HTMLKeygenElementClass self => self -> IO Bool
htmlKeygenElementGetForm :: HTMLKeygenElementClass self => self -> IO (Maybe HTMLFormElement)
htmlKeygenElementSetKeytype :: HTMLKeygenElementClass self => self -> String -> IO ()
htmlKeygenElementGetKeytype :: HTMLKeygenElementClass self => self -> IO String
htmlKeygenElementSetName :: HTMLKeygenElementClass self => self -> String -> IO ()
htmlKeygenElementGetName :: HTMLKeygenElementClass self => self -> IO String
htmlKeygenElementGetWillValidate :: HTMLKeygenElementClass self => self -> IO Bool
htmlKeygenElementGetValidity :: HTMLKeygenElementClass self => self -> IO (Maybe ValidityState)
htmlKeygenElementGetValidationMessage :: HTMLKeygenElementClass self => self -> IO String
htmlKeygenElementGetLabels :: HTMLKeygenElementClass self => self -> IO (Maybe NodeList)

module Graphics.UI.Gtk.WebKit.DOM.HTMLMarqueeElement
htmlMarqueeElementStart :: HTMLMarqueeElementClass self => self -> IO ()
htmlMarqueeElementStop :: HTMLMarqueeElementClass self => self -> IO ()
htmlMarqueeElementSetBehavior :: HTMLMarqueeElementClass self => self -> String -> IO ()
htmlMarqueeElementGetBehavior :: HTMLMarqueeElementClass self => self -> IO String
htmlMarqueeElementSetBgColor :: HTMLMarqueeElementClass self => self -> String -> IO ()
htmlMarqueeElementGetBgColor :: HTMLMarqueeElementClass self => self -> IO String
htmlMarqueeElementSetDirection :: HTMLMarqueeElementClass self => self -> String -> IO ()
htmlMarqueeElementGetDirection :: HTMLMarqueeElementClass self => self -> IO String
htmlMarqueeElementSetHeight :: HTMLMarqueeElementClass self => self -> String -> IO ()
htmlMarqueeElementGetHeight :: HTMLMarqueeElementClass self => self -> IO String
htmlMarqueeElementSetHspace :: HTMLMarqueeElementClass self => self -> Word -> IO ()
htmlMarqueeElementGetHspace :: HTMLMarqueeElementClass self => self -> IO Word
htmlMarqueeElementSetLoop :: HTMLMarqueeElementClass self => self -> Int -> IO ()
htmlMarqueeElementGetLoop :: HTMLMarqueeElementClass self => self -> IO Int
htmlMarqueeElementSetScrollAmount :: HTMLMarqueeElementClass self => self -> Int -> IO ()
htmlMarqueeElementGetScrollAmount :: HTMLMarqueeElementClass self => self -> IO Int
htmlMarqueeElementSetScrollDelay :: HTMLMarqueeElementClass self => self -> Int -> IO ()
htmlMarqueeElementGetScrollDelay :: HTMLMarqueeElementClass self => self -> IO Int
htmlMarqueeElementSetTrueSpeed :: HTMLMarqueeElementClass self => self -> Bool -> IO ()
htmlMarqueeElementGetTrueSpeed :: HTMLMarqueeElementClass self => self -> IO Bool
htmlMarqueeElementSetVspace :: HTMLMarqueeElementClass self => self -> Word -> IO ()
htmlMarqueeElementGetVspace :: HTMLMarqueeElementClass self => self -> IO Word
htmlMarqueeElementSetWidth :: HTMLMarqueeElementClass self => self -> String -> IO ()
htmlMarqueeElementGetWidth :: HTMLMarqueeElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLMediaElement
htmlMediaElementLoad :: HTMLMediaElementClass self => self -> IO ()
htmlMediaElementCanPlayType :: HTMLMediaElementClass self => self -> String -> IO String
htmlMediaElementPlay :: HTMLMediaElementClass self => self -> IO ()
htmlMediaElementPause :: HTMLMediaElementClass self => self -> IO ()
cNETWORK_EMPTY :: Integer
cNETWORK_IDLE :: Integer
cNETWORK_LOADING :: Integer
cNETWORK_NO_SOURCE :: Integer
cHAVE_NOTHING :: Integer
cHAVE_METADATA :: Integer
cHAVE_CURRENT_DATA :: Integer
cHAVE_FUTURE_DATA :: Integer
cHAVE_ENOUGH_DATA :: Integer
htmlMediaElementGetError :: HTMLMediaElementClass self => self -> IO (Maybe MediaError)
htmlMediaElementSetSrc :: HTMLMediaElementClass self => self -> String -> IO ()
htmlMediaElementGetSrc :: HTMLMediaElementClass self => self -> IO String
htmlMediaElementGetCurrentSrc :: HTMLMediaElementClass self => self -> IO String
htmlMediaElementGetNetworkState :: HTMLMediaElementClass self => self -> IO Word
htmlMediaElementSetPreload :: HTMLMediaElementClass self => self -> String -> IO ()
htmlMediaElementGetPreload :: HTMLMediaElementClass self => self -> IO String
htmlMediaElementGetBuffered :: HTMLMediaElementClass self => self -> IO (Maybe TimeRanges)
htmlMediaElementGetReadyState :: HTMLMediaElementClass self => self -> IO Word
htmlMediaElementGetSeeking :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetCurrentTime :: HTMLMediaElementClass self => self -> Double -> IO ()
htmlMediaElementGetCurrentTime :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementGetInitialTime :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementGetStartTime :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementGetDuration :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementGetPaused :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetDefaultPlaybackRate :: HTMLMediaElementClass self => self -> Double -> IO ()
htmlMediaElementGetDefaultPlaybackRate :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementSetPlaybackRate :: HTMLMediaElementClass self => self -> Double -> IO ()
htmlMediaElementGetPlaybackRate :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementGetPlayed :: HTMLMediaElementClass self => self -> IO (Maybe TimeRanges)
htmlMediaElementGetSeekable :: HTMLMediaElementClass self => self -> IO (Maybe TimeRanges)
htmlMediaElementGetEnded :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetAutoplay :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetAutoplay :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetLoop :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetLoop :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetControls :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetControls :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetVolume :: HTMLMediaElementClass self => self -> Double -> IO ()
htmlMediaElementGetVolume :: HTMLMediaElementClass self => self -> IO Double
htmlMediaElementSetMuted :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetMuted :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetDefaultMuted :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetDefaultMuted :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetWebkitPreservesPitch :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetWebkitPreservesPitch :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementGetWebkitHasClosedCaptions :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementSetWebkitClosedCaptionsVisible :: HTMLMediaElementClass self => self -> Bool -> IO ()
htmlMediaElementGetWebkitClosedCaptionsVisible :: HTMLMediaElementClass self => self -> IO Bool
htmlMediaElementGetWebkitAudioDecodedByteCount :: HTMLMediaElementClass self => self -> IO Word
htmlMediaElementGetWebkitVideoDecodedByteCount :: HTMLMediaElementClass self => self -> IO Word
htmlMediaElementOnwebkitneedkey :: HTMLMediaElementClass self => Signal self (EventM UIEvent self ())
htmlMediaElementSetMediaGroup :: HTMLMediaElementClass self => self -> String -> IO ()
htmlMediaElementGetMediaGroup :: HTMLMediaElementClass self => self -> IO String

module Graphics.UI.Gtk.WebKit.DOM.HTMLVideoElement
htmlVideoElementWebkitEnterFullscreen :: HTMLVideoElementClass self => self -> IO ()
htmlVideoElementWebkitExitFullscreen :: HTMLVideoElementClass self => self -> IO ()
htmlVideoElementWebkitEnterFullScreen :: HTMLVideoElementClass self => self -> IO ()
htmlVideoElementWebkitExitFullScreen :: HTMLVideoElementClass self => self -> IO ()
htmlVideoElementSetWidth :: HTMLVideoElementClass self => self -> Word -> IO ()
htmlVideoElementGetWidth :: HTMLVideoElementClass self => self -> IO Word
htmlVideoElementSetHeight :: HTMLVideoElementClass self => self -> Word -> IO ()
htmlVideoElementGetHeight :: HTMLVideoElementClass self => self -> IO Word
htmlVideoElementGetVideoWidth :: HTMLVideoElementClass self => self -> IO Word
htmlVideoElementGetVideoHeight :: HTMLVideoElementClass self => self -> IO Word
htmlVideoElementSetPoster :: HTMLVideoElementClass self => self -> String -> IO ()
htmlVideoElementGetPoster :: HTMLVideoElementClass self => self -> IO String
htmlVideoElementGetWebkitSupportsFullscreen :: HTMLVideoElementClass self => self -> IO Bool
htmlVideoElementGetWebkitDisplayingFullscreen :: HTMLVideoElementClass self => self -> IO Bool
htmlVideoElementGetWebkitDecodedFrameCount :: HTMLVideoElementClass self => self -> IO Word
htmlVideoElementGetWebkitDroppedFrameCount :: HTMLVideoElementClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.MediaError
cMEDIA_ERR_ABORTED :: Integer
cMEDIA_ERR_NETWORK :: Integer
cMEDIA_ERR_DECODE :: Integer
cMEDIA_ERR_SRC_NOT_SUPPORTED :: Integer
mediaErrorGetCode :: MediaErrorClass self => self -> IO Word

module Graphics.UI.Gtk.WebKit.DOM.StorageInfo
cTEMPORARY :: Integer
cPERSISTENT :: Integer

module Graphics.UI.Gtk.WebKit.DOM.TimeRanges
timeRangesStart :: TimeRangesClass self => self -> Word -> IO Double
timeRangesEnd :: TimeRangesClass self => self -> Word -> IO Double
timeRangesGetLength :: TimeRangesClass self => self -> IO Word


-- | Object used to communicate with the application when downloading
module Graphics.UI.Gtk.WebKit.CacheModel
data CacheModel
CacheModelDefault :: CacheModel
CacheModelDocumentViewer :: CacheModel
CacheModelWebBrowser :: CacheModel
CacheModelDocumentBrowser :: CacheModel

-- | Returns the current cache model. For more information about this value
--   check the documentation of the function <a>setCacheModel</a>.
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
getCacheModel :: IO CacheModel

-- | Specifies a usage model for WebViews, which WebKit will use to
--   determine its caching behavior. All web views follow the cache model.
--   This cache model determines the RAM and disk space to use for caching
--   previously viewed content .
--   
--   Research indicates that users tend to browse within clusters of
--   documents that hold resources in common, and to revisit previously
--   visited documents. WebKit and the frameworks below it include built-in
--   caches that take advantage of these patterns, substantially improving
--   document load speed in browsing situations. The WebKit cache model
--   controls the behaviors of all of these caches, including various
--   WebCore caches.
--   
--   Browsers can improve document load speed substantially by specifying
--   WebkitCacheModelWebBrowser. Applications without a browsing interface
--   can reduce memory usage substantially by specifying
--   WebkitCacheModelDocumentViewer. Default value is
--   WebkitCacheModelWebBrowser.
--   
--   <ul>
--   <li>Since 1.1.18</li>
--   </ul>
setCacheModel :: CacheModel -> IO ()
instance Enum CacheModel
