Sotto windows non esiste la funzione mkdtemp.
Sotto windows non funzionano solipa_mail_send e solipa_gtktreemodel_to_csv_gui.
PKG_CHECK_MODULES(SOLIPA, [gobject-2.0 >= 2.24.0
glib-2.0 >= 2.24.0
libgdaex >= 0.2.2
- camel-provider-1.2 >= 2.30
+ camel-provider-1.2 >= 2.24
gtk+-2.0 >= 2.20
gio-2.0 >= 2.24])
</object>
</child>
</object>
+ <object class="GtkListStore" id="lstore_treemodel_campi">
+ <columns>
+ <!-- column-name selezionato -->
+ <column type="gboolean"/>
+ <!-- column-name id -->
+ <column type="guint"/>
+ <!-- column-name nome -->
+ <column type="gchararray"/>
+ </columns>
+ </object>
<object class="GtkDialog" id="diag_gtktreemodel_to_csv">
<property name="border_width">5</property>
<property name="title" translatable="yes">Esporta CSV</property>
<object class="GtkFileChooserWidget" id="filechooserwidget1">
<property name="visible">True</property>
<property name="orientation">vertical</property>
+ <property name="local_only">False</property>
<property name="use_preview_label">False</property>
- <property name="preview_widget_active">False</property>
<property name="action">save</property>
- <property name="local_only">False</property>
+ <property name="preview_widget_active">False</property>
</object>
</child>
</object>
<action-widget response="-5">button2</action-widget>
</action-widgets>
</object>
- <object class="GtkListStore" id="lstore_treemodel_campi">
- <columns>
- <!-- column-name selezionato -->
- <column type="gboolean"/>
- <!-- column-name id -->
- <column type="guint"/>
- <!-- column-name nome -->
- <column type="gchararray"/>
- </columns>
- </object>
</interface>
LIBS = $(SOLIPA_LIBS)
AM_CPPFLAGS = $(SOLIPA_CFLAGS) \
- -DGUIDIR=\""$(guidir)"\"
+ -DGUIDIR=\""$(guidir)"\" \
+ -DG_LOG_DOMAIN=\"Solipa\"
lib_LTLIBRARIES = libsolipa.la
#include <glib.h>
#include <glib-object.h>
-#include <libsolipa/solipa.h>
+#include "solipa.h"
G_BEGIN_DECLS
g_warning ("Not service: %s", camel_exception_get_description (ex));
return;
}
+
gboolean ret = camel_service_connect (trans, ex);
- if (camel_exception_is_set(ex))
+ if (camel_exception_is_set (ex))
{
g_warning ("Not connected: %s", camel_exception_get_description (ex));
goto noconnect;
#include <camel/camel.h>
-#include <libsolipa/solipa.h>
+#include "solipa.h"
G_BEGIN_DECLS
#include <gtk/gtk.h>
#include "solipa.h"
+#include "utils.h"
static void solipa_class_init (SolipaClass *class);
static void solipa_init (Solipa *solipa);
priv = SOLIPA_GET_PRIVATE (solipa);
/* creo la directory temporanea per camel */
- camel_tmpdir = mkdtemp (g_build_filename (g_get_tmp_dir (), g_strdup ("solipa-camel-XXXXXX"), NULL));
+ camel_tmpdir = g_mkdtemp (g_build_filename (g_get_tmp_dir (), g_strdup ("solipa-camel-XXXXXX"), NULL));
/* inizializzo camel */
camel_init (camel_tmpdir, FALSE);
gchar *moddir;
gchar *p;
- moddir = g_win32_get_package_installation_directory_of_module (NULL);
+ moddir = g_win32_get_package_installation_directory_of_module (NULL);
- p = strrchr (moddir, G_DIR_SEPARATOR);
- if (p != NULL
- && (g_ascii_strcasecmp (p + 1, "src") == 0
- || g_ascii_strcasecmp (p + 1, ".libs") == 0))
+ p = strrchr (moddir, G_DIR_SEPARATOR);
+ if (p != NULL
+ && (g_ascii_strcasecmp (p + 1, "src") == 0
+ || g_ascii_strcasecmp (p + 1, ".libs") == 0))
{
- solipa->guidir = g_strdup (GUIDIR);
+ priv->guidir = g_strdup (GUIDIR);
}
else
{
- solipa->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
+ priv->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
}
#else
priv = SOLIPA_GET_PRIVATE (solipa);
- return g_strdup (priv->guifile);
+ return (const gchar *)g_strdup (priv->guifile);
}
GtkBuilder
builder = solipa_get_gtkbuilder (solipa);
+ if (!GTK_IS_BUILDER (builder))
+ {
+ g_warning ("GtkBuilder not initialized.");
+ return;
+ }
+
error = NULL;
gtk_builder_add_objects_from_file (builder,
solipa_get_guifile (solipa),
"toggled", G_CALLBACK (solipa_fixed_toggled), (gpointer)store);
g_signal_connect (gtk_builder_get_object (builder, "button3"),
- "clicked", G_CALLBACK (solipa_on_btn_unselect_all_clicked), (gpointer *)store);
+ "clicked", G_CALLBACK (solipa_on_btn_unselect_all_clicked), (gpointer)store);
g_signal_connect (gtk_builder_get_object (builder, "button4"),
- "clicked", G_CALLBACK (solipa_on_btn_select_all_clicked), (gpointer *)store);
+ "clicked", G_CALLBACK (solipa_on_btn_select_all_clicked), (gpointer)store);
gtk_list_store_clear (store);
return ret;
}
+
+/**
+ * This function is copied from
+ * http://bugzilla.gnome.org/show_bug.cgi?id=524831.
+ *
+ * If/when this function gets added to glib, it can be removed from
+ * sources.
+ *
+ *
+ * g_mkdtemp:
+ * @tmpl: template directory name
+ *
+ * Creates a temporary directory. See the mkdtemp() documentation
+ * on most UNIX-like systems.
+ *
+ * The parameter is a string that should follow the rules for
+ * mkdtemp() templates, i.e. contain the string "XXXXXX". g_mkdtemp()
+ * is slightly more flexible than mkdtemp() in that the sequence does
+ * not have to occur at the very end of the template. The X string
+ * will be modified to form the name of a directory that didn't
+ * already exist. The string should be in the GLib file name
+ * encoding. Most importantly, on Windows it should be in UTF-8.
+ *
+ * Return value: If a temporary directory was successfully created,
+ * @tmpl will be returned with the XXXXXX string modified in such a
+ * way as to make the path unique. In case of errors, %NULL is
+ * returned.
+ */
+gchar *
+g_mkdtemp (gchar *tmpl)
+{
+ static const char letters[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+ static const int NLETTERS = sizeof (letters) - 1;
+ static int counter = 0;
+ char *XXXXXX;
+ GTimeVal tv;
+ glong value;
+ int count;
+
+ /* find the last occurrence of "XXXXXX" */
+ XXXXXX = g_strrstr (tmpl, "XXXXXX");
+
+ if (!XXXXXX || strncmp (XXXXXX, "XXXXXX", 6))
+ {
+ errno = EINVAL;
+ return NULL;
+ }
+
+ /* Get some more or less random data. */
+ g_get_current_time (&tv);
+ value = (tv.tv_usec ^ tv.tv_sec) + counter++;
+
+ for (count = 0; count < 100; value += 7777, ++count)
+ {
+ glong v = value;
+
+ /* Fill in the random bits. */
+ XXXXXX[0] = letters[v % NLETTERS];
+ v /= NLETTERS;
+ XXXXXX[1] = letters[v % NLETTERS];
+ v /= NLETTERS;
+ XXXXXX[2] = letters[v % NLETTERS];
+ v /= NLETTERS;
+ XXXXXX[3] = letters[v % NLETTERS];
+ v /= NLETTERS;
+ XXXXXX[4] = letters[v % NLETTERS];
+ v /= NLETTERS;
+ XXXXXX[5] = letters[v % NLETTERS];
+
+ /* tmpl is in UTF-8 on Windows, thus use g_mkdir() */
+ if (g_mkdir (tmpl, 0700) == 0)
+ return tmpl;
+
+ if (errno != EEXIST)
+ /* Any other error will apply also to other names we might
+ * try, and there are 2^32 or so of them, so give up now.
+ */
+ return NULL;
+ }
+
+ /* We got out of the loop because we ran out of combinations to try. */
+ errno = EEXIST;
+ return NULL;
+}
#include <gtk/gtk.h>
-#include <libsolipa/solipa.h>
+#include "solipa.h"
G_BEGIN_DECLS
gchar *solipa_format_money (gdouble number, gint decimals, gboolean with_currency_symbol);
+gchar *g_mkdtemp (gchar *tmpl);
+
G_END_DECLS