From 89e3b040ea64f8cff3370592ba6e0b05247c8463 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 16 Jul 2011 11:44:42 +0200 Subject: [PATCH] Added functions RptCommon::rptpoint_new_with_values, RptCommon::rptsize_new_with_values, RptCommon::rptrotation_new_with_values and RptCommon::rptmargin_new_with_values. --- src/rptcommon.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++-- src/rptcommon.h | 7 ++++ 2 files changed, 90 insertions(+), 3 deletions(-) diff --git a/src/rptcommon.c b/src/rptcommon.c index aa9bbfd..af2ecaf 100644 --- a/src/rptcommon.c +++ b/src/rptcommon.c @@ -298,6 +298,25 @@ RptPoint return point; } +/** + * rpt_common_rptpoint_new_with_values: + * @x: + * @y: + * + * Returns: an new allocated #RptPoint struct. + */ +RptPoint +*rpt_common_rptpoint_new_with_values (gdouble x, gdouble y) +{ + RptPoint *point; + + point = rpt_common_rptpoint_new (); + point->x = x; + point->y = y; + + return point; +} + /** * rpt_common_get_position: * @xnode: an #xmlNode. @@ -358,6 +377,25 @@ RptSize return size; } +/** + * rpt_common_rptsize_new_with_values: + * @width: + * @height: + * + * Returns: an new allocated #RptSize struct. + */ +RptSize +*rpt_common_rptsize_new_with_values (gdouble width, gdouble height) +{ + RptSize *size; + + size = rpt_common_rptsize_new (); + size->width = width; + size->height = height; + + return size; +} + /** * rpt_common_get_size: * @xnode: an #xmlNode. @@ -376,9 +414,8 @@ RptSize height = xmlGetProp (xnode, (const xmlChar *)"height"); if (width != NULL && height != NULL) { - size = rpt_common_rptsize_new (); - size->width = strtod (width, NULL); - size->height = strtod (height, NULL); + size = rpt_common_rptsize_new_with_values (g_strtod (width, NULL), + g_strtod (height, NULL)); } return size; @@ -416,6 +453,23 @@ RptRotation return rotation; } +/** + * rpt_common_rptrotation_new_with_values: + * @angle: + * + * Returns: an new allocated #RptRotation struct. + */ +RptRotation +*rpt_common_rptrotation_new_with_values (gdouble angle) +{ + RptRotation *rotation; + + rotation = rpt_common_rptrotation_new (); + rotation->angle = angle; + + return rotation; +} + /** * rpt_common_get_rotation: * @xnode: an #xmlNode. @@ -473,6 +527,32 @@ RptMargin return margin; } +/** + * rpt_common_rptmargin_new_with_values: + * @top: + * @right: + * @bottom: + * @left: + * + * Returns: an new allocated #RptMargin struct. + */ +RptMargin +*rpt_common_rptmargin_new_with_values (gdouble top, + gdouble right, + gdouble bottom, + gdouble left) +{ + RptMargin *margin; + + margin = rpt_common_rptmargin_new (); + margin->top = top; + margin->right = right; + margin->bottom = bottom; + margin->left = left; + + return margin; +} + /** * rpt_common_get_margin: * @xnode: an #xmlNode. diff --git a/src/rptcommon.h b/src/rptcommon.h index ad1d813..0622d2a 100644 --- a/src/rptcommon.h +++ b/src/rptcommon.h @@ -194,21 +194,28 @@ eRptOutputType rpt_common_stroutputtype_to_enum (const gchar *output_type); const gchar *rpt_common_enum_to_stroutputtype (eRptOutputType output_type); RptPoint *rpt_common_rptpoint_new (void); +RptPoint *rpt_common_rptpoint_new_with_values (gdouble x, gdouble y); RptPoint *rpt_common_get_position (xmlNode *xnode); void rpt_common_set_position (xmlNode *xnode, const RptPoint *position); RptSize *rpt_common_rptsize_new (void); +RptSize *rpt_common_rptsize_new_with_values (gdouble width, gdouble height); RptSize *rpt_common_get_size (xmlNode *xnode); void rpt_common_set_size (xmlNode *xnode, const RptSize *size); RptRotation *rpt_common_rptrotation_new (void); +RptRotation *rpt_common_rptrotation_new_with_values (gdouble angle); RptRotation *rpt_common_get_rotation (xmlNode *xnode); void rpt_common_set_rotation (xmlNode *xnode, const RptRotation *rotation); RptMargin *rpt_common_rptmargin_new (void); +RptMargin *rpt_common_rptmargin_new_with_values (gdouble top, + gdouble right, + gdouble bottom, + gdouble left); RptMargin *rpt_common_get_margin (xmlNode *xnode); void rpt_common_set_margin (xmlNode *xnode, const RptMargin *margin); -- 2.49.0