Top |
Functions
PopplerAction * | poppler_action_copy () |
void | poppler_action_free () |
PopplerDest * | poppler_dest_copy () |
void | poppler_dest_free () |
Types and Values
PopplerAction | |
PopplerDest | |
struct | PopplerActionAny |
struct | PopplerActionGotoDest |
struct | PopplerActionGotoRemote |
struct | PopplerActionLaunch |
struct | PopplerActionUri |
struct | PopplerActionNamed |
struct | PopplerActionMovie |
struct | PopplerActionRendition |
struct | PopplerActionOCGState |
struct | PopplerActionJavascript |
enum | PopplerActionType |
enum | PopplerDestType |
enum | PopplerActionMovieOperation |
PopplerActionLayer | |
enum | PopplerActionLayerAction |
Functions
poppler_action_copy ()
PopplerAction *
poppler_action_copy (PopplerAction *action
);
Copies action
, creating an identical PopplerAction.
poppler_dest_copy ()
PopplerDest *
poppler_dest_copy (PopplerDest *dest
);
Copies dest
, creating an identical PopplerDest.
Types and Values
PopplerDest
typedef struct { PopplerDestType type; int page_num; double left; double bottom; double right; double top; double zoom; gchar *named_dest; guint change_left : 1; guint change_top : 1; guint change_zoom : 1; } PopplerDest;
Data structure for holding a destination
Members
PopplerDestType |
type of destination |
|
page number |
||
left coordinate |
||
bottom coordinate |
||
right coordinate |
||
top coordinate |
||
scale factor |
||
gchar * |
name of the destination (POPPLER_DEST_NAMED only) |
|
guint |
whether left coordinate should be changed |
|
guint |
whether top coordinate should be changed |
|
guint |
whether scale factor should be changed |
struct PopplerActionGotoDest
struct PopplerActionGotoDest { PopplerActionType type; gchar *title; PopplerDest *dest; };
struct PopplerActionGotoRemote
struct PopplerActionGotoRemote { PopplerActionType type; gchar *title; gchar *file_name; PopplerDest *dest; };
struct PopplerActionLaunch
struct PopplerActionLaunch { PopplerActionType type; gchar *title; gchar *file_name; gchar *params; };
struct PopplerActionUri
struct PopplerActionUri { PopplerActionType type; gchar *title; char *uri; };
struct PopplerActionNamed
struct PopplerActionNamed { PopplerActionType type; gchar *title; gchar *named_dest; };
struct PopplerActionMovie
struct PopplerActionMovie { PopplerActionType type; gchar *title; PopplerActionMovieOperation operation; PopplerMovie *movie; };
struct PopplerActionRendition
struct PopplerActionRendition { PopplerActionType type; gchar *title; gint op; PopplerMedia *media; };
struct PopplerActionOCGState
struct PopplerActionOCGState { PopplerActionType type; gchar *title; GList *state_list; };
struct PopplerActionJavascript
struct PopplerActionJavascript { PopplerActionType type; gchar *title; gchar *script; };
enum PopplerActionType
Action types
enum PopplerDestType
Destination types
Members
unknown destination |
||
go to page with coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom |
||
go to page with its contents magnified just enough to fit the entire page within the window both horizontally and vertically |
||
go to page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window |
||
go to page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window |
||
go to page with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and top entirely within the window both horizontally and vertically |
||
go to page with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically |
||
go to page with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window |
||
go to page with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window |
||
got to page specified by a name. See |
PopplerActionLayer
typedef struct { PopplerActionLayerAction action; GList *layers; } PopplerActionLayer;
Action to perform over a list of layers