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-selection.h File Reference
#include <glib-object.h>
#include <glib.h>
#include <gdk/gdk.h>
#include "ev-document.h"
+ Include dependency graph for ev-selection.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _EvSelectionInterface
 

Macros

#define EV_TYPE_SELECTION   (ev_selection_get_type ())
 
#define EV_SELECTION(o)   (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_SELECTION, EvSelection))
 
#define EV_SELECTION_IFACE(k)   (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SELECTION, EvSelectionInterface))
 
#define EV_IS_SELECTION(o)   (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_SELECTION))
 
#define EV_IS_SELECTION_IFACE(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SELECTION))
 
#define EV_SELECTION_GET_IFACE(inst)   (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_SELECTION, EvSelectionInterface))
 

Typedefs

typedef struct _EvSelection EvSelection
 
typedef struct
_EvSelectionInterface 
EvSelectionInterface
 

Enumerations

enum  EvSelectionStyle { EV_SELECTION_STYLE_GLYPH, EV_SELECTION_STYLE_WORD, EV_SELECTION_STYLE_LINE }
 

Functions

GType ev_selection_get_type (void) G_GNUC_CONST
 
void ev_selection_render_selection (EvSelection *selection, EvRenderContext *rc, cairo_surface_t **surface, EvRectangle *points, EvRectangle *old_points, EvSelectionStyle style, GdkColor *text, GdkColor *base)
 
gchar * ev_selection_get_selected_text (EvSelection *selection, EvPage *page, EvSelectionStyle style, EvRectangle *points)
 
cairo_region_t * ev_selection_get_selection_region (EvSelection *selection, EvRenderContext *rc, EvSelectionStyle style, EvRectangle *points)
 

Macro Definition Documentation

#define EV_IS_SELECTION (   o)    (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_SELECTION))

Definition at line 38 of file ev-selection.h.

#define EV_IS_SELECTION_IFACE (   k)    (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_SELECTION))

Definition at line 39 of file ev-selection.h.

#define EV_SELECTION (   o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_SELECTION, EvSelection))

Definition at line 36 of file ev-selection.h.

#define EV_SELECTION_GET_IFACE (   inst)    (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_SELECTION, EvSelectionInterface))

Definition at line 40 of file ev-selection.h.

#define EV_SELECTION_IFACE (   k)    (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_SELECTION, EvSelectionInterface))

Definition at line 37 of file ev-selection.h.

#define EV_TYPE_SELECTION   (ev_selection_get_type ())

Definition at line 35 of file ev-selection.h.

Typedef Documentation

typedef struct _EvSelection EvSelection

Definition at line 48 of file ev-selection.h.

Definition at line 49 of file ev-selection.h.

Enumeration Type Documentation

Enumerator
EV_SELECTION_STYLE_GLYPH 
EV_SELECTION_STYLE_WORD 
EV_SELECTION_STYLE_LINE 

Definition at line 42 of file ev-selection.h.

Function Documentation

gchar* ev_selection_get_selected_text ( EvSelection selection,
EvPage page,
EvSelectionStyle  style,
EvRectangle points 
)

Definition at line 55 of file ev-selection.c.

59 {
60  EvSelectionInterface *iface = EV_SELECTION_GET_IFACE (selection);
61 
62  return iface->get_selected_text (selection, page, style, points);
63 }

+ Here is the caller graph for this function:

cairo_region_t* ev_selection_get_selection_region ( EvSelection selection,
EvRenderContext rc,
EvSelectionStyle  style,
EvRectangle points 
)

Definition at line 66 of file ev-selection.c.

70 {
71  EvSelectionInterface *iface = EV_SELECTION_GET_IFACE (selection);
72 
73  if (!iface->get_selection_region)
74  return NULL;
75 
76  return iface->get_selection_region (selection, rc, style, points);
77 }

+ Here is the caller graph for this function:

GType ev_selection_get_type ( void  )
void ev_selection_render_selection ( EvSelection selection,
EvRenderContext rc,
cairo_surface_t **  surface,
EvRectangle points,
EvRectangle old_points,
EvSelectionStyle  style,
GdkColor *  text,
GdkColor *  base 
)

Definition at line 33 of file ev-selection.c.

41 {
42  EvSelectionInterface *iface = EV_SELECTION_GET_IFACE (selection);
43 
44  if (!iface->render_selection)
45  return;
46 
47  iface->render_selection (selection, rc,
48  surface,
49  points, old_points,
50  style,
51  text, base);
52 }

+ Here is the caller graph for this function: