Scribus
Open source desktop publishing at your fingertips
svgimport.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef IMPORTSVG_H
8 #define IMPORTSVG_H
9 
10 // Brings in <Python.h> first
11 #include "cmdvar.h"
12 
14 PyDoc_STRVAR(scribus_placevec__doc__,
15 QT_TR_NOOP("placeVectorFile(\"filename\", x, y)\n\
16 \n\
17 Places the Vectorgrapics \"filename\" onto the current page,\n\
18 x and y specify the coordinate of the topleft corner of the graphic placed on the page\n\
19 \n\
20 If loading was successful, the selection contains the imported grapic\n\
21 "));
23 PyObject *scribus_placevec(PyObject * /*self*/, PyObject* args);
24 
26 PyDoc_STRVAR(scribus_placesvg__doc__,
27 QT_TR_NOOP("placeSVG(\"filename\", x, y)\n\
28 \n\
29 Places the SVG \"filename\" onto the current page,\n\
30 x and y specify the coordinate of the topleft corner of the SVG placed on the page\n\
31 \n\
32 If loading was successful, the selection contains the imported SVG\n\
33 "));
35 //PyObject *scribus_placesvg(PyObject * /*self*/, PyObject* args);
36 
38 PyDoc_STRVAR(scribus_placeeps__doc__,
39 QT_TR_NOOP("placeEPS(\"filename\", x, y)\n\
40 \n\
41 Places the EPS \"filename\" onto the current page,\n\
42 x and y specify the coordinate of the topleft corner of the EPS placed on the page\n\
43 \n\
44 If loading was successful, the selection contains the imported EPS\n\
45 "));
47 //PyObject *scribus_placeeps(PyObject * /*self*/, PyObject* args);
48 
50 PyDoc_STRVAR(scribus_placesxd__doc__,
51 QT_TR_NOOP("placeSXD(\"filename\", x, y)\n\
52 \n\
53 Places the SXD \"filename\" onto the current page,\n\
54 x and y specify the coordinate of the topleft corner of the SXD placed on the page\n\
55 \n\
56 If loading was successful, the selection contains the imported SXD\n\
57 "));
59 //PyObject *scribus_placesxd(PyObject * /*self*/, PyObject* args);
60 
62 PyDoc_STRVAR(scribus_placeodg__doc__,
63 QT_TR_NOOP("placeODG(\"filename\", x, y)\n\
64 \n\
65 Places the ODG \"filename\" onto the current page,\n\
66 x and y specify the coordinate of the topleft corner of the ODG placed on the page\n\
67 \n\
68 If loading was successful, the selection contains the imported ODG\n\
69 "));
71 //PyObject *scribus_placeodg(PyObject * /*self*/, PyObject* args);
72 
73 #endif