Aggiunto il test per SolipaUtils::gtktreemodel_copy.
Aggiunti i file di Anjuta.
closes #37
--- /dev/null
+<?xml version="1.0"?>
+<anjuta>
+ <plugin name="Tools" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-tools:ATPPlugin"/>
+ </plugin>
+ <plugin name="Terminal" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-terminal:TerminalPlugin"/>
+ </plugin>
+ <plugin name="Code Snippets" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-snippets-manager:SnippetsManagerPlugin"/>
+ </plugin>
+ <plugin name="API Help" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-devhelp:AnjutaDevhelp"/>
+ </plugin>
+ <plugin name="Git" mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="anjuta-git:Git"/>
+ </plugin>
+</anjuta>
--- /dev/null
+
+[Anjuta]
+Maximized=1
+Geometry=1365x746+1+0
+
+[Project Manager]
+Shortcut=libsolipa//libsolipa//src//libsolipa.la%%%libsolipa//libsolipa//src//libsolipaooo.la%%%libsolipa//libsolipa//tests//allegato%%%libsolipa//libsolipa//tests//mail%%%libsolipa//libsolipa//tests//mail_get_addresses_from_string%%%libsolipa//libsolipa//tests//mailui%%%libsolipa//libsolipa//tests//ooo%%%libsolipa//libsolipa//tests//progresswindow%%%libsolipa//libsolipa//tests//utils%%%libsolipa//libsolipa//tests//utils_codfisc_piva%%%libsolipa//libsolipa//tests//utils_format_money%%%libsolipa//libsolipa//tests//utils_gdatetime%%%libsolipa//libsolipa//tests//utils_infobar%%%libsolipa//libsolipa//tests//utils_round
+Expand=libsolipa.la%%%libsolipa
+
+[Document Manager]
+bookmarks=<?xml version="1.0" encoding="UTF-8"?>\n<bookmarks/>\n
+
+[Execution]
+Run in terminal=2
+Working directories=file:///home/andreaz/files/comune/solipa/libsolipa
+
+[Build]
+Configuration list=1:Default:%%%1:Debug:Debug%%%1:Profiling:Profiling%%%1:Optimized:Optimized
+Selected Configuration=Default
+BuildArgs/Default=--enable-maintainer-mode
+BuildArgs/Debug=--enable-maintainer-mode 'CFLAGS=-g -O0' 'CXXFLAGS=-g -O0' 'JFLAGS=-g -O0' 'FFLAGS=-g -O0'
+BuildArgs/Profiling=--enable-maintainer-mode 'CFLAGS=-g -pg' 'CXXFLAGS=-g -pg' 'JFLAGS=-g -pg' 'FFLAGS=-g -pg'
+BuildArgs/Optimized=--enable-maintainer-mode 'CFLAGS=-O2' 'CXXFLAGS=-O2' 'JFLAGS=-O2' 'FFLAGS=-O2'
+
+[Debugger]
+Stop at beginning=2
--- /dev/null
+<?xml version="1.0"?>
+<dock-layout><layout name="__default__"><dock name="__dock_1" floating="no" width="-1" height="-1" floatx="0" floaty="0"><paned orientation="horizontal" locked="no" position="1008"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaDocumentManager" orientation="vertical" locked="no"/><item name="AnjutaDevhelpDisplay" orientation="vertical" locked="no"/><item name="AnjutaTerminal" orientation="vertical" locked="no"/></notebook><paned orientation="vertical" locked="no" position="336"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaProjectManager" orientation="vertical" locked="no"/><item name="AnjutaFileManager" orientation="vertical" locked="no"/></notebook><notebook orientation="vertical" locked="no" page="1"><item name="AnjutaDevhelpIndex" orientation="vertical" locked="no"/><item name="AnjutaSymbolDB" orientation="vertical" locked="no"/></notebook></paned></paned></dock></layout></dock-layout>
tests/utils_codfisc_piva
tests/utils_format_money
tests/utils_gdatetime
+tests/utils_gtktreemodel_copy
tests/utils_infobar
tests/utils_round
*.csv
--- /dev/null
+<?xml version="1.0"?>
+<anjuta>
+ <plugin name="GBF Project Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaProjectManager"/>
+ </plugin>
+ <plugin name= "Autotools backend"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Location"
+ value="am-project:AmpPlugin"/>
+ </plugin>
+ <plugin name="Symbol Browser"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaSymbolManager"/>
+ </plugin>
+ <plugin name="Make Build System"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaBuildable"/>
+ <require group="Build"
+ attribute="Supported-Build-Types"
+ value="make"/>
+ </plugin>
+ <plugin name="Task Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaTodo"/>
+ </plugin>
+ <plugin name="Debug Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaDebugManager"/>
+ </plugin>
+</anjuta>
return ret;
}
+static void
+solipa_gtktreemodel_copy_iter (GtkTreeModel *ret,
+ GtkTreeModel *model,
+ GtkTreeModel *model_child,
+ gboolean is_list_store,
+ guint cols,
+ GtkTreeIter *iter,
+ GtkTreeIter *iter_parent)
+{
+ GtkTreeIter iter_new;
+ GtkTreeIter iter_child;
+
+ guint col;
+
+ do
+ {
+ if (is_list_store)
+ {
+ gtk_list_store_append (GTK_LIST_STORE (ret), &iter_new);
+ }
+ else
+ {
+ gtk_tree_store_append (GTK_TREE_STORE (ret), &iter_new, iter_parent);
+ }
+
+ for (col = 0; col < cols; col++)
+ {
+ GValue gval = {0};
+
+ if (model_child != NULL)
+ {
+ gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &iter_child, iter);
+ gtk_tree_model_get_value (model_child, &iter_child, col, &gval);
+ }
+ else
+ {
+ gtk_tree_model_get_value (model, iter, col, &gval);
+ }
+
+ if (is_list_store)
+ {
+ gtk_list_store_set_value (GTK_LIST_STORE (ret), &iter_new, col, &gval);
+ }
+ else
+ {
+ gtk_tree_store_set_value (GTK_TREE_STORE (ret), &iter_new, col, &gval);
+ }
+
+ g_value_unset (&gval);
+ }
+
+ if (!is_list_store)
+ {
+ /* is_tree_store */
+ if (gtk_tree_model_iter_children (model, &iter_child, iter))
+ {
+ solipa_gtktreemodel_copy_iter (ret, model, model_child, is_list_store, cols, &iter_child, &iter_new);
+ }
+ }
+ } while (gtk_tree_model_iter_next (model, iter));
+}
+
GtkTreeModel
*solipa_gtktreemodel_copy (GtkTreeModel *model, gboolean only_schema)
{
GtkTreeModel *model_child;
GtkTreeIter iter;
- GtkTreeIter iter_child;
- GtkTreeIter iter_new;
ret = NULL;
{
if (gtk_tree_model_get_iter_first (model, &iter))
{
- do
- {
- gtk_list_store_append (GTK_LIST_STORE (ret), &iter_new);
- for (col = 0; col < cols; col++)
- {
- GValue gval = {0};
-
- if (model_child != NULL)
- {
- gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &iter_child, &iter);
- gtk_tree_model_get_value (model_child, &iter_child, col, &gval);
- }
- else
- {
- gtk_tree_model_get_value (model, &iter, col, &gval);
- }
- gtk_list_store_set_value (GTK_LIST_STORE (ret), &iter_new, col, &gval);
- g_value_unset (&gval);
- }
- } while (gtk_tree_model_iter_next (model, &iter));
+ solipa_gtktreemodel_copy_iter (ret, model, model_child, TRUE, cols, &iter, NULL);
}
}
}
if (!only_schema)
{
-
+ if (gtk_tree_model_get_iter_first (model, &iter))
+ {
+ solipa_gtktreemodel_copy_iter (ret, model, model_child, FALSE, cols, &iter, NULL);
+ }
}
}
else
utils_codfisc_piva \
utils_format_money \
utils_gdatetime \
+ utils_gtktreemodel_copy \
utils_infobar \
utils_round
--- /dev/null
+/*
+ * Copyright (C) 2011 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
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+GtkTreeModel *copia;
+
+guint id;
+gchar *cognome;
+gchar *nome;
+
+static void
+do_child (GtkTreeIter *iter)
+{
+ GtkTreeIter iter_child;
+
+ do
+ {
+ gtk_tree_model_get (copia, iter,
+ 0, &id,
+ 1, &cognome,
+ 2, &nome,
+ -1);
+ g_printf ("%d\t%s\t%s\n", id, cognome, nome);
+
+ if (gtk_tree_model_iter_children (copia, &iter_child, iter))
+ {
+ do_child (&iter_child);
+ }
+ } while (gtk_tree_model_iter_next (copia, iter));
+}
+
+int
+main (int argc, char *argv[])
+{
+ GtkTreeModel *model;
+ GtkTreeIter iter;
+ GtkTreeIter iter_child;
+
+ gtk_init (&argc, &argv);
+
+ /* copia di un LIST_STORE */
+ g_printf ("COPIA DEL LIST_STORE\n"
+ "====================\n");
+
+ model = GTK_TREE_MODEL (gtk_list_store_new (3,
+ G_TYPE_INT,
+ G_TYPE_STRING,
+ G_TYPE_STRING));
+
+ gtk_list_store_append (GTK_LIST_STORE (model), &iter);
+ gtk_list_store_set (GTK_LIST_STORE (model), &iter,
+ 0, 1,
+ 1, "Rossi",
+ 2, "Mario",
+ -1);
+ gtk_list_store_append (GTK_LIST_STORE (model), &iter);
+ gtk_list_store_set (GTK_LIST_STORE (model), &iter,
+ 0, 2,
+ 1, "Verdi",
+ 2, "Giuseppe",
+ -1);
+ gtk_list_store_append (GTK_LIST_STORE (model), &iter);
+ gtk_list_store_set (GTK_LIST_STORE (model), &iter,
+ 0, 3,
+ 1, "Bianchi",
+ 2, "Giovanna",
+ -1);
+
+ copia = solipa_gtktreemodel_copy (model, FALSE);
+
+ if (gtk_tree_model_get_iter_first (copia, &iter))
+ {
+ do
+ {
+ gtk_tree_model_get (copia, &iter,
+ 0, &id,
+ 1, &cognome,
+ 2, &nome,
+ -1);
+ g_printf ("%d\t%s\t%s\n", id, cognome, nome);
+ } while (gtk_tree_model_iter_next (copia, &iter));
+ }
+ else
+ {
+ g_error ("Copia del GTK_LIST_STORE vuota.");
+ }
+
+ /* copia di un TREE_STORE */
+ g_printf ("\n\nCOPIA DEL TREE_STORE\n"
+ "====================\n");
+
+ model = GTK_TREE_MODEL (gtk_tree_store_new (3,
+ G_TYPE_INT,
+ G_TYPE_STRING,
+ G_TYPE_STRING));
+
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter,
+ 0, 1,
+ 1, "Rossi",
+ 2, "Mario",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child, &iter);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child,
+ 0, 11,
+ 1, "- Rossi",
+ 2, "Annamaria",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child, &iter);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child,
+ 0, 12,
+ 1, "- Rossi",
+ 2, "Giancarlo",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter,
+ 0, 2,
+ 1, "Verdi",
+ 2, "Giuseppe",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child, &iter);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child,
+ 0, 21,
+ 1, "- Verdi",
+ 2, "Sandro",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter,
+ 0, 3,
+ 1, "Bianchi",
+ 2, "Giovanna",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child, &iter);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child,
+ 0, 31,
+ 1, "- Bianchi",
+ 2, "Rosalia",
+ -1);
+ GtkTreeIter iter_child_child;
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child_child, &iter_child);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child_child,
+ 0, 311,
+ 1, "-- Blu",
+ 2, "Rosso",
+ -1);
+ gtk_tree_store_append (GTK_TREE_STORE (model), &iter_child, &iter);
+ gtk_tree_store_set (GTK_TREE_STORE (model), &iter_child,
+ 0, 32,
+ 1, "- Bianchi",
+ 2, "Rosario",
+ -1);
+
+ copia = solipa_gtktreemodel_copy (model, FALSE);
+
+ if (gtk_tree_model_get_iter_first (copia, &iter))
+ {
+ do_child (&iter);
+ }
+ else
+ {
+ g_error ("Copia del GTK_TREE_STORE vuota.");
+ }
+
+ return 0;
+}