Lines Matching refs:error

18 	GError *error = NULL;
19 DBusGConnection *connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
20 if (error) {
96 GError *error;
103 error = NULL;
105 &error);
109 error->message);
110 g_error_free (error);
127 inkscape_delete_all (DocumentInterface *doc, GError **error)
130 return org_inkscape_document_delete_all (proxy, error);
135 inkscape_call_verb (DocumentInterface *doc, const char * IN_verbid, GError **error)
138 return org_inkscape_document_call_verb(proxy, IN_verbid, error);
144 inkscape_rectangle (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error)
148 org_inkscape_document_rectangle (proxy, IN_x, IN_y, IN_width, IN_height, &OUT_object_name, error);
154 inkscape_ellipse (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_width, const gint IN_height, GError **error)
158 org_inkscape_document_ellipse (proxy, IN_x, IN_y, IN_width, IN_height, &OUT_object_name, error);
164 inkscape_polygon (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_radius, const gint IN_rotation, const gint IN_sides, GError **error)
168 org_inkscape_document_polygon (proxy, IN_cx, IN_cy, IN_radius, IN_rotation, IN_sides, &OUT_object_name, error);
174 inkscape_star (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r1, const gint IN_r2, const gdouble IN_arg1, const gdouble IN_arg2, const gint IN_sides, const gdouble IN_rounded, GError **error)
178 org_inkscape_document_star (proxy, IN_cx, IN_cy, IN_r1, IN_r2, IN_arg1, IN_arg2, IN_sides, IN_rounded, &OUT_object_name, error);
184 inkscape_spiral (DocumentInterface *doc, const gint IN_cx, const gint IN_cy, const gint IN_r, const gint IN_revolutions, GError **error)
188 org_inkscape_document_spiral (proxy, IN_cx, IN_cy, IN_r, IN_revolutions, &OUT_object_name, error);
194 inkscape_line (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_x2, const gint IN_y2, GError **error)
198 org_inkscape_document_line (proxy, IN_x, IN_y, IN_x2, IN_y2, &OUT_object_name, error);
204 inkscape_text (DocumentInterface *doc, const gint IN_x, const gint IN_y, const char * IN_text, GError **error)
208 org_inkscape_document_text (proxy, IN_x, IN_y, IN_text, &OUT_object_name, error);
214 inkscape_image (DocumentInterface *doc, const gint IN_x, const gint IN_y, const char * IN_text, GError **error)
218 org_inkscape_document_image (proxy, IN_x, IN_y, IN_text, &OUT_object_name, error);
224 inkscape_node (DocumentInterface *doc, const char * IN_svgtype, GError **error)
228 org_inkscape_document_node (proxy, IN_svgtype, &OUT_node_name, error);
234 inkscape_document_get_width (DocumentInterface *doc, GError **error)
238 org_inkscape_document_document_get_width (proxy, &OUT_val, error);
244 inkscape_document_get_height (DocumentInterface *doc, GError **error)
248 org_inkscape_document_document_get_height (proxy, &OUT_val, error);
254 inkscape_document_get_css (DocumentInterface *doc, GError **error)
258 org_inkscape_document_document_get_css (proxy, &OUT_css, error);
264 inkscape_document_set_css (DocumentInterface *doc, const char * IN_stylestring, GError **error)
267 return org_inkscape_document_document_set_css (proxy, IN_stylestring, error);
272 inkscape_document_merge_css (DocumentInterface *doc, const char * IN_stylestring, GError **error)
275 return org_inkscape_document_document_merge_css (proxy, IN_stylestring, error);
280 inkscape_document_resize_to_fit_selection (DocumentInterface *doc, GError **error)
283 return org_inkscape_document_document_resize_to_fit_selection (proxy, error);
288 inkscape_set_attribute (DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const char * IN_newval, GError **error)
291 return org_inkscape_document_set_attribute (proxy, IN_shape, IN_attribute, IN_newval, error);
296 inkscape_set_int_attribute (DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const gint IN_newval, GError **error)
299 return org_inkscape_document_set_int_attribute (proxy, IN_shape, IN_attribute, IN_newval, error);
304 inkscape_set_double_attribute (DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, const gdouble IN_newval, GError **error)
307 return org_inkscape_document_set_double_attribute (proxy, IN_shape, IN_attribute, IN_newval, error);
312 inkscape_get_attribute (DocumentInterface *doc, const char * IN_shape, const char * IN_attribute, GError **error)
316 org_inkscape_document_get_attribute (proxy, IN_shape, IN_attribute, &OUT_val, error);
322 inkscape_move (DocumentInterface *doc, const char * IN_shape, const gdouble IN_x, const gdouble IN_y, GError **error)
325 return org_inkscape_document_move (proxy, IN_shape, IN_x, IN_y, error);
330 inkscape_move_to (DocumentInterface *doc, const char * IN_shape, const gdouble IN_x, const gdouble IN_y, GError **error)
333 return org_inkscape_document_move_to (proxy, IN_shape, IN_x, IN_y, error);
338 inkscape_object_to_path (DocumentInterface *doc, const char * IN_objectname, GError **error)
341 return org_inkscape_document_object_to_path (proxy, IN_objectname, error);
346 inkscape_get_path (DocumentInterface *doc, const char * IN_shape, GError **error)
350 org_inkscape_document_get_path (proxy, IN_shape, &OUT_val, error);
356 inkscape_transform (DocumentInterface *doc, const char * IN_shape, const char * IN_transformstr, GError **error)
359 return org_inkscape_document_transform (proxy, IN_shape, IN_transformstr, error);
364 inkscape_get_css (DocumentInterface *doc, const char * IN_shape, GError **error)
368 org_inkscape_document_get_css (proxy, IN_shape, &OUT_css, error);
374 inkscape_modify_css (DocumentInterface *doc, const char * IN_shape, const char * IN_cssattrib, const char * IN_newval, GError **error)
377 return org_inkscape_document_modify_css (proxy, IN_shape, IN_cssattrib, IN_newval, error);
382 inkscape_merge_css (DocumentInterface *doc, const char * IN_shape, const char * IN_stylestring, GError **error)
385 return org_inkscape_document_merge_css (proxy, IN_shape, IN_stylestring, error);
390 inkscape_set_color (DocumentInterface *doc, const char * IN_shape, const gint IN_red, const gint IN_green, const gint IN_blue, const gboolean IN_fill, GError **error)
393 return org_inkscape_document_set_color (proxy, IN_shape, IN_red, IN_green, IN_blue, IN_fill, error);
398 inkscape_move_to_layer (DocumentInterface *doc, const char * IN_objectname, const char * IN_layername, GError **error)
401 return org_inkscape_document_move_to_layer (proxy, IN_objectname, IN_layername, error);
406 inkscape_get_node_coordinates (DocumentInterface *doc, const char * IN_shape, GError **error)
410 org_inkscape_document_get_node_coordinates (proxy, IN_shape, &OUT_points, error);
416 inkscape_save (DocumentInterface *doc, GError **error)
419 return org_inkscape_document_save (proxy, error);
424 inkscape_save_as (DocumentInterface *doc, const char * IN_pathname, GError **error)
427 return org_inkscape_document_save_as (proxy, IN_pathname, error);
432 inkscape_load (DocumentInterface *doc, const char * IN_pathname, GError **error)
435 return org_inkscape_document_load (proxy, IN_pathname, error);
440 inkscape_mark_as_unmodified (DocumentInterface *doc, GError **error)
443 return org_inkscape_document_mark_as_unmodified (proxy, error);
448 inkscape_close (DocumentInterface *doc, GError **error)
451 return org_inkscape_document_close (proxy, error);
456 inkscape_inkscape_exit (DocumentInterface *doc, GError **error)
459 return org_inkscape_document_exit (proxy, error);
464 inkscape_undo (DocumentInterface *doc, GError **error)
467 return org_inkscape_document_undo (proxy, error);
472 inkscape_redo (DocumentInterface *doc, GError **error)
475 return org_inkscape_document_redo (proxy, error);
480 inkscape_pause_updates (DocumentInterface *doc, GError **error)
483 return org_inkscape_document_pause_updates (proxy, error);
488 inkscape_resume_updates (DocumentInterface *doc, GError **error)
491 return org_inkscape_document_resume_updates (proxy, error);
496 inkscape_update (DocumentInterface *doc, GError **error)
499 return org_inkscape_document_update (proxy, error);
504 inkscape_selection_get (DocumentInterface *doc, GError **error)
508 org_inkscape_document_selection_get (proxy, &OUT_listy, error);
514 inkscape_selection_add (DocumentInterface *doc, const char * IN_name, GError **error)
517 return org_inkscape_document_selection_add (proxy, IN_name, error);
522 inkscape_selection_add_list (DocumentInterface *doc, const char ** IN_name, GError **error)
525 return org_inkscape_document_selection_add_list (proxy, IN_name, error);
530 inkscape_selection_set (DocumentInterface *doc, const char * IN_name, GError **error)
533 return org_inkscape_document_selection_set (proxy, IN_name, error);
538 inkscape_selection_set_list (DocumentInterface *doc, const char ** IN_name, GError **error)
541 return org_inkscape_document_selection_set_list (proxy, IN_name, error);
546 inkscape_selection_rotate (DocumentInterface *doc, const gint IN_angle, GError **error)
549 return org_inkscape_document_selection_rotate (proxy, IN_angle, error);
554 inkscape_selection_delete (DocumentInterface *doc, GError **error)
557 return org_inkscape_document_selection_delete (proxy, error);
562 inkscape_selection_clear (DocumentInterface *doc, GError **error)
565 return org_inkscape_document_selection_clear (proxy, error);
570 inkscape_select_all (DocumentInterface *doc, GError **error)
573 return org_inkscape_document_select_all (proxy, error);
578 inkscape_select_all_in_all_layers (DocumentInterface *doc, GError **error)
581 return org_inkscape_document_select_all_in_all_layers (proxy, error);
586 inkscape_selection_box (DocumentInterface *doc, const gint IN_x, const gint IN_y, const gint IN_x2, const gint IN_y2, const gboolean IN_replace, GError **error)
589 return org_inkscape_document_selection_box (proxy, IN_x, IN_y, IN_x2, IN_y2, IN_replace, error);
594 inkscape_selection_invert (DocumentInterface *doc, GError **error)
597 return org_inkscape_document_selection_invert (proxy, error);
602 inkscape_selection_group (DocumentInterface *doc, GError **error)
605 return org_inkscape_document_selection_group (proxy, error);
610 inkscape_selection_ungroup (DocumentInterface *doc, GError **error)
613 return org_inkscape_document_selection_ungroup (proxy, error);
618 inkscape_selection_cut (DocumentInterface *doc, GError **error)
621 return org_inkscape_document_selection_cut (proxy, error);
626 inkscape_selection_copy (DocumentInterface *doc, GError **error)
629 return org_inkscape_document_selection_copy (proxy, error);
634 inkscape_selection_paste (DocumentInterface *doc, GError **error)
637 return org_inkscape_document_selection_paste (proxy, error);
642 inkscape_selection_scale (DocumentInterface *doc, const gdouble IN_grow, GError **error)
645 return org_inkscape_document_selection_scale (proxy, IN_grow, error);
650 inkscape_selection_move (DocumentInterface *doc, const gdouble IN_x, const gdouble IN_y, GError **error)
653 return org_inkscape_document_selection_move (proxy, IN_x, IN_y, error);
658 inkscape_selection_move_to (DocumentInterface *doc, const gdouble IN_x, const gdouble IN_y, GError **error)
661 return org_inkscape_document_selection_move_to (proxy, IN_x, IN_y, error);
666 inkscape_selection_move_to_layer (DocumentInterface *doc, const char * IN_layer, GError **error)
669 return org_inkscape_document_selection_move_to_layer (proxy, IN_layer, error);
674 inkscape_selection_get_center (DocumentInterface *doc, GError **error)
678 org_inkscape_document_selection_get_center (proxy, &OUT_centerpoint, error);
684 inkscape_selection_to_path (DocumentInterface *doc, GError **error)
687 return org_inkscape_document_selection_to_path (proxy, error);
692 inkscape_selection_combine (DocumentInterface *doc, const char * IN_type, GError **error)
696 org_inkscape_document_selection_combine (proxy, IN_type, &OUT_newpaths, error);
702 inkscape_selection_change_level (DocumentInterface *doc, const char * IN_command, GError **error)
706 org_inkscape_document_selection_change_level (proxy, IN_command, &OUT_objectsmoved, error);
712 inkscape_layer_new (DocumentInterface *doc, GError **error)
716 org_inkscape_document_layer_new (proxy, &OUT_layername, error);
722 inkscape_layer_set (DocumentInterface *doc, const char * IN_layer, GError **error)
725 return org_inkscape_document_layer_set (proxy, IN_layer, error);
730 inkscape_layer_get_all (DocumentInterface *doc, GError **error)
734 org_inkscape_document_layer_get_all (proxy, &OUT_layers, error);
740 inkscape_layer_change_level (DocumentInterface *doc, const char * IN_command, GError **error)
744 org_inkscape_document_layer_change_level (proxy, IN_command, &OUT_layermoved, error);
750 inkscape_layer_next (DocumentInterface *doc, GError **error)
753 return org_inkscape_document_layer_next (proxy, error);
758 inkscape_layer_previous (DocumentInterface *doc, GError **error)
761 return org_inkscape_document_layer_previous (proxy, error);
769 GError *error = NULL;
771 result = rectangle (doc->proxy, 10, 10, 100, 100, &error);
774 //dbus_g_proxy_call(doc->proxy, "rectangle", &error, G_TYPE_INT, 100, G_TYPE_INT, 100, G_TYPE_INT, 100, G_TYPE_INT, 100, G_TYPE_INVALID, G_TYPE_INVALID);