| Copyright | Will Thompson and Iñaki García Etxebarria |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
GI.WebKit2WebExtension.Enums
Description
Synopsis
- data ConsoleMessageLevel
- data ConsoleMessageSource
- data ContextMenuAction
- = ContextMenuActionNoAction
- | ContextMenuActionOpenLink
- | ContextMenuActionOpenLinkInNewWindow
- | ContextMenuActionDownloadLinkToDisk
- | ContextMenuActionCopyLinkToClipboard
- | ContextMenuActionOpenImageInNewWindow
- | ContextMenuActionDownloadImageToDisk
- | ContextMenuActionCopyImageToClipboard
- | ContextMenuActionCopyImageUrlToClipboard
- | ContextMenuActionOpenFrameInNewWindow
- | ContextMenuActionGoBack
- | ContextMenuActionGoForward
- | ContextMenuActionStop
- | ContextMenuActionReload
- | ContextMenuActionCopy
- | ContextMenuActionCut
- | ContextMenuActionPaste
- | ContextMenuActionDelete
- | ContextMenuActionSelectAll
- | ContextMenuActionInputMethods
- | ContextMenuActionUnicode
- | ContextMenuActionSpellingGuess
- | ContextMenuActionNoGuessesFound
- | ContextMenuActionIgnoreSpelling
- | ContextMenuActionLearnSpelling
- | ContextMenuActionIgnoreGrammar
- | ContextMenuActionFontMenu
- | ContextMenuActionBold
- | ContextMenuActionItalic
- | ContextMenuActionUnderline
- | ContextMenuActionOutline
- | ContextMenuActionInspectElement
- | ContextMenuActionOpenVideoInNewWindow
- | ContextMenuActionOpenAudioInNewWindow
- | ContextMenuActionCopyVideoLinkToClipboard
- | ContextMenuActionCopyAudioLinkToClipboard
- | ContextMenuActionToggleMediaControls
- | ContextMenuActionToggleMediaLoop
- | ContextMenuActionEnterVideoFullscreen
- | ContextMenuActionMediaPlay
- | ContextMenuActionMediaPause
- | ContextMenuActionMediaMute
- | ContextMenuActionDownloadVideoToDisk
- | ContextMenuActionDownloadAudioToDisk
- | ContextMenuActionInsertEmoji
- | ContextMenuActionPasteAsPlainText
- | ContextMenuActionCustom
- | AnotherContextMenuAction Int
- data FormSubmissionStep
- data UserMessageError
Enumerations
ConsoleMessageLevel
data ConsoleMessageLevel Source #
Deprecated: (Since version 2.40)
Enum values used to denote the various levels of console messages.
Since: 2.12
Constructors
| ConsoleMessageLevelInfo | Information message. |
| ConsoleMessageLevelLog | Log message. |
| ConsoleMessageLevelWarning | Warning message. |
| ConsoleMessageLevelError | Error message. |
| ConsoleMessageLevelDebug | Debug message. |
| AnotherConsoleMessageLevel Int | Catch-all for unknown values |
Instances
ConsoleMessageSource
data ConsoleMessageSource Source #
Deprecated: (Since version 2.40)
Enum values used to denote the various sources of console messages.
Since: 2.12
Constructors
| ConsoleMessageSourceJavascript | Message produced by JavaScript. |
| ConsoleMessageSourceNetwork | Network messages. |
| ConsoleMessageSourceConsoleApi | Messages produced by console API. |
| ConsoleMessageSourceSecurity | Security messages. |
| ConsoleMessageSourceOther | Other messages. |
| AnotherConsoleMessageSource Int | Catch-all for unknown values |
Instances
ContextMenuAction
data ContextMenuAction Source #
Enum values used to denote the stock actions for
ContextMenuItems
Constructors
| ContextMenuActionNoAction | No action, used by separator menu items. |
| ContextMenuActionOpenLink | Open current link. |
| ContextMenuActionOpenLinkInNewWindow | Open current link in a new window. |
| ContextMenuActionDownloadLinkToDisk | Download link destination. |
| ContextMenuActionCopyLinkToClipboard | Copy link location to the clipboard. |
| ContextMenuActionOpenImageInNewWindow | Open current image in a new window. |
| ContextMenuActionDownloadImageToDisk | Download current image. |
| ContextMenuActionCopyImageToClipboard | Copy current image to the clipboard. |
| ContextMenuActionCopyImageUrlToClipboard | Copy current image location to the clipboard. |
| ContextMenuActionOpenFrameInNewWindow | Open current frame in a new window. |
| ContextMenuActionGoBack | Load the previous history item. |
| ContextMenuActionGoForward | Load the next history item. |
| ContextMenuActionStop | Stop any ongoing loading operation. |
| ContextMenuActionReload | Reload the contents of current view. |
| ContextMenuActionCopy | Copy current selection the clipboard. |
| ContextMenuActionCut | Cut current selection to the clipboard. |
| ContextMenuActionPaste | Paste clipboard contents. |
| ContextMenuActionDelete | Delete current selection. |
| ContextMenuActionSelectAll | Select all text. |
| ContextMenuActionInputMethods | Input methods menu. |
| ContextMenuActionUnicode | Unicode menu. |
| ContextMenuActionSpellingGuess | A proposed replacement for a misspelled word. |
| ContextMenuActionNoGuessesFound | An indicator that spellchecking found no proposed replacements. |
| ContextMenuActionIgnoreSpelling | Causes the spellchecker to ignore the word for this session. |
| ContextMenuActionLearnSpelling | Causes the spellchecker to add the word to the dictionary. |
| ContextMenuActionIgnoreGrammar | Ignore grammar. |
| ContextMenuActionFontMenu | Font options menu. |
| ContextMenuActionBold | Bold. |
| ContextMenuActionItalic | Italic. |
| ContextMenuActionUnderline | Underline. |
| ContextMenuActionOutline | Outline. |
| ContextMenuActionInspectElement | Open current element in the inspector. |
| ContextMenuActionOpenVideoInNewWindow | Open current video element in a new window. |
| ContextMenuActionOpenAudioInNewWindow | Open current audio element in a new window. |
| ContextMenuActionCopyVideoLinkToClipboard | Copy video link location in to the clipboard. |
| ContextMenuActionCopyAudioLinkToClipboard | Copy audio link location in to the clipboard. |
| ContextMenuActionToggleMediaControls | Enable or disable media controls. |
| ContextMenuActionToggleMediaLoop | Enable or disable media loop. |
| ContextMenuActionEnterVideoFullscreen | Show current video element in fullscreen mode. |
| ContextMenuActionMediaPlay | Play current media element. |
| ContextMenuActionMediaPause | Pause current media element. |
| ContextMenuActionMediaMute | Mute current media element. |
| ContextMenuActionDownloadVideoToDisk | Download video to disk. Since 2.2 |
| ContextMenuActionDownloadAudioToDisk | Download audio to disk. Since 2.2 |
| ContextMenuActionInsertEmoji | Insert an emoji. Since 2.26 |
| ContextMenuActionPasteAsPlainText | Paste clipboard contents as plain text. Since 2.30 |
| ContextMenuActionCustom | Custom action defined by applications. |
| AnotherContextMenuAction Int | Catch-all for unknown values |
Instances
FormSubmissionStep
data FormSubmissionStep Source #
Deprecated: (Since version 2.40)
Used to indicate a particular stage in form submission. See WebPage::willSubmitForm.
Since: 2.20
Constructors
| FormSubmissionStepSendDomEvent | indicates the form's DOM submit event is about to be emitted. |
| FormSubmissionStepComplete | indicates the form is about to be submitted. |
| AnotherFormSubmissionStep Int | Catch-all for unknown values |
Instances
UserMessageError
data UserMessageError Source #
Enum values used to denote errors happening when sending user messages.
Since: 2.28
Constructors
| UserMessageErrorUserMessageUnhandledMessage | The message was not handled by the receiver. |
| AnotherUserMessageError Int | Catch-all for unknown values |