]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunte SolipaUtils::gvalue_new_* (closes #934).
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 12 Aug 2015 10:40:49 +0000 (12:40 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 12 Aug 2015 10:40:49 +0000 (12:40 +0200)
src/utils.c
src/utils.h

index 6201b2250c3d3be3fa1b472b81cc967b4407a22d..3967309527e1599ee0cfe97b1180796075b293d7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2014 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2015 Andrea Zagli <azagli@libero.it>
  *
  * 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.
index 1176a647e6623fb45519c361fa8050f597af5a55..b6bd2726bbef3995c0f64b6c9d02d161baecc749 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2014 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2015 Andrea Zagli <azagli@libero.it>
  *
  * 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);