Interface

EvinceDocumentDocumentAttachments

Description

interface EvinceDocument.DocumentAttachments : GObject.Object
No description available.

Prerequisite

In order to implement DocumentAttachments, your type must inherit fromGObject.

Instance methods

ev_document_attachments_get_attachments
No description available.

ev_document_attachments_has_attachments
No description available.

Interface structure

struct EvinceDocumentDocumentAttachmentsInterface {
  GTypeInterface base_iface;
  gboolean (* has_attachments) (
    EvDocumentAttachments* document_attachments
  );
  GList* (* get_attachments) (
    EvDocumentAttachments* document_attachments
  );
  
}
No description available.
Interface members
base_iface
GTypeInterface
 No description available.
has_attachments
gboolean (* has_attachments) (
    EvDocumentAttachments* document_attachments
  )
 No description available.
get_attachments
GList* (* get_attachments) (
    EvDocumentAttachments* document_attachments
  )
 No description available.

Virtual methods