Top |
gpointer | color | Read / Write |
char * | contents | Read / Write |
char * | modified | Read / Write |
char * | name | Read / Write |
EvPage * | page | Write / Construct Only |
GdkRGBA * | rgba | Read / Write |
gboolean | has-popup | Read / Write |
char * | label | Read / Write |
double | opacity | Read / Write |
gboolean | popup-is-open | Read / Write |
EvRectangle * | rectangle | Read / Write |
EvAnnotationTextIcon | icon | Read / Write |
gboolean | is-open | Read / Write |
EvAttachment * | attachment | Read / Write / Construct |
GInterface ╰── EvAnnotationMarkup GObject ╰── EvAnnotation ├── EvAnnotationAttachment ╰── EvAnnotationText
EvAnnotationText implements EvAnnotationMarkup.
EvAnnotationAttachment implements EvAnnotationMarkup.
EvAnnotationMarkup is implemented by EvAnnotationAttachment and EvAnnotationText.
EvAnnotationType
ev_annotation_get_annotation_type (EvAnnotation *annot
);
EvPage *
ev_annotation_get_page (EvAnnotation *annot
);
Get the page where annot
appears.
guint
ev_annotation_get_page_index (EvAnnotation *annot
);
Get the index of the page where annot
appears. Note that the index
is 0 based.
gboolean ev_annotation_equal (EvAnnotation *annot
,EvAnnotation *other
);
Compare annot
and other
.
const gchar *
ev_annotation_get_contents (EvAnnotation *annot
);
Get the contents of annot
. The contents of
annot
is the text that is displayed in the annotation, or an
alternate description of the annotation's content for non-text annotations
gboolean ev_annotation_set_contents (EvAnnotation *annot
,const gchar *contents
);
Set the contents of annot
. You can monitor
changes in the annotation's contents by connecting to
notify::contents signal of annot
.
const gchar *
ev_annotation_get_name (EvAnnotation *annot
);
Get the name of annot
. The name of the annotation is a string
that uniquely indenftifies annot
amongs all the annotations
in the same page.
gboolean ev_annotation_set_name (EvAnnotation *annot
,const gchar *name
);
Set the name of annot
.
You can monitor changes of the annotation name by connecting
to the notify::name signal on annot
.
const gchar *
ev_annotation_get_modified (EvAnnotation *annot
);
Get the last modification date of annot
.
gboolean ev_annotation_set_modified (EvAnnotation *annot
,const gchar *modified
);
Set the last modification date of annot
to modified
. To
set the last modification date using a gint64, use
ev_annotation_set_modified_from_time()
instead. You can monitor
changes to the last modification date by connecting to the
notify::modified signal on annot
.
gboolean ev_annotation_set_modified_from_time (EvAnnotation *annot
,gint64 utime
);
Set the last modification date of annot
to utime
. You can
monitor changes to the last modification date by connectin to the
notify::modified sinal on annot
.
For the time-format used, see ev_document_misc_format_date()
.
void ev_annotation_get_color (EvAnnotation *annot
,GdkColor *color
);
ev_annotation_get_color
has been deprecated since version 1.2.1 and should not be used in newly-written code.
Use ev_annotation_get_rgba()
instead.
Get the color of annot
.
gboolean ev_annotation_set_color (EvAnnotation *annot
,const GdkColor *color
);
ev_annotation_set_color
has been deprecated since version 1.2.1 and should not be used in newly-written code.
Use ev_annotation_set_rgba()
instead.
Set the color of the annotation to color
. You can monitor
changes to the annotation's color by connecting to
notify::color signal on annot
.
void ev_annotation_get_rgba (EvAnnotation *annot
,GdkRGBA *rgba
);
Gets the color of annot
.
Since: 1.2.1
gboolean ev_annotation_set_rgba (EvAnnotation *annot
,const GdkRGBA *rgba
);
Set the color of the annotation to rgba
.
Since: 1.2.1
const gchar *
ev_annotation_markup_get_label (EvAnnotationMarkup *markup
);
gboolean ev_annotation_markup_set_label (EvAnnotationMarkup *markup
,const gchar *label
);
gdouble
ev_annotation_markup_get_opacity (EvAnnotationMarkup *markup
);
gboolean ev_annotation_markup_set_opacity (EvAnnotationMarkup *markup
,gdouble opacity
);
gboolean
ev_annotation_markup_has_popup (EvAnnotationMarkup *markup
);
void ev_annotation_markup_get_rectangle (EvAnnotationMarkup *markup
,EvRectangle *ev_rect
);
gboolean ev_annotation_markup_set_rectangle (EvAnnotationMarkup *markup
,const EvRectangle *ev_rect
);
EvAnnotationTextIcon
ev_annotation_text_get_icon (EvAnnotationText *text
);
gboolean ev_annotation_text_set_icon (EvAnnotationText *text
,EvAnnotationTextIcon icon
);
gboolean ev_annotation_text_set_is_open (EvAnnotationText *text
,gboolean is_open
);
EvAnnotation * ev_annotation_attachment_new (EvPage *page
,EvAttachment *attachment
);
EvAttachment *
ev_annotation_attachment_get_attachment
(EvAnnotationAttachment *annot
);
gboolean ev_annotation_attachment_set_attachment (EvAnnotationAttachment *annot
,EvAttachment *attachment
);
“color”
property “color” gpointer
The colour of the annotation as a GdkColor.
EvAnnotation:color
has been deprecated since version 1.2.1 and should not be used in newly-written code.
Use “rgba” instead.
Owner: EvAnnotation
Flags: Read / Write
“contents”
property “contents” char *
The annotation contents.
Owner: EvAnnotation
Flags: Read / Write
Default value: NULL
“modified”
property “modified” char *
Last modified date as string.
Owner: EvAnnotation
Flags: Read / Write
Default value: NULL
“name”
property “name” char *
The annotation unique name.
Owner: EvAnnotation
Flags: Read / Write
Default value: NULL
“page”
property“page” EvPage *
The page wehere the annotation is.
Owner: EvAnnotation
Flags: Write / Construct Only
“rgba”
property “rgba” GdkRGBA *
The colour of the annotation as a GdkRGBA.
Owner: EvAnnotation
Flags: Read / Write
Since: 1.2.1
“has-popup”
property “has-popup” gboolean
Whether the markup annotation has a popup window associated.
Owner: EvAnnotationMarkup
Flags: Read / Write
Default value: TRUE
“label”
property “label” char *
Label of the markup annotation.
Owner: EvAnnotationMarkup
Flags: Read / Write
Default value: NULL
“opacity”
property “opacity” double
Opacity of the markup annotation.
Owner: EvAnnotationMarkup
Flags: Read / Write
Allowed values: >= 0
Default value: 1
“popup-is-open”
property “popup-is-open” gboolean
Whether the popup associated to the markup annotation is open.
Owner: EvAnnotationMarkup
Flags: Read / Write
Default value: FALSE
“rectangle”
property“rectangle” EvRectangle *
The Rectangle of the popup associated to the markup annotation.
Owner: EvAnnotationMarkup
Flags: Read / Write
“icon”
property “icon” EvAnnotationTextIcon
The icon fo the text annotation.
Owner: EvAnnotationText
Flags: Read / Write
Default value: EV_ANNOTATION_TEXT_ICON_NOTE
“is-open”
property “is-open” gboolean
Whether text annot is initially open.
Owner: EvAnnotationText
Flags: Read / Write
Default value: FALSE
“attachment”
property“attachment” EvAttachment *
The attachment of the annotation.
Owner: EvAnnotationAttachment
Flags: Read / Write / Construct