/* * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. * The Inkscape extension code is covered by this copyright, but the * rest is covered by the one bellow. * * Authors: * Ted Gould * Abhishek Sharma * * Copyright (C) 2006 Authors * * Released under GNU GPL, read the file 'COPYING' for more information * */ /* libwpg * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org) * Copyright (C) 2005 Fridrich Strba (fridrich.strba@bluewin.ch) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * For further information visit http://libwpg.sourceforge.net */ /* "This product is not manufactured, approved, or supported by * Corel Corporation or Corel Corporation Limited." */ #include #include "config.h" #ifdef WITH_LIBWPG #include "wpg-input.h" #include "extension/system.h" #include "extension/input.h" #include "document.h" #include // Take a guess and fallback to 0.1.x if no configure has run #if !defined(WITH_LIBWPG01) && !defined(WITH_LIBWPG02) #define WITH_LIBWPG01 1 #endif #include "libwpg/libwpg.h" #if WITH_LIBWPG01 #include "libwpg/WPGStreamImplementation.h" #elif WITH_LIBWPG02 #include "libwpd-stream/libwpd-stream.h" #endif using namespace libwpg; namespace Inkscape { namespace Extension { namespace Internal { SPDocument *WpgInput::open(Inkscape::Extension::Input * /*mod*/, const gchar * uri) { #if WITH_LIBWPG01 WPXInputStream* input = new libwpg::WPGFileStream(uri); #elif WITH_LIBWPG02 WPXInputStream* input = new WPXFileStream(uri); #endif if (input->isOLEStream()) { #if WITH_LIBWPG01 WPXInputStream* olestream = input->getDocumentOLEStream(); #elif WITH_LIBWPG02 WPXInputStream* olestream = input->getDocumentOLEStream("PerfectOffice_MAIN"); #endif if (olestream) { delete input; input = olestream; } } if (!WPGraphics::isSupported(input)) { //! \todo Dialog here // fprintf(stderr, "ERROR: Unsupported file format (unsupported version) or file is encrypted!\n"); // printf("I'm giving up not supported\n"); delete input; return NULL; } #if WITH_LIBWPG01 libwpg::WPGString output; #elif WITH_LIBWPG02 WPXString output; #endif if (!libwpg::WPGraphics::generateSVG(input, output)) { delete input; return NULL; } //printf("I've got a doc: \n%s", painter.document.c_str()); SPDocument * doc = SPDocument::createNewDocFromMem(output.cstr(), strlen(output.cstr()), TRUE); delete input; return doc; } #include "clear-n_.h" void WpgInput::init(void) { Inkscape::Extension::build_from_mem( "\n" "" N_("WPG Input") "\n" "org.inkscape.input.wpg\n" "\n" ".wpg\n" "image/x-wpg\n" "" N_("WordPerfect Graphics (*.wpg)") "\n" "" N_("Vector graphics format used by Corel WordPerfect") "\n" "\n" "", new WpgInput()); } // init } } } /* namespace Inkscape, Extension, Implementation */ #endif /* WITH_LIBWPG */ /* Local Variables: mode:c++ 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 :