Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-file-exporter.c File Reference
#include <config.h>
#include "ev-file-exporter.h"
#include "ev-document.h"
+ Include dependency graph for ev-file-exporter.c:

Go to the source code of this file.

Functions

static void ev_file_exporter_default_init (EvFileExporterInterface *klass)
 
void ev_file_exporter_begin (EvFileExporter *exporter, EvFileExporterContext *fc)
 
void ev_file_exporter_begin_page (EvFileExporter *exporter)
 
void ev_file_exporter_do_page (EvFileExporter *exporter, EvRenderContext *rc)
 
void ev_file_exporter_end_page (EvFileExporter *exporter)
 
void ev_file_exporter_end (EvFileExporter *exporter)
 
EvFileExporterCapabilities ev_file_exporter_get_capabilities (EvFileExporter *exporter)
 

Function Documentation

void ev_file_exporter_begin ( EvFileExporter exporter,
EvFileExporterContext fc 
)

Definition at line 35 of file ev-file-exporter.c.

37 {
39 
40  iface->begin (exporter, fc);
41 }
void ev_file_exporter_begin_page ( EvFileExporter exporter)

Definition at line 44 of file ev-file-exporter.c.

45 {
47 
48  if (iface->begin_page)
49  iface->begin_page (exporter);
50 }
static void ev_file_exporter_default_init ( EvFileExporterInterface klass)
static

Definition at line 30 of file ev-file-exporter.c.

31 {
32 }
void ev_file_exporter_do_page ( EvFileExporter exporter,
EvRenderContext rc 
)

Definition at line 53 of file ev-file-exporter.c.

55 {
57 
58  iface->do_page (exporter, rc);
59 }

+ Here is the caller graph for this function:

void ev_file_exporter_end ( EvFileExporter exporter)

Definition at line 71 of file ev-file-exporter.c.

72 {
74 
75  iface->end (exporter);
76 }
void ev_file_exporter_end_page ( EvFileExporter exporter)

Definition at line 62 of file ev-file-exporter.c.

63 {
65 
66  if (iface->end_page)
67  iface->end_page (exporter);
68 }
EvFileExporterCapabilities ev_file_exporter_get_capabilities ( EvFileExporter exporter)

Definition at line 79 of file ev-file-exporter.c.

80 {
82 
83  return iface->get_capabilities (exporter);
84 }