Interface

EvinceDocumentDocumentFind

Description

interface EvinceDocument.DocumentFind : GObject.Object

No description available.

Prerequisite

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

Instance methods

ev_document_find_find_text
No description available.

ev_document_find_find_text_extended
No description available.

ev_document_find_find_text_with_options
No description available.

ev_document_find_get_supported_options
No description available.

Interface structure

struct EvinceDocumentDocumentFindInterface {
  GTypeInterface base_iface;
  GList* (* find_text) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    gboolean case_sensitive
  );
  GList* (* find_text_with_options) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    EvFindOptions options
  );
  EvFindOptions (* get_supported_options) (
    EvDocumentFind* document_find
  );
  GList* (* find_text_extended) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    EvFindOptions options
  );
  
}

No description available.

Interface members
base_iface
GTypeInterface
 

No description available.

find_text
GList* (* find_text) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    gboolean case_sensitive
  )
 

No description available.

find_text_with_options
GList* (* find_text_with_options) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    EvFindOptions options
  )
 

No description available.

get_supported_options
EvFindOptions (* get_supported_options) (
    EvDocumentFind* document_find
  )
 

No description available.

find_text_extended
GList* (* find_text_extended) (
    EvDocumentFind* document_find,
    EvPage* page,
    const gchar* text,
    EvFindOptions options
  )
 

No description available.

Virtual methods