Interface
EvinceDocumentDocumentFind
Prerequisite
In order to implement DocumentFind, your type must inherit fromGObject.
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 |  | 
| No description available. | |
| find_text |  | 
| No description available. | |
| find_text_with_options |  | 
| No description available. | |
| get_supported_options |  | 
| No description available. | |
| find_text_extended |  | 
| No description available. |