|
| void | canImport (void fileName, void nameFilter) |
| | Implementation from RFileImporterAdapter.
|
| |
| void | createArc (void ox, void oy, void x, void y, void rx, void ry, void angle, void isLarge, void sweep) |
| |
| void | createBezier (void x1, void y1, void px1, void py1, void px2, void py2, void x2, void y2) |
| | Imports a cubic spline with the given start point, control points and ent point.
|
| |
| void | createBezier2 (void x1, void y1, void px, void py, void x2, void y2) |
| |
| void | createLine (void x1, void y1, void x2, void y2) |
| |
| void | groupEnd () |
| |
| void | importCircle (void x, void y, void r) |
| |
| void | importEllipse (void x, void y, void rx, void ry) |
| |
| void | importFile (void fileName) |
| |
| void | importGroup (void name) |
| |
| void | importLine (void x1, void y1, void x2, void y2) |
| |
| void | importPath (void dData) |
| | Parses the given path data string and imports the lines, arcs and splines from the path.
|
| |
| void | importPolygon (void pointsData, void open) |
| |
| void | importRectangle (void x, void y, void w, void h) |
| |
| void | importShape (void shape) |
| |
| void | preImportObject (void obj) |
| |
| void | setStyle (void s) |
| | Sets the current style to apply to all imported entities.
|
| |
| void | setTransform (void t) |
| | Sets the current QTransform to apply to all imported entities.
|
| |
| void | SvgImporter (void document, void resolution) |
| |
Very basic SVG import implementation.
- Returns
- QTransform object from given transform attribute string. Only supports a few SVG tags.
- Todo
- Use a 3rd party library to fully support SVG.