Update suitable examples and tests to use blank mode
[shapes.git] / source / pdfimport.h
blob07209f13571687f79f692e077f5abf2aaaf46260
1 /* This file is part of Shapes.
3 * Shapes is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * any later version.
8 * Shapes is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with Shapes. If not, see <http://www.gnu.org/licenses/>.
16 * Copyright 2008 Henrik Tidefelt
19 #pragma once
21 #include "SimplePDF_decls.h"
22 #include "Shapes_Lang_decls.h"
24 #include "simplepdfi.h"
26 namespace Shapes
28 namespace Kernel
31 class Import
33 std::list< RefCountPtr< SimplePDF::PDF_in > > importSources_;
34 public:
35 Import( );
37 RefCountPtr< const std::vector< RefCountPtr< const Shapes::Lang::XObject > > > addPagesAsXObjects( RefCountPtr< SimplePDF::PDF_in > pdfi );
38 void importBtexEtexThings( RefCountPtr< SimplePDF::PDF_in > pdfi, std::map< std::string, RefCountPtr< const Shapes::Lang::XObject > > * dstMap, const std::string & setupCodeHash );
40 void free( );
42 private:
43 static double pdfNameToDouble( RefCountPtr< SimplePDF::PDF_Object > nameObject );