24 #include "ev-document-type-builtins.h"
71 #define EV_LINK_DEST_GET_PRIVATE(object) \
72 (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_LINK_DEST, EvLinkDestPrivate))
79 return self->priv->type;
87 return self->priv->page;
99 return self->priv->top;
104 gboolean *change_left)
111 return self->priv->left;
119 return self->priv->bottom;
127 return self->priv->right;
132 gboolean *change_zoom)
139 return self->priv->zoom;
147 return self->priv->named;
155 return self->priv->page_label;
162 GParamSpec *param_spec)
170 g_value_set_enum (value, self->priv->type);
173 g_value_set_int (value, self->priv->page);
176 g_value_set_double (value, self->priv->top);
179 g_value_set_double (value, self->priv->left);
182 g_value_set_double (value, self->priv->bottom);
185 g_value_set_double (value, self->priv->left);
188 g_value_set_double (value, self->priv->zoom);
191 g_value_set_uint (value, self->priv->change);
194 g_value_set_string (value, self->priv->named);
197 g_value_set_string (value, self->priv->page_label);
200 G_OBJECT_WARN_INVALID_PROPERTY_ID (
object,
211 GParamSpec *param_spec)
217 self->priv->type = g_value_get_enum (value);
220 self->priv->page = g_value_get_int (value);
223 self->priv->top = g_value_get_double (value);
226 self->priv->left = g_value_get_double (value);
229 self->priv->bottom = g_value_get_double (value);
232 self->priv->right = g_value_get_double (value);
235 self->priv->zoom = g_value_get_double (value);
238 self->priv->change = g_value_get_uint (value);
241 self->priv->named = g_value_dup_string (value);
244 self->priv->page_label = g_value_dup_string (value);
247 G_OBJECT_WARN_INVALID_PROPERTY_ID (
object,
262 g_free (priv->
named);
270 G_OBJECT_CLASS (ev_link_dest_parent_class)->finalize (
object);
278 ev_link_dest->priv->named = NULL;
284 GObjectClass *g_object_class;
286 g_object_class = G_OBJECT_CLASS (ev_link_dest_class);
295 g_object_class_install_property (g_object_class,
297 g_param_spec_enum (
"type",
299 "The destination type",
300 EV_TYPE_LINK_DEST_TYPE,
303 G_PARAM_CONSTRUCT_ONLY |
304 G_PARAM_STATIC_STRINGS));
305 g_object_class_install_property (g_object_class,
307 g_param_spec_int (
"page",
309 "The destination page",
314 G_PARAM_CONSTRUCT_ONLY |
315 G_PARAM_STATIC_STRINGS));
316 g_object_class_install_property (g_object_class,
318 g_param_spec_double (
"left",
320 "The left coordinate",
325 G_PARAM_CONSTRUCT_ONLY |
326 G_PARAM_STATIC_STRINGS));
327 g_object_class_install_property (g_object_class,
329 g_param_spec_double (
"top",
331 "The top coordinate",
336 G_PARAM_CONSTRUCT_ONLY |
337 G_PARAM_STATIC_STRINGS));
338 g_object_class_install_property (g_object_class,
340 g_param_spec_double (
"bottom",
342 "The bottom coordinate",
347 G_PARAM_CONSTRUCT_ONLY |
348 G_PARAM_STATIC_STRINGS));
349 g_object_class_install_property (g_object_class,
351 g_param_spec_double (
"right",
353 "The right coordinate",
358 G_PARAM_CONSTRUCT_ONLY |
359 G_PARAM_STATIC_STRINGS));
361 g_object_class_install_property (g_object_class,
363 g_param_spec_double (
"zoom",
370 G_PARAM_CONSTRUCT_ONLY |
371 G_PARAM_STATIC_STRINGS));
372 g_object_class_install_property (g_object_class,
374 g_param_spec_uint (
"change",
376 "Wether top, left, and zoom should be changed",
381 G_PARAM_CONSTRUCT_ONLY |
382 G_PARAM_STATIC_STRINGS));
383 g_object_class_install_property (g_object_class,
385 g_param_spec_string (
"named",
387 "The named destination",
390 G_PARAM_CONSTRUCT_ONLY |
391 G_PARAM_STATIC_STRINGS));
392 g_object_class_install_property (g_object_class,
394 g_param_spec_string (
"page-label",
396 "The label of the destination page",
399 G_PARAM_CONSTRUCT_ONLY |
400 G_PARAM_STATIC_STRINGS));
417 gboolean change_left,
419 gboolean change_zoom)
470 gboolean change_left)
518 "page_label", page_label,
544 if (a->priv->type != b->priv->type)
547 switch (a->priv->type) {
549 return a->priv->page == b->priv->page;
552 return a->priv->page == b->priv->page &&
553 a->priv->left == b->priv->left &&
554 a->priv->top == b->priv->top &&
555 a->priv->zoom == b->priv->zoom &&
556 a->priv->change == b->priv->change;
559 return a->priv->page == b->priv->page;
562 return a->priv->page == b->priv->page &&
563 a->priv->top == b->priv->top &&
564 a->priv->change == b->priv->change;
567 return a->priv->page == b->priv->page &&
568 a->priv->left == b->priv->left &&
569 a->priv->change == b->priv->change;
572 return a->priv->page == b->priv->page &&
573 a->priv->left == b->priv->left &&
574 a->priv->top == b->priv->top &&
575 a->priv->right == b->priv->right &&
576 a->priv->bottom == b->priv->bottom &&
577 a->priv->change == b->priv->change;
580 return !g_strcmp0 (a->priv->named, b->priv->named);
583 return !g_strcmp0 (a->priv->page_label, b->priv->page_label);