gi-vte-2.91.14: Vte bindings

CopyrightWill Thompson, Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (garetxe@gmail.com)
Safe HaskellNone
LanguageHaskell2010

GI.Vte.Enums

Contents

Description

 

Synopsis

Documentation

Exported types

data RegexError Source #

An enum type for regex errors. In addition to the values listed above, any PCRE2 error values may occur.

Since: 0.46

Constructors

RegexErrorIncompatible

The PCRE2 library was built without Unicode support which is required for VTE

RegexErrorNotSupported

Regexes are not supported because VTE was built without PCRE2 support

AnotherRegexError Int

Catch-all for unknown values

data EraseBinding Source #

An enumerated type which can be used to indicate which string the terminal should send to an application when the user presses the Delete or Backspace keys.

Constructors

EraseBindingAuto

For backspace, attempt to determine the right value from the terminal's IO settings. For delete, use the control sequence.

EraseBindingAsciiBackspace

Send an ASCII backspace character (0x08).

EraseBindingAsciiDelete

Send an ASCII delete character (0x7F).

EraseBindingDeleteSequence

Send the "@7" control sequence.

EraseBindingTty

Send terminal's "erase" setting.

AnotherEraseBinding Int

Catch-all for unknown values

data CursorShape Source #

An enumerated type which can be used to indicate what should the terminal draw at the cursor position.

Constructors

CursorShapeBlock

Draw a block cursor. This is the default.

CursorShapeIbeam

Draw a vertical bar on the left side of character. This is similar to the default cursor for other GTK+ widgets.

CursorShapeUnderline

Draw a horizontal bar below the character.

AnotherCursorShape Int

Catch-all for unknown values

data CursorBlinkMode Source #

An enumerated type which can be used to indicate the cursor blink mode for the terminal.

Constructors

CursorBlinkModeSystem

Follow GTK+ settings for cursor blinking.

CursorBlinkModeOn

Cursor blinks.

CursorBlinkModeOff

Cursor does not blink.

AnotherCursorBlinkMode Int

Catch-all for unknown values