-- 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.6.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.KeyboardEvent
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 Download instance for the given
-- NetworkRequest
--
-- Object used to communicate with the application when downloading.
downloadNew :: NetworkRequestClass request => request -> IO Download
-- | Initiates the Download.
--
-- Notice that you must have set the destination-uri property before
-- calling this function.
downloadStart :: DownloadClass self => self -> IO ()
-- | Cancels the Download.
downloadCancel :: DownloadClass self => self -> IO ()
-- | Retrieves the URI from Download which is being downloaded.
downloadGetUri :: DownloadClass self => self -> IO (Maybe String)
-- | Retrieves the NetworkRequest that backs the download process.
downloadGetNetworkRequest :: DownloadClass self => self -> IO NetworkRequest
-- | Retrieves the NetworkResponse object that backs the download
-- process.
--
--
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 downloadStart
downloadGetDestinationUri :: DownloadClass self => self -> IO (Maybe String)
-- | Determines the current progress of the Download
downloadGetProgress :: DownloadClass self => self -> IO Double
-- | Return elapsed time for the Download in seconds. includeing any
-- fractional part.
--
-- If the Download 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 Download as
-- DownloadStatus
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
--
--
currentSize :: DownloadClass self => ReadAttr self Int
-- | The URI of the save location for this download.
--
-- Default value: ""
--
--
destinationUri :: DownloadClass self => Attr self (Maybe String)
-- | The NetworkRequest instance associated with the download.
--
--
networkRequest :: DownloadClass self => Attr self NetworkRequest
-- | The NetworkResponse instance associated with the download.
--
--
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 Download
-- : currentSize.
--
-- Allowed values: [0,1]
--
-- Default value: 1
--
--
progress :: DownloadClass self => ReadAttr self Double
-- | Determines the current status of the download.
--
-- Default value: DownloadStatusCreated
--
--
status :: DownloadClass self => ReadAttr self DownloadStatus
-- | The file name suggested as default when saving
--
-- Default value: ""
--
--
suggestedFilename :: DownloadClass self => ReadAttr self (Maybe String)
-- | The total size of the file
--
-- Default value: 0
--
--
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
-- DownloadError.
--
-- download: the object on which the signal is emitted
-- errorCode: the corresponding error code errorDetail:
-- detailed error code for the error, see DownloadError
-- reason: 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.
--
--
geolocationPolicyAllow :: GeolocationPolicyDecisionClass decision => decision -> IO ()
-- | Will send the deny decision to the policy implementer.
--
--
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 uri.
--
-- 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 NetworkRequest.
networkRequestSetUri :: NetworkRequestClass self => self -> String -> IO ()
-- | Return the uri of NetworkRequest.
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 NetworkResponse.
networkResponseSetUri :: NetworkResponseClass self => self -> String -> IO ()
-- | Return the uri of NetworkResponse.
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 WebView
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
-- limit.
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 WebDatabase 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 WebDatabase.
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 WebDatabase space on disk in
-- bytes.
webDatabaseGetSize :: WebDatabaseClass self => self -> IO Int
-- | Removes the WebDatabase from its security origin and destroys
-- all data stored in the database.
webDatabaseRemove :: WebDatabaseClass self => self -> IO ()
-- | Note
--
-- Function webkit_web_data_source_get_data haven't binding, no
-- idea how to handle GString
--
-- Access to the WebKit Web DataSource
module Graphics.UI.Gtk.WebKit.WebDataSource
data WebDataSource
class GObjectClass o => WebDataSourceClass o
-- | Creates a new WebDataSource instance. The URL of the
-- WebDataSource will be set to about:blank.
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
-- Nothing if the web frame hasn't loaded any data. Use
-- webkitWebDataSourceIsLoading 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 WebView, 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 committed load state. See
-- webDataSourceGetRequest for getting the committed
-- 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
-- WebDataSource. The NetworkRequest returned by this method is
-- the request that was committed, and hence, different from the
-- request you get from the webDataSourceGetInitialRequest method.
webDataSourceGetRequest :: WebDataSourceClass self => self -> IO NetworkRequest
-- | Gives you a List of WebResource objects that compose the
-- WebView to which this WebDataSource is attached.
webDataSourceGetSubresources :: WebDataSourceClass self => self -> IO [WebResource]
-- | Return the unreachable URI of data_source. The dataSource
-- will have an unreachable URL if it was created using
-- WebFrame's webFrameLoadAlternateHtmlString method.
webDataSourceGetUnreachableUri :: WebDataSourceClass self => self -> IO String
-- | Returns the WebFrame 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 WebView
--
-- Note: Functon webkit_web_frame_get_global_context can't
-- binding now, Because it need JSGlobalContextRef exist in
-- JavaScriptCore.
--
-- Function webkit_web_frame_print_full can't binding now,
-- Because library GtkPrintOperation haven't binding.
module Graphics.UI.Gtk.WebKit.WebFrame
data WebFrame
class GObjectClass o => WebFrameClass o
data LoadStatus
-- | Create a new WebFrame instance with the given webview.
--
-- A WebFrame contains the content of one URI.
webFrameNew :: WebViewClass webview => webview -> IO WebFrame
-- | Return the WebView that manages the given WebFrame.
webFrameGetWebView :: WebFrameClass self => self -> IO WebView
-- | Return the name of the given WebFrame.
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 Nothing if the
-- frame was not created by a load.
--
--
webFrameGetNetworkResponse :: WebFrameClass self => self -> IO (Maybe NetworkResponse)
-- | Return the title of the given WebFrame.
webFrameGetTitle :: WebFrameClass self => self -> IO (Maybe String)
-- | Return the URI of the given WebFrame.
webFrameGetUri :: WebFrameClass self => self -> IO (Maybe String)
-- | Return the WebFrame'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
--
--
webFrameGetLoadStatus :: WebFrameClass self => self -> IO LoadStatus
-- | Request loading of the specified URI string.
webFrameLoadUri :: WebFrameClass self => self -> String -> IO ()
-- | Requests loading of the given content with the specified
-- mime_type, encoding and base_uri.
--
-- If mime_type is Nothing, "text/html" is assumed.
--
-- If encoding is Nothing, "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 base_uri 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
-- webFrameStopLoading 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 WebFrame associated with the given name or
-- Nothing 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 webFrameLoadRequest 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 webFrameGetDataSource 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 WebFrame.
--
-- by presenting a print dialog to the user.
webFramePrint :: WebFrameClass self => self -> IO ()
instance Enum LoadStatus
-- | One item of the WebBackForwardList and or global history
module Graphics.UI.Gtk.WebKit.WebHistoryItem
data WebHistoryItem
class GObjectClass o => WebHistoryItemClass o
-- | Create a new WebHistoryItem 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.
-- WebHistoryItem constructed with webHistoryItemNew are
-- automatically added to the global history.
webHistoryItemNew :: IO WebHistoryItem
-- | Create a new WebHistoryItem instance with the given
-- uri and title.
--
-- WebHistoryItem constructed with
-- webHistoryItemNewWithData are automatically added to the global
-- history.
webHistoryItemNewWithData :: String -> String -> IO WebHistoryItem
-- | The title of the WebHistoryItem
--
-- Default value: Nothing
webHistoryItemTitle :: WebHistoryItemClass self => ReadAttr self (Maybe String)
-- | The alternate title of the history item.
--
-- Default value: Nothing
webHistoryItemAlternateTitle :: WebHistoryItemClass self => Attr self (Maybe String)
-- | The URI of the history item.
--
-- Default value: Nothing
webHistoryItemUri :: WebHistoryItemClass self => ReadAttr self (Maybe String)
-- | The original URI of the history item.
--
-- Default value: Nothing
webHistoryItemOriginalUri :: WebHistoryItemClass self => ReadAttr self (Maybe String)
-- | The time at which the history item was last visited.
--
-- Allowed values: >= 0
--
-- Default value: 0
webHistoryItemLastVisitedTime :: WebHistoryItemClass self => ReadAttr self Double
-- | Return the title of WebHistoryItem.
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.
--
--
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 WebView that is used to render the
-- WebInspector.
--
-- The WebView instance is created by the application, by handling
-- the inspect-web-view signal. This means that it may return
-- Nothing 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 Event 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.
--
--
webInspectorInspectCoordinates :: WebInspectorClass self => self -> Int -> Int -> IO ()
-- | Causes the Web Inspector to be shown.
--
--
webInspectorShow :: WebInspectorClass self => self -> IO ()
-- | Causes the Web Inspector to be closed.
--
--
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: False
--
--
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
-- inspectWebView.
--
-- 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 WebView
-- may no longer exist when this signal is emitted.
finished :: WebInspectorClass self => Signal self (IO ())
-- | Emitted when the user activates the inspect context menu item
-- to inspect a web view. The application which is interested in the
-- inspector should create a window, or otherwise add the WebView
-- it creates to an existing window.
--
-- You don't need to handle the reference count of the WebView
-- 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 webkit_web_resource_get_data haven't binding no idea
-- how to handle GString.
--
-- Access to the WebKit Web Resource
module Graphics.UI.Gtk.WebKit.WebResource
data WebResource
class GObjectClass o => WebResourceClass o
-- | Returns a new WebKitWebResource. The encoding can be empty.
-- The frameName can be used if the resource represents contents
-- of an entire HTML frame, otherwise pass empty.
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 WebView
module Graphics.UI.Gtk.WebKit.WebSettings
data WebSettings
class GObjectClass o => WebSettingsClass o
data EditingBehavior
-- | Create a new WebSettings instance.
--
-- A WebSettings can be applied to a WebView 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 WebSettings 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 serif
webSettingsCursiveFontFamily :: WebSettingsClass self => Attr self String
-- | The default font family used to display text
--
-- Default value: sans-serif
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: monospace
webSettingsMonospaceFontFamily :: WebSettingsClass self => Attr self String
-- | The default Sans Serif font family used to display text
--
-- Default value sans-serif
webSettingsSansFontFamily :: WebSettingsClass self => Attr self String
-- | The default Serif font family used to display text
--
-- Default value: serif
webSettingsSerifFontFamily :: WebSettingsClass self => Attr self String
-- | The default font size used to display text
--
-- Default value: >=5
webSettingsDefaultFontSize :: WebSettingsClass self => Attr self Int
-- | The default font size used to display monospace text
--
-- Allowed values: >= 5
--
-- Default value: 10
webSettingsDefaultMonospaceFontSize :: WebSettingsClass self => Attr self Int
-- | The minimum font size used to display text.
--
-- Allowed values: >=1
--
-- Default value: 5
webSettingsMinimumFontSize :: WebSettingsClass self => Attr self Int
-- | The minimum logical font size used to display text
--
-- Allowed values: >=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 iso-8859-1
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 WebInspector
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 True,
-- document.execCommand(Paste) will correctly execute and paste
-- content of the clipboard.
--
-- Default value: False
--
--
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: True
--
--
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: False
--
--
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: False
--
--
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: Nothing
webSettingsSpellCheckingLang :: WebSettingsClass self => Attr self (Maybe String)
-- | Whether the tab key cycles through elements on the page.
--
-- If flag is True, pressing the tab key will focus the next
-- element in the webView. If flag is False, the
-- webView 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: True
--
--
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: "Mozilla5.0 (X11; U; Linux x86_64; c)
-- AppleWebKit531.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: Nothing
webSettingsUserStylesheetUri :: WebSettingsClass self => Attr self (Maybe String)
-- | The value by which the zoom level is changed when zooming in or out
--
-- Allowed values: >= 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
-- GHaskellTable
--
--
--
-- 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 WebView widget.
--
-- It is a Widget you can embed in a ScrolledWindow.
--
-- You can load any URI into the WebView or any kind of data
-- string.
webViewNew :: IO WebView
-- | Requests loading of the specified URI string in a WebView
webViewLoadUri :: WebViewClass self => self -> String -> IO ()
-- | Loading the content string as html. The URI passed in
-- base_uri has to be an absolute URI. Deprecated since webkit v1.1.1,
-- use webViewLoadString 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 webViewStopLoading
-- to stop the load.
webViewLoadRequest :: (WebViewClass self, NetworkRequestClass request) => self -> request -> IO ()
-- | Requests loading of the given content with the specified
-- mime_type, encoding and base_uri. If
-- mime_type is Nothing, text/html is assumed.
-- If encoding is Nothing, UTF-8 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 WebView
webViewReload :: WebViewClass self => self -> IO ()
-- | Reloads the WebView without using any cached data.
webViewReloadBypassCache :: WebViewClass self => self -> IO ()
-- | Determine whether WebView has a previous history item.
webViewCanGoBack :: WebViewClass self => self -> IO Bool
-- | Determine whether WebView 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 WebBackForwardList
webViewGetBackForwardList :: WebViewClass self => self -> IO WebBackForwardList
-- | Set the WebView to maintian a back or forward list of history
-- items.
webViewSetMaintainsBackForwardList :: WebViewClass self => self -> Bool -> IO ()
-- | Go to the specified WebHistoryItem
webViewGoToBackForwardItem :: (WebViewClass self, WebHistoryItemClass item) => self -> item -> IO Bool
-- | Determines whether WebView has a history item of
-- steps.
--
-- 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 steps 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 WebView 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 WebView.
webViewSetZoomLevel :: WebViewClass self => self -> Float -> IO ()
-- | Increases the zoom level of WebView.
webViewZoomIn :: WebViewClass self => self -> IO ()
-- | Decreases the zoom level of WebView.
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
-- WebView to the clipboard
webViewCanCutClipboard :: WebViewClass self => self -> IO Bool
-- | Determines whether can copies the current selection inside
-- WebView to the clipboard
webViewCanCopyClipboard :: WebViewClass self => self -> IO Bool
-- | Determines whether can pastes the current contents of the clipboard to
-- the WebView
webViewCanPasteClipboard :: WebViewClass self => self -> IO Bool
-- | Cuts the current selection inside WebView to the clipboard.
webViewCutClipboard :: WebViewClass self => self -> IO ()
-- | Copies the current selection inside WebView to the clipboard.
webViewCopyClipboard :: WebViewClass self => self -> IO ()
-- | Pastes the current contents of the clipboard to the WebView
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 WebView
webViewDeleteSelection :: WebViewClass self => self -> IO ()
-- | Determines whether text was selected
webViewHasSelection :: WebViewClass self => self -> IO Bool
-- | Attempts to select everything inside the WebView
webViewSelectAll :: WebViewClass self => self -> IO ()
-- | Returns the default encoding of the WebView
webViewGetEncoding :: WebViewClass self => self -> IO (Maybe String)
-- | Sets the current WebView encoding, without modifying the
-- default one, and reloads the page
webViewSetCustomEncoding :: WebViewClass self => self -> (Maybe String) -> IO ()
-- | Returns the current encoding of WebView,not the default
-- encoding.
webViewGetCustomEncoding :: WebViewClass self => self -> IO (Maybe String)
-- | Gets the value of the view-mode property of the WebView
webViewGetViewMode :: WebView -> IO ViewMode
webViewSetViewMode :: WebView -> ViewMode -> IO ()
-- | Returns whether WebView 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 WebView has a transparent background
webViewGetTransparent :: WebViewClass self => self -> IO Bool
-- | Sets whether the WebKitWebView has a transparent background.
--
-- Pass False to have the WebView draw a solid background (the
-- default), otherwise pass True.
webViewSetTransparent :: WebViewClass self => self -> Bool -> IO ()
-- | This function returns the list of targets this WebView can
-- provide for clipboard copying and as DND source. The targets in the
-- list are added with values from the WebViewTargetInfo enum,
-- using targetListAdd and targetListAddTextTargets.
webViewGetCopyTargetList :: WebViewClass self => self -> IO (Maybe TargetList)
-- | This function returns the list of targets this WebView can
-- provide for clipboard pasteing and as DND source. The targets in the
-- list are added with values from the WebViewTargetInfo enum,
-- using targetListAdd and targetListAddTextTargets.
webViewGetPasteTargetList :: WebViewClass self => self -> IO (Maybe TargetList)
-- | Attempts to highlight all occurances of string inside WebView
webViewMarkTextMatches :: WebViewClass self => self -> String -> Bool -> Int -> IO Int
-- | Removes highlighting previously set by webViewMarkTextMarches
webViewUnMarkTextMatches :: WebViewClass self => self -> IO ()
-- | Highlights text matches previously marked by
-- webViewMarkTextMatches
webViewSetHighlightTextMatches :: WebViewClass self => self -> Bool -> IO ()
-- | Obtains the URI for the favicon for the given WebKitWebView, or
-- Nothing if there is none.
--
--
webViewGetIconUri :: WebViewClass self => self -> IO (Maybe String)
-- | Obtains a GdkPixbuf of the favicon for the given WebView. This
-- will return Nothing if there is no icon for the current
-- WebView or if the icon is in the database but not available at
-- the moment of this call. Use webViewGetIconUri 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 faviconDatabaseTryGetFaviconPixbuf. 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 script
webViewExecuteScript :: WebViewClass self => self -> String -> IO ()
-- | Returns whether or not a mimetype 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 WebInspector associated with the WebView
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 WebView
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 WebFrame of the given WebView.
webViewGetMainFrame :: WebViewClass self => self -> IO WebFrame
-- | Return the focused WebFrame (if any) of the given
-- WebView.
webViewGetFocusedFrame :: WebViewClass self => self -> IO (Maybe WebFrame)
-- | Apply WebSettings to a given WebView
--
-- !!NOTE!!, currently lack of useful APIs of WebSettings in
-- webkitgtk. If you want to set the encoding, font family or font size
-- of the WebView, please use related functions.
webViewSetWebSettings :: (WebViewClass self, WebSettingsClass settings) => self -> settings -> IO ()
-- | Return the WebSettings currently used by WebView.
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 WebView document, or Nothing in case of
-- failure
webViewGetTitle :: WebViewClass self => self -> IO (Maybe String)
-- | Returns the current URI of the contents displayed by the
-- WebView, or Nothing in case of failure
webViewGetUri :: WebViewClass self => self -> IO (Maybe String)
webViewGetDomDocument :: WebView -> IO (Maybe Document)
-- | Zoom level of the WebView 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 WebView instance
--
-- Default value: Nothing
webViewEncoding :: WebViewClass self => ReadAttr self (Maybe String)
-- | The custom encoding of the WebView instance
--
-- Default value: Nothing
webViewCustomEncoding :: WebViewClass self => Attr self (Maybe String)
-- | Determines the current status of the load.
--
-- Default value: LoadFinished
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 WebView instance
webViewTitle :: WebViewClass self => ReadAttr self (Maybe String)
-- | The associated webInspector instance of the WebView
webViewInspector :: WebViewClass self => ReadAttr self WebInspector
-- | The associated webSettings of the WebView instance
webViewWebSettings :: WebViewClass self => Attr self WebSettings
-- | view source mode of the WebView instance
webViewViewSourceMode :: WebViewClass self => Attr self Bool
-- | transparent background of the WebView instance
webViewTransparent :: WebViewClass self => Attr self Bool
-- | Whether content of the WebView can be modified by the user
--
-- Default value: False
webViewEditable :: WebViewClass self => Attr self Bool
-- | Returns the current URI of the contents displayed by the
-- web_view.
--
-- 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 WebWindowFeatures instance.
webViewWindowFeatures :: WebViewClass self => Attr self WebWindowFeatures
-- | The URI for the favicon for the WebKitWebView.
--
-- Default value: Nothing
--
--
webViewIconUri :: WebViewClass self => ReadAttr self String
-- | The IMMulticontext 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.
--
--
webViewImContext :: WebViewClass self => ReadAttr self IMContext
-- | When a WebFrame begins to load, this signal is emitted
loadStarted :: WebViewClass self => Signal self (WebFrame -> IO ())
-- | When a WebFrame 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 GError 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
-- NetworkRequest object itself, and addremovereplace
-- headers using the SoupMessage object it carries, if it is present. See
-- networkRequestGetMessage. Setting the request URI to
-- about:blank 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 WebResource 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 Window title.
--
-- webframe - which WebFrame changes the document title.
--
-- title - current title string.
titleChanged :: WebViewClass self => Signal self (WebFrame -> String -> IO ())
-- | The copyClipboard 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 cutClipboard 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 pasteClipboard 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 selectAll 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 Content-Disposition header.
-- A value of attachment usually indicates a download regardless
-- of the MIME type, see also soupMessageHeadersGetContentDisposition'
-- And you must call webPolicyDecisionIgnore,
-- webPolicyDecisionDownload, or webPolicyDecisionUse
-- on the webPolicyDecision 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 Content-Disposition header.
-- A value of attachment usually indicates a download regardless
-- of the MIME type, see also soupMessageHeadersGetContentDisposition'
-- And you must call webPolicyDecisionIgnore,
-- webPolicyDecisionDownload, or webPolicyDecisionUse
-- on the webPolicyDecision 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
-- createWebView signal emission where the browser handles the new
-- window action but without information of the context that caused the
-- navigation. The following navigationPolicyDecisionRequested
-- 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 Content-Disposition header.
-- A value of attachment usually indicates a download regardless
-- of the MIME type, see also soupMessageHeadersGetContentDisposition'
-- And you must call webPolicyDecisionIgnore,
-- webPolicyDecisionDownload, or webPolicyDecisionUse
-- on the webPolicyDecision object.
newWindowPolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> NetworkRequest -> WebNavigationAction -> WebPolicyDecision -> IO Bool)
-- | When a frame wants to cancel geolocation permission it had requested
-- before.
--
--
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.
--
--
geolocationPolicyDecisionRequested :: WebViewClass self => Signal self (WebFrame -> GeolocationPolicyDecision -> IO Bool)
-- | The moveCursor 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 Nothing in case of failure.
--
-- uri - the URI the link points to or Nothing 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 WebView instance had been created in
-- onCreateWebView user function when the new WebView
-- 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 WebView, 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
-- webFramePrintFull or webFramePrint 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 databaseQuotaExceeded 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 Download 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 downloadSetDestinationUri
--
-- If you intend to handle downloads yourself, return False in user
-- function.
downloadRequested :: WebViewClass self => Signal self (Download -> IO Bool)
-- | The redo 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 undo 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 WebWindowFeatures instance with default values.
-- It must be manually attached to a WebView.
webWindowFeaturesNew :: IO WebWindowFeatures
-- | Decides if a WebWindowFeatures 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
data Event
class GObjectClass o => EventClass o
castToEvent :: GObjectClass obj => obj -> Event
gTypeEvent :: GType
toEvent :: EventClass o => o -> Event
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
data UIEvent
class EventClass o => UIEventClass o
castToUIEvent :: GObjectClass obj => obj -> UIEvent
gTypeUIEvent :: GType
toUIEvent :: UIEventClass o => o -> UIEvent
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)
data MouseEvent
class UIEventClass o => MouseEventClass o
castToMouseEvent :: GObjectClass obj => obj -> MouseEvent
gTypeMouseEvent :: GType
toMouseEvent :: MouseEventClass o => o -> MouseEvent
module Graphics.UI.Gtk.WebKit.DOM.EventTargetClosures
eventTargetAddEventListener :: (GObjectClass self, EventClass event) => self -> String -> Bool -> (self -> event -> IO ()) -> IO (IO ())
module Graphics.UI.Gtk.WebKit.DOM.EventM
type Signal target callback = target -> callback -> IO (IO ())
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 (IO ())
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
data DOMAttr
class NodeClass o => DOMAttrClass o
castToDOMAttr :: GObjectClass obj => obj -> DOMAttr
gTypeDOMAttr :: GType
toDOMAttr :: DOMAttrClass o => o -> DOMAttr
module Graphics.UI.Gtk.WebKit.DOM.BarProp
module Graphics.UI.Gtk.WebKit.DOM.Blob
blobGetSize :: BlobClass self => self -> IO Word64
data Blob
class GObjectClass o => BlobClass o
castToBlob :: GObjectClass obj => obj -> Blob
gTypeBlob :: GType
toBlob :: BlobClass o => o -> Blob
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
data CharacterData
class NodeClass o => CharacterDataClass o
castToCharacterData :: GObjectClass obj => obj -> CharacterData
gTypeCharacterData :: GType
toCharacterData :: CharacterDataClass o => o -> CharacterData
module Graphics.UI.Gtk.WebKit.DOM.Console
consoleTime :: ConsoleClass self => self -> String -> IO ()
consoleGroupEnd :: ConsoleClass self => self -> IO ()
data Console
class GObjectClass o => ConsoleClass o
castToConsole :: GObjectClass obj => obj -> Console
gTypeConsole :: GType
toConsole :: ConsoleClass o => o -> Console
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)
data CSSRule
class GObjectClass o => CSSRuleClass o
castToCSSRule :: GObjectClass obj => obj -> CSSRule
gTypeCSSRule :: GType
toCSSRule :: CSSRuleClass o => o -> CSSRule
module Graphics.UI.Gtk.WebKit.DOM.CSSRuleList
cssRuleListItem :: CSSRuleListClass self => self -> Word -> IO (Maybe CSSRule)
cssRuleListGetLength :: CSSRuleListClass self => self -> IO Word
data CSSRuleList
class GObjectClass o => CSSRuleListClass o
castToCSSRuleList :: GObjectClass obj => obj -> CSSRuleList
gTypeCSSRuleList :: GType
toCSSRuleList :: CSSRuleListClass o => o -> CSSRuleList
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)
data CSSStyleDeclaration
class GObjectClass o => CSSStyleDeclarationClass o
castToCSSStyleDeclaration :: GObjectClass obj => obj -> CSSStyleDeclaration
gTypeCSSStyleDeclaration :: GType
toCSSStyleDeclaration :: CSSStyleDeclarationClass o => o -> CSSStyleDeclaration
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)
data CSSStyleSheet
class StyleSheetClass o => CSSStyleSheetClass o
castToCSSStyleSheet :: GObjectClass obj => obj -> CSSStyleSheet
gTypeCSSStyleSheet :: GType
toCSSStyleSheet :: CSSStyleSheetClass o => o -> CSSStyleSheet
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
data CSSValue
class GObjectClass o => CSSValueClass o
castToCSSValue :: GObjectClass obj => obj -> CSSValue
gTypeCSSValue :: GType
toCSSValue :: CSSValueClass o => o -> CSSValue
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)
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
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 ())
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 ())
documentGetVisibilityState :: DocumentClass self => self -> IO String
documentGetHidden :: DocumentClass self => self -> IO Bool
data Document
class NodeClass o => DocumentClass o
castToDocument :: GObjectClass obj => obj -> Document
gTypeDocument :: GType
toDocument :: DocumentClass o => o -> Document
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
data DocumentType
class NodeClass o => DocumentTypeClass o
castToDocumentType :: GObjectClass obj => obj -> DocumentType
gTypeDocumentType :: GType
toDocumentType :: DocumentTypeClass o => o -> DocumentType
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 ())
data DOMApplicationCache
class GObjectClass o => DOMApplicationCacheClass o
castToDOMApplicationCache :: GObjectClass obj => obj -> DOMApplicationCache
gTypeDOMApplicationCache :: GType
toDOMApplicationCache :: DOMApplicationCacheClass o => o -> DOMApplicationCache
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)
data DOMImplementation
class GObjectClass o => DOMImplementationClass o
castToDOMImplementation :: GObjectClass obj => obj -> DOMImplementation
gTypeDOMImplementation :: GType
toDOMImplementation :: DOMImplementationClass o => o -> DOMImplementation
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)
data DOMMimeType
class GObjectClass o => DOMMimeTypeClass o
castToDOMMimeType :: GObjectClass obj => obj -> DOMMimeType
gTypeDOMMimeType :: GType
toDOMMimeType :: DOMMimeTypeClass o => o -> DOMMimeType
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
data DOMMimeTypeArray
class GObjectClass o => DOMMimeTypeArrayClass o
castToDOMMimeTypeArray :: GObjectClass obj => obj -> DOMMimeTypeArray
gTypeDOMMimeTypeArray :: GType
toDOMMimeTypeArray :: DOMMimeTypeArrayClass o => o -> DOMMimeTypeArray
module Graphics.UI.Gtk.WebKit.DOM.DOMNamedFlowCollection
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
data DOMPlugin
class GObjectClass o => DOMPluginClass o
castToDOMPlugin :: GObjectClass obj => obj -> DOMPlugin
gTypeDOMPlugin :: GType
toDOMPlugin :: DOMPluginClass o => o -> DOMPlugin
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
data DOMPluginArray
class GObjectClass o => DOMPluginArrayClass o
castToDOMPluginArray :: GObjectClass obj => obj -> DOMPluginArray
gTypeDOMPluginArray :: GType
toDOMPluginArray :: DOMPluginArrayClass o => o -> DOMPluginArray
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
data DOMSelection
class GObjectClass o => DOMSelectionClass o
castToDOMSelection :: GObjectClass obj => obj -> DOMSelection
gTypeDOMSelection :: GType
toDOMSelection :: DOMSelectionClass o => o -> DOMSelection
module Graphics.UI.Gtk.WebKit.DOM.DOMSettableTokenList
domSettableTokenListSetValue :: DOMSettableTokenListClass self => self -> String -> IO ()
domSettableTokenListGetValue :: DOMSettableTokenListClass self => self -> IO String
data DOMSettableTokenList
class DOMTokenListClass o => DOMSettableTokenListClass o
castToDOMSettableTokenList :: GObjectClass obj => obj -> DOMSettableTokenList
gTypeDOMSettableTokenList :: GType
toDOMSettableTokenList :: DOMSettableTokenListClass o => o -> DOMSettableTokenList
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 -> IO Bool
domTokenListGetLength :: DOMTokenListClass self => self -> IO Word
data DOMTokenList
class GObjectClass o => DOMTokenListClass o
castToDOMTokenList :: GObjectClass obj => obj -> DOMTokenList
gTypeDOMTokenList :: GType
toDOMTokenList :: DOMTokenListClass o => o -> DOMTokenList
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)
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)
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 ())
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 ())
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 ())
data DOMWindow
class GObjectClass o => DOMWindowClass o
castToDOMWindow :: GObjectClass obj => obj -> DOMWindow
gTypeDOMWindow :: GType
toDOMWindow :: DOMWindowClass o => o -> DOMWindow
module Graphics.UI.Gtk.WebKit.DOM.DOMWindowCSS
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)
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
elementGetTagName :: ElementClass self => self -> IO String
elementGetStyle :: ElementClass self => self -> IO (Maybe CSSStyleDeclaration)
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
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
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 ())
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 ())
data Element
class NodeClass o => ElementClass o
castToElement :: GObjectClass obj => obj -> Element
gTypeElement :: GType
toElement :: ElementClass o => o -> Element
module Graphics.UI.Gtk.WebKit.DOM.File
fileGetName :: FileClass self => self -> IO String
data File
class BlobClass o => FileClass o
castToFile :: GObjectClass obj => obj -> File
gTypeFile :: GType
toFile :: FileClass o => o -> File
module Graphics.UI.Gtk.WebKit.DOM.FileList
fileListItem :: FileListClass self => self -> Word -> IO (Maybe File)
fileListGetLength :: FileListClass self => self -> IO Word
data FileList
class GObjectClass o => FileListClass o
castToFileList :: GObjectClass obj => obj -> FileList
gTypeFileList :: GType
toFileList :: FileListClass o => o -> FileList
module Graphics.UI.Gtk.WebKit.DOM.History
historyGetLength :: HistoryClass self => self -> IO Word
data History
class GObjectClass o => HistoryClass o
castToHistory :: GObjectClass obj => obj -> History
gTypeHistory :: GType
toHistory :: HistoryClass o => o -> History
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
data HTMLAnchorElement
class HTMLElementClass o => HTMLAnchorElementClass o
castToHTMLAnchorElement :: GObjectClass obj => obj -> HTMLAnchorElement
gTypeHTMLAnchorElement :: GType
toHTMLAnchorElement :: HTMLAnchorElementClass o => o -> HTMLAnchorElement
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
data HTMLAppletElement
class HTMLElementClass o => HTMLAppletElementClass o
castToHTMLAppletElement :: GObjectClass obj => obj -> HTMLAppletElement
gTypeHTMLAppletElement :: GType
toHTMLAppletElement :: HTMLAppletElementClass o => o -> HTMLAppletElement
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
data HTMLAreaElement
class HTMLElementClass o => HTMLAreaElementClass o
castToHTMLAreaElement :: GObjectClass obj => obj -> HTMLAreaElement
gTypeHTMLAreaElement :: GType
toHTMLAreaElement :: HTMLAreaElementClass o => o -> HTMLAreaElement
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
data HTMLBaseElement
class HTMLElementClass o => HTMLBaseElementClass o
castToHTMLBaseElement :: GObjectClass obj => obj -> HTMLBaseElement
gTypeHTMLBaseElement :: GType
toHTMLBaseElement :: HTMLBaseElementClass o => o -> HTMLBaseElement
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
data HTMLBaseFontElement
class HTMLElementClass o => HTMLBaseFontElementClass o
castToHTMLBaseFontElement :: GObjectClass obj => obj -> HTMLBaseFontElement
gTypeHTMLBaseFontElement :: GType
toHTMLBaseFontElement :: HTMLBaseFontElementClass o => o -> HTMLBaseFontElement
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 ())
data HTMLBodyElement
class HTMLElementClass o => HTMLBodyElementClass o
castToHTMLBodyElement :: GObjectClass obj => obj -> HTMLBodyElement
gTypeHTMLBodyElement :: GType
toHTMLBodyElement :: HTMLBodyElementClass o => o -> HTMLBodyElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLBRElement
htmlbrElementSetClear :: HTMLBRElementClass self => self -> String -> IO ()
htmlbrElementGetClear :: HTMLBRElementClass self => self -> IO String
data HTMLBRElement
class HTMLElementClass o => HTMLBRElementClass o
castToHTMLBRElement :: GObjectClass obj => obj -> HTMLBRElement
gTypeHTMLBRElement :: GType
toHTMLBRElement :: HTMLBRElementClass o => o -> HTMLBRElement
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)
data HTMLButtonElement
class HTMLElementClass o => HTMLButtonElementClass o
castToHTMLButtonElement :: GObjectClass obj => obj -> HTMLButtonElement
gTypeHTMLButtonElement :: GType
toHTMLButtonElement :: HTMLButtonElementClass o => o -> HTMLButtonElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLCollection
htmlCollectionItem :: HTMLCollectionClass self => self -> Word -> IO (Maybe Node)
htmlCollectionGetLength :: HTMLCollectionClass self => self -> IO Word
data HTMLCollection
class GObjectClass o => HTMLCollectionClass o
castToHTMLCollection :: GObjectClass obj => obj -> HTMLCollection
gTypeHTMLCollection :: GType
toHTMLCollection :: HTMLCollectionClass o => o -> HTMLCollection
module Graphics.UI.Gtk.WebKit.DOM.HTMLDirectoryElement
htmlDirectoryElementSetCompact :: HTMLDirectoryElementClass self => self -> Bool -> IO ()
htmlDirectoryElementGetCompact :: HTMLDirectoryElementClass self => self -> IO Bool
data HTMLDirectoryElement
class HTMLElementClass o => HTMLDirectoryElementClass o
castToHTMLDirectoryElement :: GObjectClass obj => obj -> HTMLDirectoryElement
gTypeHTMLDirectoryElement :: GType
toHTMLDirectoryElement :: HTMLDirectoryElementClass o => o -> HTMLDirectoryElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLDivElement
htmlDivElementSetAlign :: HTMLDivElementClass self => self -> String -> IO ()
htmlDivElementGetAlign :: HTMLDivElementClass self => self -> IO String
data HTMLDivElement
class HTMLElementClass o => HTMLDivElementClass o
castToHTMLDivElement :: GObjectClass obj => obj -> HTMLDivElement
gTypeHTMLDivElement :: GType
toHTMLDivElement :: HTMLDivElementClass o => o -> HTMLDivElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLDListElement
htmldListElementSetCompact :: HTMLDListElementClass self => self -> Bool -> IO ()
htmldListElementGetCompact :: HTMLDListElementClass self => self -> IO Bool
data HTMLDListElement
class HTMLElementClass o => HTMLDListElementClass o
castToHTMLDListElement :: GObjectClass obj => obj -> HTMLDListElement
gTypeHTMLDListElement :: GType
toHTMLDListElement :: HTMLDListElementClass o => o -> HTMLDListElement
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
data HTMLDocument
class DocumentClass o => HTMLDocumentClass o
castToHTMLDocument :: GObjectClass obj => obj -> HTMLDocument
gTypeHTMLDocument :: GType
toHTMLDocument :: HTMLDocumentClass o => o -> HTMLDocument
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
data HTMLElement
class ElementClass o => HTMLElementClass o
castToHTMLElement :: GObjectClass obj => obj -> HTMLElement
gTypeHTMLElement :: GType
toHTMLElement :: HTMLElementClass o => o -> HTMLElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLFieldSetElement
htmlFieldSetElementCheckValidity :: HTMLFieldSetElementClass self => self -> IO Bool
htmlFieldSetElementSetCustomValidity :: HTMLFieldSetElementClass self => self -> String -> IO ()
htmlFieldSetElementGetForm :: HTMLFieldSetElementClass self => self -> IO (Maybe HTMLFormElement)
htmlFieldSetElementGetWillValidate :: HTMLFieldSetElementClass self => self -> IO Bool
htmlFieldSetElementGetValidity :: HTMLFieldSetElementClass self => self -> IO (Maybe ValidityState)
htmlFieldSetElementGetValidationMessage :: HTMLFieldSetElementClass self => self -> IO String
data HTMLFieldSetElement
class HTMLElementClass o => HTMLFieldSetElementClass o
castToHTMLFieldSetElement :: GObjectClass obj => obj -> HTMLFieldSetElement
gTypeHTMLFieldSetElement :: GType
toHTMLFieldSetElement :: HTMLFieldSetElementClass o => o -> HTMLFieldSetElement
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
data HTMLFontElement
class HTMLElementClass o => HTMLFontElementClass o
castToHTMLFontElement :: GObjectClass obj => obj -> HTMLFontElement
gTypeHTMLFontElement :: GType
toHTMLFontElement :: HTMLFontElementClass o => o -> HTMLFontElement
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
data HTMLFormElement
class HTMLElementClass o => HTMLFormElementClass o
castToHTMLFormElement :: GObjectClass obj => obj -> HTMLFormElement
gTypeHTMLFormElement :: GType
toHTMLFormElement :: HTMLFormElementClass o => o -> HTMLFormElement
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
data HTMLFrameElement
class HTMLElementClass o => HTMLFrameElementClass o
castToHTMLFrameElement :: GObjectClass obj => obj -> HTMLFrameElement
gTypeHTMLFrameElement :: GType
toHTMLFrameElement :: HTMLFrameElementClass o => o -> HTMLFrameElement
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 ())
data HTMLFrameSetElement
class HTMLElementClass o => HTMLFrameSetElementClass o
castToHTMLFrameSetElement :: GObjectClass obj => obj -> HTMLFrameSetElement
gTypeHTMLFrameSetElement :: GType
toHTMLFrameSetElement :: HTMLFrameSetElementClass o => o -> HTMLFrameSetElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLHeadElement
htmlHeadElementSetProfile :: HTMLHeadElementClass self => self -> String -> IO ()
htmlHeadElementGetProfile :: HTMLHeadElementClass self => self -> IO String
data HTMLHeadElement
class HTMLElementClass o => HTMLHeadElementClass o
castToHTMLHeadElement :: GObjectClass obj => obj -> HTMLHeadElement
gTypeHTMLHeadElement :: GType
toHTMLHeadElement :: HTMLHeadElementClass o => o -> HTMLHeadElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLHeadingElement
htmlHeadingElementSetAlign :: HTMLHeadingElementClass self => self -> String -> IO ()
htmlHeadingElementGetAlign :: HTMLHeadingElementClass self => self -> IO String
data HTMLHeadingElement
class HTMLElementClass o => HTMLHeadingElementClass o
castToHTMLHeadingElement :: GObjectClass obj => obj -> HTMLHeadingElement
gTypeHTMLHeadingElement :: GType
toHTMLHeadingElement :: HTMLHeadingElementClass o => o -> HTMLHeadingElement
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
data HTMLHRElement
class HTMLElementClass o => HTMLHRElementClass o
castToHTMLHRElement :: GObjectClass obj => obj -> HTMLHRElement
gTypeHTMLHRElement :: GType
toHTMLHRElement :: HTMLHRElementClass o => o -> HTMLHRElement
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
data HTMLHtmlElement
class HTMLElementClass o => HTMLHtmlElementClass o
castToHTMLHtmlElement :: GObjectClass obj => obj -> HTMLHtmlElement
gTypeHTMLHtmlElement :: GType
toHTMLHtmlElement :: HTMLHtmlElementClass o => o -> HTMLHtmlElement
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
htmliFrameElementSetScrolling :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetScrolling :: HTMLIFrameElementClass self => self -> IO String
htmliFrameElementSetSrc :: HTMLIFrameElementClass self => self -> String -> IO ()
htmliFrameElementGetSrc :: 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)
data HTMLIFrameElement
class HTMLElementClass o => HTMLIFrameElementClass o
castToHTMLIFrameElement :: GObjectClass obj => obj -> HTMLIFrameElement
gTypeHTMLIFrameElement :: GType
toHTMLIFrameElement :: HTMLIFrameElementClass o => o -> HTMLIFrameElement
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
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
data HTMLImageElement
class HTMLElementClass o => HTMLImageElementClass o
castToHTMLImageElement :: GObjectClass obj => obj -> HTMLImageElement
gTypeHTMLImageElement :: GType
toHTMLImageElement :: HTMLImageElementClass o => o -> HTMLImageElement
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 ()
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)
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
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
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 ())
data HTMLInputElement
class HTMLElementClass o => HTMLInputElementClass o
castToHTMLInputElement :: GObjectClass obj => obj -> HTMLInputElement
gTypeHTMLInputElement :: GType
toHTMLInputElement :: HTMLInputElementClass o => o -> HTMLInputElement
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)
data HTMLLabelElement
class HTMLElementClass o => HTMLLabelElementClass o
castToHTMLLabelElement :: GObjectClass obj => obj -> HTMLLabelElement
gTypeHTMLLabelElement :: GType
toHTMLLabelElement :: HTMLLabelElementClass o => o -> HTMLLabelElement
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
data HTMLLegendElement
class HTMLElementClass o => HTMLLegendElementClass o
castToHTMLLegendElement :: GObjectClass obj => obj -> HTMLLegendElement
gTypeHTMLLegendElement :: GType
toHTMLLegendElement :: HTMLLegendElementClass o => o -> HTMLLegendElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLLIElement
htmlliElementSetValue :: HTMLLIElementClass self => self -> Int -> IO ()
htmlliElementGetValue :: HTMLLIElementClass self => self -> IO Int
data HTMLLIElement
class HTMLElementClass o => HTMLLIElementClass o
castToHTMLLIElement :: GObjectClass obj => obj -> HTMLLIElement
gTypeHTMLLIElement :: GType
toHTMLLIElement :: HTMLLIElementClass o => o -> HTMLLIElement
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)
data HTMLLinkElement
class HTMLElementClass o => HTMLLinkElementClass o
castToHTMLLinkElement :: GObjectClass obj => obj -> HTMLLinkElement
gTypeHTMLLinkElement :: GType
toHTMLLinkElement :: HTMLLinkElementClass o => o -> HTMLLinkElement
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
data HTMLMapElement
class HTMLElementClass o => HTMLMapElementClass o
castToHTMLMapElement :: GObjectClass obj => obj -> HTMLMapElement
gTypeHTMLMapElement :: GType
toHTMLMapElement :: HTMLMapElementClass o => o -> HTMLMapElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLMenuElement
htmlMenuElementSetCompact :: HTMLMenuElementClass self => self -> Bool -> IO ()
htmlMenuElementGetCompact :: HTMLMenuElementClass self => self -> IO Bool
data HTMLMenuElement
class HTMLElementClass o => HTMLMenuElementClass o
castToHTMLMenuElement :: GObjectClass obj => obj -> HTMLMenuElement
gTypeHTMLMenuElement :: GType
toHTMLMenuElement :: HTMLMenuElementClass o => o -> HTMLMenuElement
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
data HTMLMetaElement
class HTMLElementClass o => HTMLMetaElementClass o
castToHTMLMetaElement :: GObjectClass obj => obj -> HTMLMetaElement
gTypeHTMLMetaElement :: GType
toHTMLMetaElement :: HTMLMetaElementClass o => o -> HTMLMetaElement
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
data HTMLModElement
class HTMLElementClass o => HTMLModElementClass o
castToHTMLModElement :: GObjectClass obj => obj -> HTMLModElement
gTypeHTMLModElement :: GType
toHTMLModElement :: HTMLModElementClass o => o -> HTMLModElement
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)
data HTMLObjectElement
class HTMLElementClass o => HTMLObjectElementClass o
castToHTMLObjectElement :: GObjectClass obj => obj -> HTMLObjectElement
gTypeHTMLObjectElement :: GType
toHTMLObjectElement :: HTMLObjectElementClass o => o -> HTMLObjectElement
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
data HTMLOListElement
class HTMLElementClass o => HTMLOListElementClass o
castToHTMLOListElement :: GObjectClass obj => obj -> HTMLOListElement
gTypeHTMLOListElement :: GType
toHTMLOListElement :: HTMLOListElementClass o => o -> HTMLOListElement
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
data HTMLOptGroupElement
class HTMLElementClass o => HTMLOptGroupElementClass o
castToHTMLOptGroupElement :: GObjectClass obj => obj -> HTMLOptGroupElement
gTypeHTMLOptGroupElement :: GType
toHTMLOptGroupElement :: HTMLOptGroupElementClass o => o -> HTMLOptGroupElement
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
data HTMLOptionElement
class HTMLElementClass o => HTMLOptionElementClass o
castToHTMLOptionElement :: GObjectClass obj => obj -> HTMLOptionElement
gTypeHTMLOptionElement :: GType
toHTMLOptionElement :: HTMLOptionElementClass o => o -> HTMLOptionElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLOptionsCollection
htmlOptionsCollectionSetSelectedIndex :: HTMLOptionsCollectionClass self => self -> Int -> IO ()
htmlOptionsCollectionGetSelectedIndex :: HTMLOptionsCollectionClass self => self -> IO Int
data HTMLOptionsCollection
class HTMLCollectionClass o => HTMLOptionsCollectionClass o
castToHTMLOptionsCollection :: GObjectClass obj => obj -> HTMLOptionsCollection
gTypeHTMLOptionsCollection :: GType
toHTMLOptionsCollection :: HTMLOptionsCollectionClass o => o -> HTMLOptionsCollection
module Graphics.UI.Gtk.WebKit.DOM.HTMLParagraphElement
htmlParagraphElementSetAlign :: HTMLParagraphElementClass self => self -> String -> IO ()
htmlParagraphElementGetAlign :: HTMLParagraphElementClass self => self -> IO String
data HTMLParagraphElement
class HTMLElementClass o => HTMLParagraphElementClass o
castToHTMLParagraphElement :: GObjectClass obj => obj -> HTMLParagraphElement
gTypeHTMLParagraphElement :: GType
toHTMLParagraphElement :: HTMLParagraphElementClass o => o -> HTMLParagraphElement
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
data HTMLParamElement
class HTMLElementClass o => HTMLParamElementClass o
castToHTMLParamElement :: GObjectClass obj => obj -> HTMLParamElement
gTypeHTMLParamElement :: GType
toHTMLParamElement :: HTMLParamElementClass o => o -> HTMLParamElement
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
data HTMLPreElement
class HTMLElementClass o => HTMLPreElementClass o
castToHTMLPreElement :: GObjectClass obj => obj -> HTMLPreElement
gTypeHTMLPreElement :: GType
toHTMLPreElement :: HTMLPreElementClass o => o -> HTMLPreElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLQuoteElement
htmlQuoteElementSetCite :: HTMLQuoteElementClass self => self -> String -> IO ()
htmlQuoteElementGetCite :: HTMLQuoteElementClass self => self -> IO String
data HTMLQuoteElement
class HTMLElementClass o => HTMLQuoteElementClass o
castToHTMLQuoteElement :: GObjectClass obj => obj -> HTMLQuoteElement
gTypeHTMLQuoteElement :: GType
toHTMLQuoteElement :: HTMLQuoteElementClass o => o -> HTMLQuoteElement
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
data HTMLScriptElement
class HTMLElementClass o => HTMLScriptElementClass o
castToHTMLScriptElement :: GObjectClass obj => obj -> HTMLScriptElement
gTypeHTMLScriptElement :: GType
toHTMLScriptElement :: HTMLScriptElementClass o => o -> HTMLScriptElement
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
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)
data HTMLSelectElement
class HTMLElementClass o => HTMLSelectElementClass o
castToHTMLSelectElement :: GObjectClass obj => obj -> HTMLSelectElement
gTypeHTMLSelectElement :: GType
toHTMLSelectElement :: HTMLSelectElementClass o => o -> HTMLSelectElement
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)
data HTMLStyleElement
class HTMLElementClass o => HTMLStyleElementClass o
castToHTMLStyleElement :: GObjectClass obj => obj -> HTMLStyleElement
gTypeHTMLStyleElement :: GType
toHTMLStyleElement :: HTMLStyleElementClass o => o -> HTMLStyleElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLTableCaptionElement
htmlTableCaptionElementSetAlign :: HTMLTableCaptionElementClass self => self -> String -> IO ()
htmlTableCaptionElementGetAlign :: HTMLTableCaptionElementClass self => self -> IO String
data HTMLTableCaptionElement
class HTMLElementClass o => HTMLTableCaptionElementClass o
castToHTMLTableCaptionElement :: GObjectClass obj => obj -> HTMLTableCaptionElement
gTypeHTMLTableCaptionElement :: GType
toHTMLTableCaptionElement :: HTMLTableCaptionElementClass o => o -> HTMLTableCaptionElement
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
data HTMLTableCellElement
class HTMLElementClass o => HTMLTableCellElementClass o
castToHTMLTableCellElement :: GObjectClass obj => obj -> HTMLTableCellElement
gTypeHTMLTableCellElement :: GType
toHTMLTableCellElement :: HTMLTableCellElementClass o => o -> HTMLTableCellElement
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
data HTMLTableColElement
class HTMLElementClass o => HTMLTableColElementClass o
castToHTMLTableColElement :: GObjectClass obj => obj -> HTMLTableColElement
gTypeHTMLTableColElement :: GType
toHTMLTableColElement :: HTMLTableColElementClass o => o -> HTMLTableColElement
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 ()
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
data HTMLTableElement
class HTMLElementClass o => HTMLTableElementClass o
castToHTMLTableElement :: GObjectClass obj => obj -> HTMLTableElement
gTypeHTMLTableElement :: GType
toHTMLTableElement :: HTMLTableElementClass o => o -> HTMLTableElement
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
data HTMLTableRowElement
class HTMLElementClass o => HTMLTableRowElementClass o
castToHTMLTableRowElement :: GObjectClass obj => obj -> HTMLTableRowElement
gTypeHTMLTableRowElement :: GType
toHTMLTableRowElement :: HTMLTableRowElementClass o => o -> HTMLTableRowElement
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)
data HTMLTableSectionElement
class HTMLElementClass o => HTMLTableSectionElementClass o
castToHTMLTableSectionElement :: GObjectClass obj => obj -> HTMLTableSectionElement
gTypeHTMLTableSectionElement :: GType
toHTMLTableSectionElement :: HTMLTableSectionElementClass o => o -> HTMLTableSectionElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLTextAreaElement
htmlTextAreaElementCheckValidity :: HTMLTextAreaElementClass self => self -> IO Bool
htmlTextAreaElementSetCustomValidity :: HTMLTextAreaElementClass self => self -> String -> IO ()
htmlTextAreaElementSelect :: HTMLTextAreaElementClass self => self -> 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
data HTMLTextAreaElement
class HTMLElementClass o => HTMLTextAreaElementClass o
castToHTMLTextAreaElement :: GObjectClass obj => obj -> HTMLTextAreaElement
gTypeHTMLTextAreaElement :: GType
toHTMLTextAreaElement :: HTMLTextAreaElementClass o => o -> HTMLTextAreaElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLTitleElement
htmlTitleElementSetText :: HTMLTitleElementClass self => self -> String -> IO ()
htmlTitleElementGetText :: HTMLTitleElementClass self => self -> IO String
data HTMLTitleElement
class HTMLElementClass o => HTMLTitleElementClass o
castToHTMLTitleElement :: GObjectClass obj => obj -> HTMLTitleElement
gTypeHTMLTitleElement :: GType
toHTMLTitleElement :: HTMLTitleElementClass o => o -> HTMLTitleElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLUListElement
htmluListElementSetCompact :: HTMLUListElementClass self => self -> Bool -> IO ()
htmluListElementGetCompact :: HTMLUListElementClass self => self -> IO Bool
data HTMLUListElement
class HTMLElementClass o => HTMLUListElementClass o
castToHTMLUListElement :: GObjectClass obj => obj -> HTMLUListElement
gTypeHTMLUListElement :: GType
toHTMLUListElement :: HTMLUListElementClass o => o -> HTMLUListElement
module Graphics.UI.Gtk.WebKit.DOM.Location
locationGetOrigin :: LocationClass self => self -> IO String
data Location
class GObjectClass o => LocationClass o
castToLocation :: GObjectClass obj => obj -> Location
gTypeLocation :: GType
toLocation :: LocationClass o => o -> Location
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
data MediaList
class GObjectClass o => MediaListClass o
castToMediaList :: GObjectClass obj => obj -> MediaList
gTypeMediaList :: GType
toMediaList :: MediaListClass o => o -> MediaList
module Graphics.UI.Gtk.WebKit.DOM.MediaQueryList
mediaQueryListGetMedia :: MediaQueryListClass self => self -> IO String
mediaQueryListGetMatches :: MediaQueryListClass self => self -> IO Bool
data MediaQueryList
class GObjectClass o => MediaQueryListClass o
castToMediaQueryList :: GObjectClass obj => obj -> MediaQueryList
gTypeMediaQueryList :: GType
toMediaQueryList :: MediaQueryListClass o => o -> MediaQueryList
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
data NamedNodeMap
class GObjectClass o => NamedNodeMapClass o
castToNamedNodeMap :: GObjectClass obj => obj -> NamedNodeMap
gTypeNamedNodeMap :: GType
toNamedNodeMap :: NamedNodeMapClass o => o -> NamedNodeMap
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
data Navigator
class GObjectClass o => NavigatorClass o
castToNavigator :: GObjectClass obj => obj -> Navigator
gTypeNavigator :: GType
toNavigator :: NavigatorClass o => o -> Navigator
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)
data Node
class GObjectClass o => NodeClass o
castToNode :: GObjectClass obj => obj -> Node
gTypeNode :: GType
toNode :: NodeClass o => o -> Node
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
data NodeFilter
class GObjectClass o => NodeFilterClass o
castToNodeFilter :: GObjectClass obj => obj -> NodeFilter
gTypeNodeFilter :: GType
toNodeFilter :: NodeFilterClass o => o -> NodeFilter
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
data NodeIterator
class GObjectClass o => NodeIteratorClass o
castToNodeIterator :: GObjectClass obj => obj -> NodeIterator
gTypeNodeIterator :: GType
toNodeIterator :: NodeIteratorClass o => o -> NodeIterator
module Graphics.UI.Gtk.WebKit.DOM.NodeList
nodeListItem :: NodeListClass self => self -> Word -> IO (Maybe Node)
nodeListGetLength :: NodeListClass self => self -> IO Word
data NodeList
class GObjectClass o => NodeListClass o
castToNodeList :: GObjectClass obj => obj -> NodeList
gTypeNodeList :: GType
toNodeList :: NodeListClass o => o -> NodeList
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)
data ProcessingInstruction
class NodeClass o => ProcessingInstructionClass o
castToProcessingInstruction :: GObjectClass obj => obj -> ProcessingInstruction
gTypeProcessingInstruction :: GType
toProcessingInstruction :: ProcessingInstructionClass o => o -> ProcessingInstruction
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
data DOMRange
class GObjectClass o => DOMRangeClass o
castToDOMRange :: GObjectClass obj => obj -> DOMRange
gTypeDOMRange :: GType
toDOMRange :: DOMRangeClass o => o -> DOMRange
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
data DOMScreen
class GObjectClass o => DOMScreenClass o
castToDOMScreen :: GObjectClass obj => obj -> DOMScreen
gTypeDOMScreen :: GType
toDOMScreen :: DOMScreenClass o => o -> DOMScreen
module Graphics.UI.Gtk.WebKit.DOM.StyleMedia
styleMediaMatchMedium :: StyleMediaClass self => self -> String -> IO Bool
data StyleMedia
class GObjectClass o => StyleMediaClass o
castToStyleMedia :: GObjectClass obj => obj -> StyleMedia
gTypeStyleMedia :: GType
toStyleMedia :: StyleMediaClass o => o -> StyleMedia
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)
data StyleSheet
class GObjectClass o => StyleSheetClass o
castToStyleSheet :: GObjectClass obj => obj -> StyleSheet
gTypeStyleSheet :: GType
toStyleSheet :: StyleSheetClass o => o -> StyleSheet
module Graphics.UI.Gtk.WebKit.DOM.StyleSheetList
styleSheetListItem :: StyleSheetListClass self => self -> Word -> IO (Maybe StyleSheet)
styleSheetListGetLength :: StyleSheetListClass self => self -> IO Word
data StyleSheetList
class GObjectClass o => StyleSheetListClass o
castToStyleSheetList :: GObjectClass obj => obj -> StyleSheetList
gTypeStyleSheetList :: GType
toStyleSheetList :: StyleSheetListClass o => o -> StyleSheetList
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
data Storage
class GObjectClass o => StorageClass o
castToStorage :: GObjectClass obj => obj -> Storage
gTypeStorage :: GType
toStorage :: StorageClass o => o -> Storage
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
newtype Text
Text :: (ForeignPtr (Text)) -> Text
class CharacterDataClass o => TextClass o
castToText :: GObjectClass obj => obj -> Text
gTypeText :: GType
toText :: TextClass o => o -> Text
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)
newtype TreeWalker
TreeWalker :: (ForeignPtr (TreeWalker)) -> TreeWalker
class GObjectClass o => TreeWalkerClass o
castToTreeWalker :: GObjectClass obj => obj -> TreeWalker
gTypeTreeWalker :: GType
toTreeWalker :: TreeWalkerClass o => o -> TreeWalker
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
validityStateGetCustomError :: ValidityStateClass self => self -> IO Bool
validityStateGetValid :: ValidityStateClass self => self -> IO Bool
data ValidityState
class GObjectClass o => ValidityStateClass o
castToValidityState :: GObjectClass obj => obj -> ValidityState
gTypeValidityState :: GType
toValidityState :: ValidityStateClass o => o -> ValidityState
module Graphics.UI.Gtk.WebKit.DOM.WebKitNamedFlow
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
data WebKitPoint
class GObjectClass o => WebKitPointClass o
castToWebKitPoint :: GObjectClass obj => obj -> WebKitPoint
gTypeWebKitPoint :: GType
toWebKitPoint :: WebKitPointClass o => o -> WebKitPoint
module Graphics.UI.Gtk.WebKit.DOM.XPathExpression
xPathExpressionEvaluate :: (XPathExpressionClass self, NodeClass contextNode, XPathResultClass inResult) => self -> Maybe contextNode -> Word -> Maybe inResult -> IO (Maybe XPathResult)
data XPathExpression
class GObjectClass o => XPathExpressionClass o
castToXPathExpression :: GObjectClass obj => obj -> XPathExpression
gTypeXPathExpression :: GType
toXPathExpression :: XPathExpressionClass o => o -> XPathExpression
module Graphics.UI.Gtk.WebKit.DOM.XPathNSResolver
xPathNSResolverLookupNamespaceURI :: XPathNSResolverClass self => self -> String -> IO String
data XPathNSResolver
class GObjectClass o => XPathNSResolverClass o
castToXPathNSResolver :: GObjectClass obj => obj -> XPathNSResolver
gTypeXPathNSResolver :: GType
toXPathNSResolver :: XPathNSResolverClass o => o -> XPathNSResolver
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
data XPathResult
class GObjectClass o => XPathResultClass o
castToXPathResult :: GObjectClass obj => obj -> XPathResult
gTypeXPathResult :: GType
toXPathResult :: XPathResultClass o => o -> XPathResult
module Graphics.UI.Gtk.WebKit.DOM.DOMSecurityPolicy
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
data DOMStringList
class GObjectClass o => DOMStringListClass o
castToDOMStringList :: GObjectClass obj => obj -> DOMStringList
gTypeDOMStringList :: GType
toDOMStringList :: DOMStringListClass o => o -> DOMStringList
module Graphics.UI.Gtk.WebKit.DOM.Geolocation
geolocationClearWatch :: GeolocationClass self => self -> Int -> IO ()
data Geolocation
class GObjectClass o => GeolocationClass o
castToGeolocation :: GObjectClass obj => obj -> Geolocation
gTypeGeolocation :: GType
toGeolocation :: GeolocationClass o => o -> Geolocation
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
data HTMLCanvasElement
class HTMLElementClass o => HTMLCanvasElementClass o
castToHTMLCanvasElement :: GObjectClass obj => obj -> HTMLCanvasElement
gTypeHTMLCanvasElement :: GType
toHTMLCanvasElement :: HTMLCanvasElementClass o => o -> HTMLCanvasElement
module Graphics.UI.Gtk.WebKit.DOM.HTMLDetailsElement
htmlDetailsElementSetOpen :: HTMLDetailsElementClass self => self -> Bool -> IO ()
htmlDetailsElementGetOpen :: HTMLDetailsElementClass self => self -> IO Bool
data HTMLDetailsElement
class HTMLElementClass o => HTMLDetailsElementClass o
castToHTMLDetailsElement :: GObjectClass obj => obj -> HTMLDetailsElement
gTypeHTMLDetailsElement :: GType
toHTMLDetailsElement :: HTMLDetailsElementClass o => o -> HTMLDetailsElement
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
data HTMLEmbedElement
class HTMLElementClass o => HTMLEmbedElementClass o
castToHTMLEmbedElement :: GObjectClass obj => obj -> HTMLEmbedElement
gTypeHTMLEmbedElement :: GType
toHTMLEmbedElement :: HTMLEmbedElementClass o => o -> HTMLEmbedElement
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)
data HTMLKeygenElement
class HTMLElementClass o => HTMLKeygenElementClass o
castToHTMLKeygenElement :: GObjectClass obj => obj -> HTMLKeygenElement
gTypeHTMLKeygenElement :: GType
toHTMLKeygenElement :: HTMLKeygenElementClass o => o -> HTMLKeygenElement
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
data HTMLMarqueeElement
class HTMLElementClass o => HTMLMarqueeElementClass o
castToHTMLMarqueeElement :: GObjectClass obj => obj -> HTMLMarqueeElement
gTypeHTMLMarqueeElement :: GType
toHTMLMarqueeElement :: HTMLMarqueeElementClass o => o -> HTMLMarqueeElement
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
htmlMediaElementSetMediaGroup :: HTMLMediaElementClass self => self -> String -> IO ()
htmlMediaElementGetMediaGroup :: HTMLMediaElementClass self => self -> IO String
data HTMLMediaElement
class HTMLElementClass o => HTMLMediaElementClass o
castToHTMLMediaElement :: GObjectClass obj => obj -> HTMLMediaElement
gTypeHTMLMediaElement :: GType
toHTMLMediaElement :: HTMLMediaElementClass o => o -> HTMLMediaElement
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
data HTMLVideoElement
class HTMLMediaElementClass o => HTMLVideoElementClass o
castToHTMLVideoElement :: GObjectClass obj => obj -> HTMLVideoElement
gTypeHTMLVideoElement :: GType
toHTMLVideoElement :: HTMLVideoElementClass o => o -> HTMLVideoElement
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
data MediaError
class GObjectClass o => MediaErrorClass o
castToMediaError :: GObjectClass obj => obj -> MediaError
gTypeMediaError :: GType
toMediaError :: MediaErrorClass o => o -> MediaError
module Graphics.UI.Gtk.WebKit.DOM.StorageInfo
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
newtype TimeRanges
TimeRanges :: (ForeignPtr (TimeRanges)) -> TimeRanges
class GObjectClass o => TimeRangesClass o
castToTimeRanges :: GObjectClass obj => obj -> TimeRanges
gTypeTimeRanges :: GType
toTimeRanges :: TimeRangesClass o => o -> TimeRanges
-- | 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 setCacheModel.
--
--
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.
--
--
setCacheModel :: CacheModel -> IO ()
instance Enum CacheModel