Interface

PapersDocumentDocumentLinks

Description

interface PapersDocument.DocumentLinks : GObject.Object

No description available.

Prerequisite

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

Instance methods

pps_document_links_find_link_dest
No description available.

pps_document_links_find_link_page
No description available.

pps_document_links_get_dest_page
No description available.

pps_document_links_get_dest_page_label
No description available.

pps_document_links_get_link_page
No description available.

pps_document_links_get_link_page_label
No description available.

pps_document_links_get_links
No description available.

pps_document_links_get_links_model
No description available.

pps_document_links_has_document_links
No description available.

Interface structure

struct PapersDocumentDocumentLinksInterface {
  GTypeInterface base_iface;
  gboolean (* has_document_links) (
    PpsDocumentLinks* document_links
  );
  GListModel* (* get_links_model) (
    PpsDocumentLinks* document_links
  );
  PpsMappingList* (* get_links) (
    PpsDocumentLinks* document_links,
    PpsPage* page
  );
  PpsLinkDest* (* find_link_dest) (
    PpsDocumentLinks* document_links,
    const gchar* link_name
  );
  gint (* find_link_page) (
    PpsDocumentLinks* document_links,
    const gchar* link_name
  );
  
}

No description available.

Interface members
base_iface
GTypeInterface
 

No description available.

has_document_links
gboolean (* has_document_links) (
    PpsDocumentLinks* document_links
  )
 

No description available.

get_links_model
GListModel* (* get_links_model) (
    PpsDocumentLinks* document_links
  )
 

No description available.

get_links
PpsMappingList* (* get_links) (
    PpsDocumentLinks* document_links,
    PpsPage* page
  )
 

No description available.

find_link_dest
PpsLinkDest* (* find_link_dest) (
    PpsDocumentLinks* document_links,
    const gchar* link_name
  )
 

No description available.

find_link_page
gint (* find_link_page) (
    PpsDocumentLinks* document_links,
    const gchar* link_name
  )
 

No description available.

Virtual methods