| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria (inaki@blueleaf.cc) |
| Safe Haskell | None |
| Language | Haskell2010 |
GI.Poppler.Objects.Attachment
Description
No description available in the introspection data.
Synopsis
- newtype Attachment = Attachment (ManagedPtr Attachment)
- class (GObject o, IsDescendantOf Attachment o) => IsAttachment o
- toAttachment :: (MonadIO m, IsAttachment o) => o -> m Attachment
- noAttachment :: Maybe Attachment
- attachmentSave :: (HasCallStack, MonadIO m, IsAttachment a) => a -> Text -> m ()
- attachmentSaveToCallback :: (HasCallStack, MonadIO m, IsAttachment a) => a -> FunPtr C_AttachmentSaveFunc -> m ()
Exported types
newtype Attachment Source #
Memory-managed wrapper type.
Constructors
| Attachment (ManagedPtr Attachment) |
Instances
| GObject Attachment Source # | |
Defined in GI.Poppler.Objects.Attachment Methods gobjectType :: IO GType # | |
| HasParentTypes Attachment Source # | |
Defined in GI.Poppler.Objects.Attachment | |
| type ParentTypes Attachment Source # | |
Defined in GI.Poppler.Objects.Attachment | |
class (GObject o, IsDescendantOf Attachment o) => IsAttachment o Source #
Type class for types which can be safely cast to Attachment, for instance with toAttachment.
Instances
| (GObject o, IsDescendantOf Attachment o) => IsAttachment o Source # | |
Defined in GI.Poppler.Objects.Attachment | |
toAttachment :: (MonadIO m, IsAttachment o) => o -> m Attachment Source #
Cast to Attachment, for types for which this is known to be safe. For general casts, use castTo.
noAttachment :: Maybe Attachment Source #
A convenience alias for Nothing :: Maybe Attachment.
Methods
save
Arguments
| :: (HasCallStack, MonadIO m, IsAttachment a) | |
| => a |
|
| -> Text |
|
| -> m () | (Can throw |
Saves attachment to a file indicated by filename. If error is set, False
will be returned. Possible errors include those in the G_FILE_ERROR domain
and whatever the save function generates.
saveToCallback
attachmentSaveToCallback Source #
Arguments
| :: (HasCallStack, MonadIO m, IsAttachment a) | |
| => a |
|
| -> FunPtr C_AttachmentSaveFunc |
|
| -> m () | (Can throw |
Saves attachment by feeding the produced data to saveFunc. Can be used
when you want to store the attachment to something other than a file, such as
an in-memory buffer or a socket. If error is set, False will be
returned. Possible errors include those in the G_FILE_ERROR domain and
whatever the save function generates.