{
GtkWindow *transient;
+ gboolean visible;
+
gchar *ooo_path;
gchar *ooo_soffice;
guint ooo_port;
PyObject *m_main;
PyObject *dict;
+ PyObject *search;
};
G_DEFINE_TYPE (SolipaOOO, solipa_ooo, G_TYPE_OBJECT)
{
SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (solipa_ooo);
+ priv->m_main = NULL;
+ priv->dict = NULL;
+ priv->search = NULL;
+
priv->ooo_port = 8100;
}
* @ooo_path:
* @ooo_soffice:
* @ooo_port:
+ * @visible:
*
* Returns: the newly created #SolipaOOO object.
*/
*solipa_ooo_new (GtkWindow *transient,
const gchar *ooo_path,
const gchar *ooo_soffice,
- guint ooo_port)
+ guint ooo_port,
+ gboolean visible)
{
SolipaOOO *solipa_ooo;
SolipaOOOPrivate *priv;
priv = SOLIPA_OOO_GET_PRIVATE (solipa_ooo);
+ priv->visible = visible;
priv->transient = transient;
/* TODO controllare i valori */
_replace = g_strjoinv ("\\\"", g_strsplit (_replace, "\"", -1));
/* controllo se SearchDescriptor esiste o no */
- obj = PyDict_GetItemString (priv->dict, "search");
- if (obj == NULL)
+ if (priv->search == NULL)
{
- PyRun_SimpleString ("search = document.createSearchDescriptor()\n");
+ priv->search = PyDict_GetItemString (priv->dict, "search");
+ if (priv->search == NULL)
+ {
+ PyRun_SimpleString ("search = document.createSearchDescriptor()\n");
+ priv->search = PyDict_GetItemString (priv->dict, "search");
+ if (priv->search == NULL)
+ {
+ g_warning ("Unable to create Search object.");
+ return;
+ }
+ }
}
PyRun_SimpleString (g_strdup_printf (
#ifdef G_OS_WIN32
pipa = popen (g_strdup_printf ("tasklist | findstr /i soffice.bin"), "r");
#else
- pipa = popen (g_strdup_printf ("pidof soffice.bin", priv->ooo_soffice), "r");
+ pipa = popen (g_strdup_printf ("pidof soffice.bin"), "r");
#endif
if (pipa != NULL)
pipa = popen (g_strconcat ("\"",
priv->ooo_soffice,
- g_strdup_printf (" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore -invisible\"", priv->ooo_port),
+ g_strdup_printf (" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore %s\"", priv->ooo_port, priv->visible ? "-invisible" : "-headless"),
NULL),
"r");
pipa = popen (g_strconcat ("\"",
priv->ooo_soffice,
- g_strdup_printf ("\" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore -invisible", priv->ooo_port),
+ g_strdup_printf ("\" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore %s", priv->ooo_port, priv->visible ? "-invisible" : "-headless"),
NULL),
"r");
return TRUE;
}
+
+void
+solipa_ooo_chiudi_documento (SolipaOOO *ooo)
+{
+ solipa_ooo_exec (ooo, "document.dispose()\n");
+}