gi-gtk-3.0.26: Gtk 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.Gtk.Objects.EntryCompletion

Contents

Description

EntryCompletion is an auxiliary object to be used in conjunction with Entry to provide the completion functionality. It implements the CellLayout interface, to allow the user to add extra cells to the TreeView with completion matches.

“Completion functionality” means that when the user modifies the text in the entry, EntryCompletion checks which rows in the model match the current content of the entry, and displays a list of matches. By default, the matching is done by comparing the entry text case-insensitively against the text column of the model (see entryCompletionSetTextColumn), but this can be overridden with a custom match function (see entryCompletionSetMatchFunc).

When the user selects a completion, the content of the entry is updated. By default, the content of the entry is replaced by the text column of the model, but this can be overridden by connecting to the EntryCompletion::match-selected signal and updating the entry in the signal handler. Note that you should return True from the signal handler to suppress the default behaviour.

To add completion functionality to an entry, use entrySetCompletion.

In addition to regular completion matches, which will be inserted into the entry when they are selected, EntryCompletion also allows to display “actions” in the popup window. Their appearance is similar to menuitems, to differentiate them clearly from completion strings. When an action is selected, the EntryCompletion::action-activated signal is emitted.

GtkEntryCompletion uses a TreeModelFilter model to represent the subset of the entire model that is currently matching. While the GtkEntryCompletion signals EntryCompletion::match-selected and EntryCompletion::cursor-on-match take the original model and an iter pointing to that model as arguments, other callbacks and signals (such as GtkCellLayoutDataFuncs or CellArea::apply-attributes) will generally take the filter model as argument. As long as you are only calling gtk_tree_model_get(), this will make no difference to you. If for some reason, you need the original model, use treeModelFilterGetModel. Don’t forget to use treeModelFilterConvertIterToChildIter to obtain a matching iter.

Synopsis

Exported types

class GObject o => IsEntryCompletion o Source #

Type class for types which can be safely cast to EntryCompletion, for instance with toEntryCompletion.

toEntryCompletion :: (MonadIO m, IsEntryCompletion o) => o -> m EntryCompletion Source #

Cast to EntryCompletion, for types for which this is known to be safe. For general casts, use castTo.

Methods

complete

entryCompletionComplete Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m () 

Requests a completion operation, or in other words a refiltering of the current list with completions, using the current key. The completion list view will be updated accordingly.

Since: 2.4

computePrefix

entryCompletionComputePrefix Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: the entry completion

-> Text

key: The text to complete for

-> m (Maybe Text)

Returns: The common prefix all rows starting with key or Nothing if no row matches key.

Computes the common prefix that is shared by all rows in completion that start with key. If no row matches key, Nothing will be returned. Note that a text column must have been set for this function to work, see entryCompletionSetTextColumn for details.

Since: 3.4

deleteAction

entryCompletionDeleteAction Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Int32

index_: the index of the item to delete

-> m () 

Deletes the action at index_ from completion’s action list.

Note that index_ is a relative position and the position of an action may have changed since it was inserted.

Since: 2.4

getCompletionPrefix

entryCompletionGetCompletionPrefix Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Text

Returns: the prefix for the current completion

Get the original text entered by the user that triggered the completion or Nothing if there’s no completion ongoing.

Since: 2.12

getEntry

entryCompletionGetEntry Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Widget

Returns: The entry completion has been attached to

Gets the entry completion has been attached to.

Since: 2.4

getInlineCompletion

entryCompletionGetInlineCompletion Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Bool

Returns: True if inline completion is turned on

Returns whether the common prefix of the possible completions should be automatically inserted in the entry.

Since: 2.6

getInlineSelection

entryCompletionGetInlineSelection Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Bool

Returns: True if inline-selection mode is on

Returns True if inline-selection mode is turned on.

Since: 2.12

getMinimumKeyLength

entryCompletionGetMinimumKeyLength Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Int32

Returns: The currently used minimum key length

Returns the minimum key length as set for completion.

Since: 2.4

getModel

entryCompletionGetModel Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m (Maybe TreeModel)

Returns: A TreeModel, or Nothing if none is currently being used

Returns the model the EntryCompletion is using as data source. Returns Nothing if the model is unset.

Since: 2.4

getPopupCompletion

entryCompletionGetPopupCompletion Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Bool

Returns: True if popup completion is turned on

Returns whether the completions should be presented in a popup window.

Since: 2.6

getPopupSetWidth

entryCompletionGetPopupSetWidth Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Bool

Returns: True if the popup window will be resized to the width of the entry

Returns whether the completion popup window will be resized to the width of the entry.

Since: 2.8

getPopupSingleMatch

entryCompletionGetPopupSingleMatch Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Bool

Returns: True if the popup window will appear regardless of the number of matches

Returns whether the completion popup window will appear even if there is only a single match.

Since: 2.8

getTextColumn

entryCompletionGetTextColumn Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m Int32

Returns: the column containing the strings

Returns the column in the model of completion to get strings from.

Since: 2.6

insertActionMarkup

entryCompletionInsertActionMarkup Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Int32

index_: the index of the item to insert

-> Text

markup: markup of the item to insert

-> m () 

Inserts an action in completion’s action item list at position index_ with markup markup.

Since: 2.4

insertActionText

entryCompletionInsertActionText Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Int32

index_: the index of the item to insert

-> Text

text: text of the item to insert

-> m () 

Inserts an action in completion’s action item list at position index_ with text text. If you want the action item to have markup, use entryCompletionInsertActionMarkup.

Note that index_ is a relative position in the list of actions and the position of an action can change when deleting a different action.

Since: 2.4

insertPrefix

entryCompletionInsertPrefix Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> m () 

Requests a prefix insertion.

Since: 2.6

new

entryCompletionNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m EntryCompletion

Returns: A newly created EntryCompletion object

Creates a new EntryCompletion object.

Since: 2.4

newWithArea

entryCompletionNewWithArea Source #

Arguments

:: (HasCallStack, MonadIO m, IsCellArea a) 
=> a

area: the CellArea used to layout cells

-> m EntryCompletion

Returns: A newly created EntryCompletion object

Creates a new EntryCompletion object using the specified area to layout cells in the underlying TreeViewColumn for the drop-down menu.

Since: 3.0

setInlineCompletion

entryCompletionSetInlineCompletion Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Bool

inlineCompletion: True to do inline completion

-> m () 

Sets whether the common prefix of the possible completions should be automatically inserted in the entry.

Since: 2.6

setInlineSelection

entryCompletionSetInlineSelection Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Bool

inlineSelection: True to do inline selection

-> m () 

Sets whether it is possible to cycle through the possible completions inside the entry.

Since: 2.12

setMatchFunc

entryCompletionSetMatchFunc Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> EntryCompletionMatchFunc

func: the EntryCompletionMatchFunc to use

-> m () 

Sets the match function for completion to be func. The match function is used to determine if a row should or should not be in the completion list.

Since: 2.4

setMinimumKeyLength

entryCompletionSetMinimumKeyLength Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Int32

length: the minimum length of the key in order to start completing

-> m () 

Requires the length of the search key for completion to be at least length. This is useful for long lists, where completing using a small key takes a lot of time and will come up with meaningless results anyway (ie, a too large dataset).

Since: 2.4

setModel

entryCompletionSetModel Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a, IsTreeModel b) 
=> a

completion: a EntryCompletion

-> Maybe b

model: the TreeModel

-> m () 

Sets the model for a EntryCompletion. If completion already has a model set, it will remove it before setting the new model. If model is Nothing, then it will unset the model.

Since: 2.4

setPopupCompletion

entryCompletionSetPopupCompletion Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Bool

popupCompletion: True to do popup completion

-> m () 

Sets whether the completions should be presented in a popup window.

Since: 2.6

setPopupSetWidth

entryCompletionSetPopupSetWidth Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Bool

popupSetWidth: True to make the width of the popup the same as the entry

-> m () 

Sets whether the completion popup window will be resized to be the same width as the entry.

Since: 2.8

setPopupSingleMatch

entryCompletionSetPopupSingleMatch Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Bool

popupSingleMatch: True if the popup should appear even for a single match

-> m () 

Sets whether the completion popup window will appear even if there is only a single match. You may want to set this to False if you are using [inline completion][GtkEntryCompletion--inline-completion].

Since: 2.8

setTextColumn

entryCompletionSetTextColumn Source #

Arguments

:: (HasCallStack, MonadIO m, IsEntryCompletion a) 
=> a

completion: a EntryCompletion

-> Int32

column: the column in the model of completion to get strings from

-> m () 

Convenience function for setting up the most used case of this code: a completion list with just strings. This function will set up completion to have a list displaying all (and just) strings in the completion list, and to get those strings from column in the model of completion.

This functions creates and adds a CellRendererText for the selected column. If you need to set the text column, but don't want the cell renderer, use g_object_set() to set the EntryCompletion:text-column property directly.

Since: 2.4

Properties

cellArea

The CellArea used to layout cell renderers in the treeview column.

If no area is specified when creating the entry completion with entryCompletionNewWithArea a horizontally oriented CellAreaBox will be used.

Since: 3.0

constructEntryCompletionCellArea :: (IsEntryCompletion o, IsCellArea a) => a -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “cell-area” property. This is rarely needed directly, but it is used by new.

getEntryCompletionCellArea :: (MonadIO m, IsEntryCompletion o) => o -> m (Maybe CellArea) Source #

Get the value of the “cell-area” property. When overloading is enabled, this is equivalent to

get entryCompletion #cellArea

inlineCompletion

Determines whether the common prefix of the possible completions should be inserted automatically in the entry. Note that this requires text-column to be set, even if you are using a custom match function.

Since: 2.6

constructEntryCompletionInlineCompletion :: IsEntryCompletion o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “inline-completion” property. This is rarely needed directly, but it is used by new.

getEntryCompletionInlineCompletion :: (MonadIO m, IsEntryCompletion o) => o -> m Bool Source #

Get the value of the “inline-completion” property. When overloading is enabled, this is equivalent to

get entryCompletion #inlineCompletion

setEntryCompletionInlineCompletion :: (MonadIO m, IsEntryCompletion o) => o -> Bool -> m () Source #

Set the value of the “inline-completion” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #inlineCompletion := value ]

inlineSelection

Determines whether the possible completions on the popup will appear in the entry as you navigate through them.

Since: 2.12

constructEntryCompletionInlineSelection :: IsEntryCompletion o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “inline-selection” property. This is rarely needed directly, but it is used by new.

getEntryCompletionInlineSelection :: (MonadIO m, IsEntryCompletion o) => o -> m Bool Source #

Get the value of the “inline-selection” property. When overloading is enabled, this is equivalent to

get entryCompletion #inlineSelection

setEntryCompletionInlineSelection :: (MonadIO m, IsEntryCompletion o) => o -> Bool -> m () Source #

Set the value of the “inline-selection” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #inlineSelection := value ]

minimumKeyLength

No description available in the introspection data.

constructEntryCompletionMinimumKeyLength :: IsEntryCompletion o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “minimum-key-length” property. This is rarely needed directly, but it is used by new.

getEntryCompletionMinimumKeyLength :: (MonadIO m, IsEntryCompletion o) => o -> m Int32 Source #

Get the value of the “minimum-key-length” property. When overloading is enabled, this is equivalent to

get entryCompletion #minimumKeyLength

setEntryCompletionMinimumKeyLength :: (MonadIO m, IsEntryCompletion o) => o -> Int32 -> m () Source #

Set the value of the “minimum-key-length” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #minimumKeyLength := value ]

model

No description available in the introspection data.

clearEntryCompletionModel :: (MonadIO m, IsEntryCompletion o) => o -> m () Source #

Set the value of the “model” property to Nothing. When overloading is enabled, this is equivalent to

clear #model

constructEntryCompletionModel :: (IsEntryCompletion o, IsTreeModel a) => a -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “model” property. This is rarely needed directly, but it is used by new.

getEntryCompletionModel :: (MonadIO m, IsEntryCompletion o) => o -> m (Maybe TreeModel) Source #

Get the value of the “model” property. When overloading is enabled, this is equivalent to

get entryCompletion #model

setEntryCompletionModel :: (MonadIO m, IsEntryCompletion o, IsTreeModel a) => o -> a -> m () Source #

Set the value of the “model” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #model := value ]

popupCompletion

Determines whether the possible completions should be shown in a popup window.

Since: 2.6

constructEntryCompletionPopupCompletion :: IsEntryCompletion o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “popup-completion” property. This is rarely needed directly, but it is used by new.

getEntryCompletionPopupCompletion :: (MonadIO m, IsEntryCompletion o) => o -> m Bool Source #

Get the value of the “popup-completion” property. When overloading is enabled, this is equivalent to

get entryCompletion #popupCompletion

setEntryCompletionPopupCompletion :: (MonadIO m, IsEntryCompletion o) => o -> Bool -> m () Source #

Set the value of the “popup-completion” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #popupCompletion := value ]

popupSetWidth

Determines whether the completions popup window will be resized to the width of the entry.

Since: 2.8

constructEntryCompletionPopupSetWidth :: IsEntryCompletion o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “popup-set-width” property. This is rarely needed directly, but it is used by new.

getEntryCompletionPopupSetWidth :: (MonadIO m, IsEntryCompletion o) => o -> m Bool Source #

Get the value of the “popup-set-width” property. When overloading is enabled, this is equivalent to

get entryCompletion #popupSetWidth

setEntryCompletionPopupSetWidth :: (MonadIO m, IsEntryCompletion o) => o -> Bool -> m () Source #

Set the value of the “popup-set-width” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #popupSetWidth := value ]

popupSingleMatch

Determines whether the completions popup window will shown for a single possible completion. You probably want to set this to False if you are using [inline completion][GtkEntryCompletion--inline-completion].

Since: 2.8

constructEntryCompletionPopupSingleMatch :: IsEntryCompletion o => Bool -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “popup-single-match” property. This is rarely needed directly, but it is used by new.

getEntryCompletionPopupSingleMatch :: (MonadIO m, IsEntryCompletion o) => o -> m Bool Source #

Get the value of the “popup-single-match” property. When overloading is enabled, this is equivalent to

get entryCompletion #popupSingleMatch

setEntryCompletionPopupSingleMatch :: (MonadIO m, IsEntryCompletion o) => o -> Bool -> m () Source #

Set the value of the “popup-single-match” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #popupSingleMatch := value ]

textColumn

The column of the model containing the strings. Note that the strings must be UTF-8.

Since: 2.6

constructEntryCompletionTextColumn :: IsEntryCompletion o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “text-column” property. This is rarely needed directly, but it is used by new.

getEntryCompletionTextColumn :: (MonadIO m, IsEntryCompletion o) => o -> m Int32 Source #

Get the value of the “text-column” property. When overloading is enabled, this is equivalent to

get entryCompletion #textColumn

setEntryCompletionTextColumn :: (MonadIO m, IsEntryCompletion o) => o -> Int32 -> m () Source #

Set the value of the “text-column” property. When overloading is enabled, this is equivalent to

set entryCompletion [ #textColumn := value ]

Signals

actionActivated

type C_EntryCompletionActionActivatedCallback = Ptr () -> Int32 -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type EntryCompletionActionActivatedCallback Source #

Arguments

 = Int32

index: the index of the activated action

-> IO () 

Gets emitted when an action is activated.

Since: 2.4

afterEntryCompletionActionActivated :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionActionActivatedCallback -> m SignalHandlerId Source #

Connect a signal handler for the “action-activated” signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after entryCompletion #actionActivated callback

onEntryCompletionActionActivated :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionActionActivatedCallback -> m SignalHandlerId Source #

Connect a signal handler for the “action-activated” signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on entryCompletion #actionActivated callback

cursorOnMatch

type C_EntryCompletionCursorOnMatchCallback = Ptr () -> Ptr TreeModel -> Ptr TreeIter -> Ptr () -> IO CInt Source #

Type for the callback on the (unwrapped) C side.

type EntryCompletionCursorOnMatchCallback Source #

Arguments

 = TreeModel

model: the TreeModel containing the matches

-> TreeIter

iter: a TreeIter positioned at the selected match

-> IO Bool

Returns: True if the signal has been handled

Gets emitted when a match from the cursor is on a match of the list. The default behaviour is to replace the contents of the entry with the contents of the text column in the row pointed to by iter.

Note that model is the model that was passed to entryCompletionSetModel.

Since: 2.12

afterEntryCompletionCursorOnMatch :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionCursorOnMatchCallback -> m SignalHandlerId Source #

Connect a signal handler for the “cursor-on-match” signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after entryCompletion #cursorOnMatch callback

onEntryCompletionCursorOnMatch :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionCursorOnMatchCallback -> m SignalHandlerId Source #

Connect a signal handler for the “cursor-on-match” signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on entryCompletion #cursorOnMatch callback

insertPrefix

type C_EntryCompletionInsertPrefixCallback = Ptr () -> CString -> Ptr () -> IO CInt Source #

Type for the callback on the (unwrapped) C side.

type EntryCompletionInsertPrefixCallback Source #

Arguments

 = Text

prefix: the common prefix of all possible completions

-> IO Bool

Returns: True if the signal has been handled

Gets emitted when the inline autocompletion is triggered. The default behaviour is to make the entry display the whole prefix and select the newly inserted part.

Applications may connect to this signal in order to insert only a smaller part of the prefix into the entry - e.g. the entry used in the FileChooser inserts only the part of the prefix up to the next '/'.

Since: 2.6

afterEntryCompletionInsertPrefix :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionInsertPrefixCallback -> m SignalHandlerId Source #

Connect a signal handler for the “insert-prefix” signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after entryCompletion #insertPrefix callback

onEntryCompletionInsertPrefix :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionInsertPrefixCallback -> m SignalHandlerId Source #

Connect a signal handler for the “insert-prefix” signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on entryCompletion #insertPrefix callback

matchSelected

type C_EntryCompletionMatchSelectedCallback = Ptr () -> Ptr TreeModel -> Ptr TreeIter -> Ptr () -> IO CInt Source #

Type for the callback on the (unwrapped) C side.

type EntryCompletionMatchSelectedCallback Source #

Arguments

 = TreeModel

model: the TreeModel containing the matches

-> TreeIter

iter: a TreeIter positioned at the selected match

-> IO Bool

Returns: True if the signal has been handled

Gets emitted when a match from the list is selected. The default behaviour is to replace the contents of the entry with the contents of the text column in the row pointed to by iter.

Note that model is the model that was passed to entryCompletionSetModel.

Since: 2.4

afterEntryCompletionMatchSelected :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionMatchSelectedCallback -> m SignalHandlerId Source #

Connect a signal handler for the “match-selected” signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after entryCompletion #matchSelected callback

onEntryCompletionMatchSelected :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionMatchSelectedCallback -> m SignalHandlerId Source #

Connect a signal handler for the “match-selected” signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on entryCompletion #matchSelected callback

noMatches

type C_EntryCompletionNoMatchesCallback = Ptr () -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type EntryCompletionNoMatchesCallback = IO () Source #

Gets emitted when the filter model has zero number of rows in completion_complete method. (In other words when GtkEntryCompletion is out of suggestions)

Since: 3.14

afterEntryCompletionNoMatches :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionNoMatchesCallback -> m SignalHandlerId Source #

Connect a signal handler for the “no-matches” signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after entryCompletion #noMatches callback

onEntryCompletionNoMatches :: (IsEntryCompletion a, MonadIO m) => a -> EntryCompletionNoMatchesCallback -> m SignalHandlerId Source #

Connect a signal handler for the “no-matches” signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on entryCompletion #noMatches callback