Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. getSessionTlsInteraction :: (MonadIO m, IsSession o) => o -> m (Maybe TlsInteraction)

    gi-soup3 GI.Soup.Objects.Session

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

    get session #tlsInteraction
    

  2. sessionGetTlsInteraction :: (HasCallStack, MonadIO m, IsSession a) => a -> m (Maybe TlsInteraction)

    gi-soup3 GI.Soup.Objects.Session

    Get the TlsInteraction currently used by session.

  3. sessionSetTlsInteraction :: (HasCallStack, MonadIO m, IsSession a, IsTlsInteraction b) => a -> Maybe b -> m ()

    gi-soup3 GI.Soup.Objects.Session

    Set a TlsInteraction to be used by session on new connections. If tlsInteraction is Nothing then client certificate validation will always fail. See [propertysession:tls-interaction] for more information.

  4. setSessionTlsInteraction :: (MonadIO m, IsSession o, IsTlsInteraction a) => o -> a -> m ()

    gi-soup3 GI.Soup.Objects.Session

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

    set session [ #tlsInteraction := value ]
    

  5. textBufferDeleteInteractive :: TextBufferClass self => self -> TextIter -> TextIter -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Deletes all editable text in the given range. Calls textBufferDelete for each editable sub-range of [start,end). start and end are revalidated to point to the location of the last deleted range, or left untouched if no text was deleted.

  6. textBufferInsertByteStringInteractive :: TextBufferClass self => self -> TextIter -> ByteString -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Similar to textBufferInsertInteractive but uses ByteString buffers.

    • The passed-in buffer must contain a valid UTF-8 encoded string.

  7. textBufferInsertByteStringInteractiveAtCursor :: TextBufferClass self => self -> ByteString -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Similar to textBufferInsertInteractiveAtCursor but uses ByteString buffers.

    • The passed-in buffer must contain a valid UTF-8 encoded string.

  8. textBufferInsertInteractive :: (TextBufferClass self, GlibString string) => self -> TextIter -> string -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Like textBufferInsert, but the insertion will not occur if iter is at a non-editable location in the buffer. Usually you want to prevent insertions at ineditable locations if the insertion results from a user action (is interactive). If no tag is at the specified position, use the default value def to decide if the text should be inserted. This value could be set to the result of textViewGetEditable.

  9. textBufferInsertInteractiveAtCursor :: (TextBufferClass self, GlibString string) => self -> string -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Calls textBufferInsertInteractive at the cursor position.

  10. textBufferInsertRangeInteractive :: TextBufferClass self => self -> TextIter -> TextIter -> TextIter -> Bool -> IO Bool

    gtk3 Graphics.UI.Gtk.Multiline.TextBuffer

    Same as textBufferInsertRange, but does nothing if the insertion point isn't editable. The defaultEditable parameter indicates whether the text is editable at iter if no tags enclosing iter affect editability. Typically the result of textViewGetEditable is appropriate here.

Page 38 of many | Previous | Next