guint ooo_port;
gboolean dialog_response;
+
+ PyObject *m_main;
+ PyObject *dict;
};
G_DEFINE_TYPE (SolipaOOO, solipa_ooo, G_TYPE_OBJECT)
gboolean
solipa_ooo_apri_documento (SolipaOOO *ooo, const gchar *filename)
{
- PyRun_SimpleString (g_strdup_printf ("document = desktop.loadComponentFromURL(\"file:///%s\", \"_default\", 0, ())\n", filename));
+ PyObject *obj;
- /* TODO ritornare TRUE/FALSE se document è stato creato o meno */
+ SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
+
+ PyRun_SimpleString (g_strdup_printf ("document = desktop.loadComponentFromURL(\"file:///%s\", \"_default\", 0, ())\n", filename));
- return TRUE;
+ /* ritorna TRUE/FALSE se document è stato creato o meno */
+ obj = PyDict_GetItemString (priv->dict, "document");
+ if (obj == NULL)
+ {
+ g_warning ("Impossibile aprire il documento «%s».", filename);
+ return FALSE;
+ }
+ else
+ {
+ return TRUE;
+ }
}
void
gchar *_search;
gchar *_replace;
+ PyObject *obj;
+
+ SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
+
_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 ("search = document.createSearchDescriptor()\n");
+ /* controllo se SearchDescriptor esiste o no */
+ obj = PyDict_GetItemString (priv->dict, "search");
+ if (obj == NULL)
+ {
+ PyRun_SimpleString ("search = document.createSearchDescriptor()\n");
+ }
PyRun_SimpleString (g_strdup_printf (
"search.SearchString = u\"%s\"\n"
FILE *pipa;
- PyObject *m_main;
- PyObject *dict;
PyObject *obj;
gchar *ooo_path;
/* apro python */
Py_Initialize ();
- m_main = PyImport_AddModule ("__main__");
- dict = PyModule_GetDict (m_main);
+ priv->m_main = PyImport_AddModule ("__main__");
+ priv->dict = PyModule_GetDict (priv->m_main);
#ifdef G_OS_WIN32
"resolver = local.ServiceManager.createInstanceWithContext(\"com.sun.star.bridge.UnoUrlResolver\", local)\n"
);
- /* TODO controllare se OpenOffice è già in ascolto */
- PyRun_SimpleString (g_strdup_printf ("context = resolver.resolve(\"uno:socket,host=localhost,port=%d;urp;StarOffice.ComponentContext\")\n", priv->ooo_port));
+ /* controllo se OpenOffice è già in ascolto */
+ PyRun_SimpleString (g_strdup_printf ("context = resolver.resolve(\"uno:socket,host=localhost,port=%d;urp;StarOffice.ComponentContext\")\n",
+ priv->ooo_port));
- obj = PyDict_GetItemString (dict, "context");
+ obj = PyDict_GetItemString (priv->dict, "context");
if (obj == NULL)
{
gtk_main_iteration ();
}
- obj = PyDict_GetItemString (dict, "context");
+ obj = PyDict_GetItemString (priv->dict, "context");
if (obj != NULL || priv->dialog_response) break;
g_usleep (1000000);
return FALSE;
}
- obj = PyDict_GetItemString (dict, "context");
+ obj = PyDict_GetItemString (priv->dict, "context");
if (obj == NULL)
{
dialog = gtk_message_dialog_new (priv->transient,
PyRun_SimpleString ("desktop = context.ServiceManager.createInstanceWithContext(\"com.sun.star.frame.Desktop\", context)\n");
/* ritorno TRUE/FALSE se desktop è stato creato o meno */
- obj = PyDict_GetItemString (dict, "desktop");
+ obj = PyDict_GetItemString (priv->dict, "desktop");
if (obj == NULL)
{