![]() |
PhoenixInkscape
0.8.0
Batch convert SVG to PNG with Inkscape
|
#include <map>
#include "PPath.h"
Go to the source code of this file.
Classes | |
struct | POutoutMode |
Output mode of the html backend. More... | |
Macros | |
#define | SLIDE_RECOVER_FILE "_slide_recover.slide" |
Define the name of the file which contains the formulae and the path to the created file. | |
Typedefs | |
typedef std::map< PPath, PPath > | PMapSlide |
Map of the formulae generated by the ptex2html which can be reused by other PLatexObj which have the same formula. | |
Functions | |
bool | pinkscape_isSlideKnown (POutoutMode &outputMode, const PPath &outputSlide, const PString &slideContent) |
Check if the slide we are going to save was already saved (with the same content) or not. | |
void | pinkscape_loadSlideMap (PMapSlide &mapFormula, const PPath &baseOutputName) |
Load the map file of all the formulae if it exists. | |
void | pinkscape_saveSlideMap (const PMapSlide &mapFormula, const PPath &baseOutputName) |
Save the map file of the formulae to avoid extra latex call. | |
#define SLIDE_RECOVER_FILE "_slide_recover.slide" |
Define the name of the file which contains the formulae and the path to the created file.
Definition at line 14 of file pinkscape_slide.h.
Referenced by pinkscape_loadSlideMap(), and pinkscape_saveSlideMap().
typedef std::map<PPath,PPath> PMapSlide |
Map of the formulae generated by the ptex2html which can be reused by other PLatexObj which have the same formula.
Definition at line 17 of file pinkscape_slide.h.
bool pinkscape_isSlideKnown | ( | POutoutMode & | outputMode, |
const PPath & | outputSlide, | ||
const PString & | slideContent ) |
Check if the slide we are going to save was already saved (with the same content) or not.
[out] | outputMode | : output mode to be checked and/or updated |
outputSlide | : output file name of the current slide | |
slideContent | : content of the slide in svg |
Definition at line 37 of file pinkscape_slide.cpp.
References POutoutMode::mapSlide.
Referenced by saveSlides().
void pinkscape_loadSlideMap | ( | PMapSlide & | mapFormula, |
const PPath & | baseOutputName ) |
Load the map file of all the formulae if it exists.
[out] | mapFormula | : map of formulae to be loaded to avoid calling latex too much |
Definition at line 19 of file pinkscape_slide.cpp.
References SLIDE_RECOVER_FILE.
Referenced by processFileSvg().
void pinkscape_saveSlideMap | ( | const PMapSlide & | mapFormula, |
const PPath & | baseOutputName ) |
Save the map file of the formulae to avoid extra latex call.
[out] | mapFormula | : map of formulae to be saved |
Definition at line 27 of file pinkscape_slide.cpp.
References SLIDE_RECOVER_FILE.
Referenced by processFileSvg().