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

index e9a3310ae74859a6237f85d8f74fde8d81c065ea..50caad2cd4015fda04e84ef398bc3bfd4a95919b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2013-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_ruolo_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 ruoli 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_ruolo_carica (OrganigrammaRuolo *ruolo)
index c8f9b2e0cbde5357aeca4d89b20091e89303c07a..0d199a9f5547acd0f61ab1bad71fd44fa5e6cd83 100644 (file)
@@ -1,5 +1,5 @@
-/* 
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-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 @@ OrganigrammaRuolo *organigramma_ruolo_new (OrganigrammaCommons *commons, gint id
 
 GtkWidget *organigramma_ruolo_get_widget (OrganigrammaRuolo *ruolo);
 
+GHashTable *organigramma_ruolo_get_by_id (OrganigrammaCommons *commons, gint id);
+
 
 G_END_DECLS