]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Aggiunta la funzione Titolo::get_by_id.
authorAndrea Zagli <azagli@libero.it>
Wed, 8 Feb 2017 15:15:28 +0000 (16:15 +0100)
committerAndrea Zagli <azagli@libero.it>
Wed, 8 Feb 2017 15:15:28 +0000 (16:15 +0100)
src/titolo.c
src/titolo.h

index 084fd16709be3f446d94c5232d5140c60a1ef93b..16a65d04b65b27f16d62bba7d588b5c3a64d6cf6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2017 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
@@ -202,6 +202,26 @@ GtkWidget
        return priv->w;
 }
 
+GHashTable
+*organigramma_titolo_get_by_id (OrganigrammaCommons *commons, gint id)
+{
+       GHashTable *ret;
+
+       gchar *sql;
+
+       g_return_val_if_fail (commons != NULL, NULL);
+       g_return_val_if_fail (id > 0, NULL);
+
+       sql = g_strdup_printf ("SELECT * FROM titoli WHERE id = %d",
+                              id);
+
+       ret = gdaex_data_model_row_to_hashtable_from_sql (commons->gdaex, sql, 0);
+
+       g_free (sql);
+
+       return ret;
+}
+
 /* PRIVATE */
 static void
 organigramma_titolo_carica (OrganigrammaTitolo *titolo)
index 99f5aed49c27a1747534ca4242c32f6b184c6035..f233808a3346cb541913d89863076a36e1c6bfda 100644 (file)
@@ -1,5 +1,5 @@
-/* 
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2017 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
@@ -59,6 +59,8 @@ OrganigrammaTitolo *organigramma_titolo_new (OrganigrammaCommons *commons, gint
 
 GtkWidget *organigramma_titolo_get_widget (OrganigrammaTitolo *titolo);
 
+GHashTable *organigramma_titolo_get_by_id (OrganigrammaCommons *commons, gint id);
+
 
 G_END_DECLS