/* TODO controllare i valori */
priv->ooo_path = g_strdup (ooo_path);
- priv->ooo_soffice = g_strdup (ooo_soffice);
+
+ if (ooo_soffice == NULL)
+ {
+ priv->ooo_soffice = g_strdup ("soffice");
+ }
+ else
+ {
+ priv->ooo_soffice = g_strdup (ooo_soffice);
+ }
solipa_ooo_apri_openoffice (solipa_ooo);
void
solipa_ooo_string_replace (SolipaOOO *ooo, const gchar *search, const gchar *replace)
{
+ gchar *_search;
+ gchar *_replace;
+
+ _search = g_strdup (search);
+ _replace = g_strdup (replace);
+
+ _search = g_strjoinv ("\\\"", g_strsplit (_search, "\"", -1));
+ _replace = g_strjoinv ("\\\"", g_strsplit (_replace, "\"", -1));
+
/* TODO controllare se SearchDescriptor esiste o no */
- PyRun_SimpleString (g_strdup_printf ("search = document.createSearchDescriptor()\n"
+ PyRun_SimpleString ("search = document.createSearchDescriptor()\n");
+
+ PyRun_SimpleString (g_strdup_printf (
"search.SearchString = u\"%s\"\n"
"found = document.findFirst(search)\n"
"found.String = string.replace(found.String, u\"%s\", u\"%s\")\n",
- search,
- search,
- replace));
+ _search,
+ _search,
+ _replace));
}
/* PRIVATE */
/* chiudo le eventuali sessioni di openoffice attive */
#ifdef G_OS_WIN32
- pipa = popen ("taskkill /T /F /IM soffice.bin", "r");
+ pipa = popen (g_strdup_printf ("taskkill /T /F /IM %s.bin", priv->ooo_soffice), "r");
#else
- pipa = popen ("killall soffice.bin", "r");
+ pipa = popen (g_strdup_printf ("killall %s.bin", priv->ooo_soffice), "r");
#endif
pclose (pipa);
/* apro openoffice in ascolto */
+#ifdef G_OS_WIN32
+
gchar *curdir = g_get_current_dir ();
chdir (g_build_filename (priv->ooo_path, "program", NULL));
-#ifdef G_OS_WIN32
pipa = popen (g_strconcat ("\"",
priv->ooo_soffice,
" -accept=\"socket,host=localhost,port=8100;urp;\" -no-restore -invisible\"",
NULL),
"r");
+
+ chdir (curdir);
+ g_free (curdir);
+
#else
+
pipa = popen (g_strconcat ("\"",
priv->ooo_soffice,
"\" -accept=\"socket,host=localhost,port=8100;urp;\" -no-restore -invisible",
NULL),
"r");
-#endif
- chdir (curdir);
- g_free (curdir);
+#endif
while (gtk_events_pending ())
{
m_main = PyImport_AddModule ("__main__");
dict = PyModule_GetDict (m_main);
+#ifdef G_OS_WIN32
+
ooo_path = g_strjoinv ("\\\\", g_strsplit (priv->ooo_path, "\\", -1));
PyRun_SimpleString (g_strdup_printf (
"import os\n"
ooo_path,
g_strjoinv ("%20", g_strsplit (g_strjoinv ("/", g_strsplit (priv->ooo_path, "\\", -1)), " ", -1)))
);
+
+#endif
+
PyRun_SimpleString ("import uno\n"
"import string\n"
"local = uno.getComponentContext()\n"
gtk_main_iteration ();
}
+ g_usleep (5000000);
do
{
PyRun_SimpleString ("context = resolver.resolve(\"uno:socket,host=localhost,port=8100;urp;StarOffice.ComponentContext\")\n");
obj = PyDict_GetItemString (dict, "context");
if (obj != NULL || priv->dialog_response) break;
+ g_usleep (1000000);
} while (TRUE);
gtk_widget_destroy (dialog);
- if (priv->dialog_response) return FALSE;
+ if (priv->dialog_response)
+ {
+ return FALSE;
+ }
obj = PyDict_GetItemString (dict, "context");
if (obj == NULL)
--- /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 <ooo.h>
+
+GtkWidget *w;
+
+SolipaOOO *ooo;
+
+gboolean
+on_w_delete_event (GtkWidget *widget,
+ GdkEvent *event,
+ gpointer user_data)
+{
+ return FALSE;
+}
+
+int
+main (int argc, char *argv[])
+{
+ GtkWidget *infobar;
+
+ gtk_init (&argc, &argv);
+
+ w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ g_signal_connect (w, "delete-event", G_CALLBACK (on_w_delete_event), NULL);
+ g_signal_connect (w, "destroy", gtk_main_quit, NULL);
+
+ gtk_widget_show (w);
+
+ ooo = solipa_ooo_new (GTK_WINDOW (w),
+ NULL,
+ NULL);
+
+ if (ooo == NULL)
+ {
+ g_error ("Unable to create SolipaOOO.");
+ }
+
+ solipa_ooo_apri_documento (ooo, argv[1]);
+
+ solipa_ooo_string_replace (ooo, "{prg::replace}", "\"blah blah blah\"");
+
+ gtk_main ();
+
+ return 0;
+}