From 0416356a615d5e787fd36afbbbf64c524dc52dbc Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 12 Aug 2015 12:40:49 +0200 Subject: [PATCH] Aggiunte SolipaUtils::gvalue_new_* (closes #934). --- src/utils.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- src/utils.h | 7 ++++++- 2 files changed, 55 insertions(+), 2 deletions(-) diff --git a/src/utils.c b/src/utils.c index 6201b22..3967309 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2014 Andrea Zagli + * Copyright (C) 2010-2015 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -2005,6 +2005,54 @@ solipa_compare_version (const gchar *ver1, const gchar *ver2, const gchar *delim return 0; } +GValue +*solipa_gvalue_new_int (int i) +{ + GValue *gval; + + gval = g_new0 (GValue, 1); + g_value_init (gval, G_TYPE_INT); + g_value_set_int (gval, i); + + return gval; +} + +GValue +*solipa_gvalue_new_string (const gchar *str) +{ + GValue *gval; + + gval = g_new0 (GValue, 1); + g_value_init (gval, G_TYPE_STRING); + g_value_set_string (gval, str); + + return gval; +} + +GValue +*solipa_gvalue_new_boolean (gboolean b) +{ + GValue *gval; + + gval = g_new0 (GValue, 1); + g_value_init (gval, G_TYPE_BOOLEAN); + g_value_set_boolean (gval, b); + + return gval; +} + +GValue +*solipa_gvalue_new_float (gfloat f) +{ + GValue *gval; + + gval = g_new0 (GValue, 1); + g_value_init (gval, G_TYPE_FLOAT); + g_value_set_float (gval, f); + + return gval; +} + /** * This function is copied from * http://bugzilla.gnome.org/show_bug.cgi?id=524831. diff --git a/src/utils.h b/src/utils.h index 1176a64..b6bd272 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2014 Andrea Zagli + * Copyright (C) 2010-2015 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -107,6 +107,11 @@ void solipa_apri_collegamento (GtkWindow *transient, const gchar *indirizzo); int solipa_compare_version (const gchar *ver1, const gchar *ver2, const gchar *delimiters, guint *part); +GValue *solipa_gvalue_new_int (int i); +GValue *solipa_gvalue_new_string (const gchar *str); +GValue *solipa_gvalue_new_boolean (gboolean b); +GValue *solipa_gvalue_new_float (gfloat f); + gchar *g_mkdtemp (gchar *tmpl); -- 2.49.0