cairo-renderer-pdf-out.cpp revision 4b1e20ea55d30511ebd789a258e84f11f256184f
/*
* A quick hack to use the Cairo renderer to write out a file. This
* then makes 'save as...' PDF.
*
* Authors:
* Ted Gould <ted@gould.cx>
* Ulf Erikson <ulferikson@users.sf.net>
*
* Copyright (C) 2004-2006 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_CAIRO_PDF
#include "cairo-renderer-pdf-out.h"
#include "cairo-render-context.h"
#include "cairo-renderer.h"
#include <print.h>
#include "display/nr-arena.h"
#include "display/nr-arena-item.h"
#include "display/canvas-bpath.h"
#include "sp-item.h"
#include "sp-root.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
bool
{
return FALSE;
return TRUE;
}
static bool
{
/* Start */
bool pageBoundingBox = TRUE;
// we want to export the given item only
}
else {
// we want to export the entire document from root
}
if (!base)
return false;
/* Create new arena */
/* Create renderer and context */
if(ret) {
/* Render document */
if (ret) {
}
}
/* Release arena */
delete renderer;
return ret;
}
/**
\brief This function calls the output module with the filename
\param mod unused
\param doc Document to be saved
\param uri Filename to save to (probably will end in .pdf)
The most interesting thing that this function does is just attach
an '>' on the front of the filename. This is the syntax used to
tell the printing system to save to file.
*/
void
{
unsigned int ret;
return;
int level = 0;
try {
// if((new_level != NULL) && (g_ascii_strcasecmp("PDF-1.x", new_level) == 0))
// level = 1;
}
catch(...) {
// g_warning("Parameter <PDFversion> might not exist");
}
bool new_textToPath = FALSE;
try {
}
catch(...) {
g_warning("Parameter <textToPath> might not exist");
}
bool new_blurToBitmap = FALSE;
try {
}
catch(...) {
g_warning("Parameter <blurToBitmap> might not exist");
}
int new_bitmapResolution = 72;
try {
}
catch(...) {
g_warning("Parameter <resolution> might not exist");
}
try {
}
catch(...) {
g_warning("Parameter <exportId> might not exist");
}
bool new_exportDrawing = FALSE;
try {
}
catch(...) {
g_warning("Parameter <areaDrawing> might not exist");
}
bool new_exportCanvas = FALSE;
try {
}
catch(...) {
g_warning("Parameter <exportCanvas> might not exist");
}
gchar * final_name;
if (!ret)
}
#include "clear-n_.h"
/**
\brief A function allocate a copy of this function.
This is the definition of Cairo PDF out. This function just
calls the extension system with the memory allocated XML that
describes the data.
*/
void
CairoRendererPdfOutput::init (void)
{
"<name>Portable Document Format</name>\n"
"<id>org.inkscape.output.pdf.cairorenderer</id>\n"
"</param>\n"
"<param name=\"textToPath\" gui-text=\"" N_("Convert texts to paths") "\" type=\"boolean\">false</param>\n"
"<param name=\"blurToBitmap\" gui-text=\"" N_("Rasterize filter effects") "\" type=\"boolean\">true</param>\n"
"<param name=\"resolution\" gui-text=\"" N_("Preferred resolution (DPI) of bitmaps") "\" type=\"int\" min=\"72\" max=\"2400\">90</param>\n"
"<param name=\"areaDrawing\" gui-text=\"" N_("Export drawing, not page") "\" type=\"boolean\">false</param>\n"
"<param name=\"exportId\" gui-text=\"" N_("Limit export to the object with ID") "\" type=\"string\"></param>\n"
"<output>\n"
"<extension>.pdf</extension>\n"
"<mimetype>application/pdf</mimetype>\n"
"<filetypename>Portable Document Format (*.pdf)</filetypename>\n"
"<filetypetooltip>PDF File</filetypetooltip>\n"
"</output>\n"
"</inkscape-extension>", new CairoRendererPdfOutput());
return;
}
} } } /* namespace Inkscape, Extension, Internal */
#endif /* HAVE_CAIRO_PDF */