latex-pstricks-out.cpp revision d1bde559850436556ebee2e70e10f1cfc8aff636
/*
* Authors:
* Michael Forbes <miforbes@mbhs.edu>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 2004 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "latex-pstricks-out.h"
#include "sp-path.h"
#include <print.h>
#include "extension/system.h"
#include "extension/print.h"
#include "extension/db.h"
#include "display/nr-arena.h"
#include "display/display-forward.h"
#include "sp-root.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
LatexOutput::LatexOutput (void) // The null constructor
{
return;
}
LatexOutput::~LatexOutput (void) //The destructor
{
return;
}
bool LatexOutput::check(Inkscape::Extension::Extension * /*module*/)
{
bool result = Inkscape::Extension::db.get("org.inkscape.print.latex") != NULL;
return result;
}
void LatexOutput::save(Inkscape::Extension::Output * /*mod2*/, SPDocument *doc, gchar const *filename)
{
SPPrintContext context;
unsigned int ret = 0;
doc->ensureUpToDate();
Inkscape::Extension::Print *mod = Inkscape::Extension::get_print(SP_MODULE_KEY_PRINT_LATEX);
const gchar * oldconst = mod->get_param_string("destination");
gchar * oldoutput = g_strdup(oldconst);
mod->set_param_string("destination", filename);
/* Start */
context.module = mod;
/* fixme: This has to go into module constructor somehow */
// Create new arena
mod->base = doc->getRoot();
mod->arena = NRArena::create();
mod->dkey = SPItem::display_key_new (1);
mod->root = (mod->base)->invoke_show (mod->arena, mod->dkey, SP_ITEM_SHOW_DISPLAY);
/* Print document */
ret = mod->begin (doc);
(mod->base)->invoke_print (&context);
ret = mod->finish ();
/* Release arena */
(mod->base)->invoke_hide (mod->dkey);
mod->base = NULL;
mod->root = NULL; // should have been deleted by invoke_hide
nr_object_unref ((NRObject *) mod->arena);
mod->arena = NULL;
/* end */
mod->set_param_string("destination", oldoutput);
g_free(oldoutput);
return;
}
#include "clear-n_.h"
/**
\brief A function allocate a copy of this function.
This is the definition of postscript out. This function just
calls the extension system with the memory allocated XML that
describes the data.
*/
void
LatexOutput::init (void)
{
Inkscape::Extension::build_from_mem(
"<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
"<name>" N_("LaTeX Output") "</name>\n"
"<id>org.inkscape.output.latex</id>\n"
"<output>\n"
"<extension>.tex</extension>\n"
"<mimetype>text/x-tex</mimetype>\n"
"<filetypename>" N_("LaTeX With PSTricks macros (*.tex)") "</filetypename>\n"
"<filetypetooltip>" N_("LaTeX PSTricks File") "</filetypetooltip>\n"
"</output>\n"
"</inkscape-extension>", new LatexOutput());
return;
}
} } } /* namespace Inkscape, Extension, Implementation */
/*
Local Variables:
mode:cpp
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :