|
|
|
/*
|
|
|
|
* Copyright (C) 2015-2018 Département de l'Instruction Publique (DIP-SEM)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Open Education Foundation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2013 Groupement d'Intérêt Public pour
|
|
|
|
* l'Education Numérique en Afrique (GIP ENA)
|
|
|
|
*
|
|
|
|
* This file is part of OpenBoard.
|
|
|
|
*
|
|
|
|
* OpenBoard is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3 of the License,
|
|
|
|
* with a specific linking exception for the OpenSSL project's
|
|
|
|
* "OpenSSL" library (or with modified versions of it that use the
|
|
|
|
* same license as the "OpenSSL" library).
|
|
|
|
*
|
|
|
|
* OpenBoard 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with OpenBoard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef UBSVGSUBSETADAPTOR_H_
|
|
|
|
#define UBSVGSUBSETADAPTOR_H_
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QtXml>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
|
|
|
|
#include "frameworks/UBGeometryUtils.h"
|
|
|
|
|
|
|
|
class UBGraphicsSvgItem;
|
|
|
|
class UBGraphicsPolygonItem;
|
|
|
|
class UBGraphicsPixmapItem;
|
|
|
|
class UBGraphicsPDFItem;
|
|
|
|
class UBGraphicsWidgetItem;
|
|
|
|
class UBGraphicsMediaItem;
|
|
|
|
class UBGraphicsVideoItem;
|
|
|
|
class UBGraphicsAudioItem;
|
|
|
|
class UBGraphicsAppleWidgetItem;
|
|
|
|
class UBGraphicsW3CWidgetItem;
|
|
|
|
class UBGraphicsTextItem;
|
|
|
|
class UBGraphicsCurtainItem;
|
|
|
|
class UBGraphicsRuler;
|
|
|
|
class UBGraphicsAxes;
|
|
|
|
class UBGraphicsCompass;
|
|
|
|
class UBGraphicsProtractor;
|
|
|
|
class UBGraphicsScene;
|
|
|
|
class UBDocumentProxy;
|
|
|
|
class UBGraphicsStroke;
|
|
|
|
class UBPersistenceManager;
|
|
|
|
class UBGraphicsTriangle;
|
|
|
|
class UBGraphicsCache;
|
|
|
|
class UBGraphicsGroupContainerItem;
|
|
|
|
class UBGraphicsStrokesGroup;
|
|
|
|
|
|
|
|
class UBSvgSubsetAdaptor
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
UBSvgSubsetAdaptor() {;}
|
|
|
|
virtual ~UBSvgSubsetAdaptor() {;}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static UBGraphicsScene* loadScene(UBDocumentProxy* proxy, const int pageIndex);
|
|
|
|
static QByteArray loadSceneAsText(UBDocumentProxy* proxy, const int pageIndex);
|
|
|
|
static UBGraphicsScene* loadScene(UBDocumentProxy* proxy, const QByteArray& pArray);
|
|
|
|
|
|
|
|
static void persistScene(UBDocumentProxy* proxy, UBGraphicsScene* pScene, const int pageIndex);
|
|
|
|
static void upgradeScene(UBDocumentProxy* proxy, const int pageIndex);
|
|
|
|
|
|
|
|
static QUuid sceneUuid(UBDocumentProxy* proxy, const int pageIndex);
|
|
|
|
static void setSceneUuid(UBDocumentProxy* proxy, const int pageIndex, QUuid pUuid);
|
|
|
|
|
|
|
|
static void convertPDFObjectsToImages(UBDocumentProxy* proxy);
|
|
|
|
static void convertSvgImagesToImages(UBDocumentProxy* proxy);
|
|
|
|
|
|
|
|
static const QString nsSvg;
|
|
|
|
static const QString nsXLink;
|
|
|
|
static const QString nsXHtml;
|
|
|
|
static const QString nsUb;
|
|
|
|
static const QString xmlTrue;
|
|
|
|
static const QString xmlFalse;
|
|
|
|
|
|
|
|
static const QString sFontSizePrefix;
|
|
|
|
static const QString sPixelUnit;
|
|
|
|
static const QString sFontWeightPrefix;
|
|
|
|
static const QString sFontStylePrefix;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
static QDomDocument loadSceneDocument(UBDocumentProxy* proxy, const int pPageIndex);
|
|
|
|
|
|
|
|
static QString uniboardDocumentNamespaceUriFromVersion(int fileVersion);
|
|
|
|
|
|
|
|
static const QString sFormerUniboardDocumentNamespaceUri;
|
|
|
|
|
|
|
|
static QString toSvgTransform(const QMatrix& matrix);
|
|
|
|
static QMatrix fromSvgTransform(const QString& transform);
|
|
|
|
|
|
|
|
|
|
|
|
class UBSvgSubsetReader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
UBSvgSubsetReader(UBDocumentProxy* proxy, const QByteArray& pXmlData);
|
|
|
|
|
|
|
|
virtual ~UBSvgSubsetReader(){}
|
|
|
|
|
|
|
|
UBGraphicsScene* loadScene(UBDocumentProxy *proxy);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
UBGraphicsPolygonItem* polygonItemFromLineSvg(const QColor& pDefaultBrushColor);
|
|
|
|
|
|
|
|
UBGraphicsPolygonItem* polygonItemFromPolygonSvg(const QColor& pDefaultBrushColor);
|
|
|
|
|
|
|
|
QList<UBGraphicsPolygonItem*> polygonItemsFromPolylineSvg(const QColor& pDefaultColor);
|
|
|
|
|
|
|
|
UBGraphicsPixmapItem* pixmapItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsSvgItem* svgItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsPDFItem* pdfItemFromPDF();
|
|
|
|
|
|
|
|
UBGraphicsMediaItem* videoItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsMediaItem* audioItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsAppleWidgetItem* graphicsAppleWidgetFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsW3CWidgetItem* graphicsW3CWidgetFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsTextItem* textItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsCurtainItem* curtainItemFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsRuler* rulerFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsAxes* axesFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsCompass* compassFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsProtractor* protractorFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsTriangle* triangleFromSvg();
|
|
|
|
|
|
|
|
UBGraphicsCache* cacheFromSvg();
|
|
|
|
|
|
|
|
void readGroupRoot();
|
|
|
|
QGraphicsItem *readElementFromGroup();
|
|
|
|
UBGraphicsGroupContainerItem* readGroup();
|
|
|
|
|
|
|
|
void graphicsItemFromSvg(QGraphicsItem* gItem);
|
|
|
|
|
|
|
|
QXmlStreamReader mXmlReader;
|
|
|
|
int mFileVersion;
|
|
|
|
UBDocumentProxy *mProxy;
|
|
|
|
QString mDocumentPath;
|
|
|
|
|
|
|
|
QColor mGroupDarkBackgroundColor;
|
|
|
|
QColor mGroupLightBackgroundColor;
|
|
|
|
qreal mGroupZIndex;
|
|
|
|
bool mGroupHasInfo;
|
|
|
|
|
Adjust text item size upon loading to account for platform-to-platform variability
The same font, in the same point size, can be displayed differently
depending on platform (this is a Qt limitation). This can lead to text
items being the wrong size when importing a document created on a
different computer.
As a workaround, when saving a text item to SVG, the size of 1pt in
pixels is calculated and saved. Upon loading, this value is calculated
again and, if it is different from the saved value, the text item is
scaled accordingly.
Thus, any document created from this version onward will have
correctly-scaled text boxes. If an old document (not containing a
pixel-per-point attribute for text items) is loaded, the scene is marked
as modified to make sure that all text items are then saved with the
pixels-per-point value (even if the document is not edited). This allows
old documents to be "fixed" by simply opening them once from a new
version of OpenBoard.
save text item font size in pixels, and scale it on load
fixed loading of text item pixel height
Save and load pixels-per-point rather than text pixel height
Upon loading a text item from SVG, make sure that it will be saved with a pixel-per-point value
8 years ago
|
|
|
bool saveSceneAfterLoading;
|
|
|
|
|
|
|
|
QString mNamespaceUri;
|
|
|
|
UBGraphicsScene *mScene;
|
|
|
|
|
|
|
|
QHash<QString,UBGraphicsStrokesGroup*> mStrokesList;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UBSvgSubsetWriter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
UBSvgSubsetWriter(UBDocumentProxy* proxy, UBGraphicsScene* pScene, const int pageIndex);
|
|
|
|
|
|
|
|
bool persistScene(UBDocumentProxy *proxy, int pageIndex);
|
|
|
|
|
|
|
|
virtual ~UBSvgSubsetWriter(){}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void persistGroupToDom(QGraphicsItem *groupItem, QDomElement *curParent, QDomDocument *curDomDocument);
|
|
|
|
void persistStrokeToDom(QGraphicsItem *strokeItem, QDomElement *curParent, QDomDocument *curDomDocument);
|
|
|
|
void polygonItemToSvgPolygon(UBGraphicsPolygonItem* polygonItem, bool groupHoldsInfo);
|
|
|
|
void polygonItemToSvgLine(UBGraphicsPolygonItem* polygonItem, bool groupHoldsInfo);
|
|
|
|
void strokeToSvgPolyline(UBGraphicsStroke* stroke, bool groupHoldsInfo);
|
|
|
|
void strokeToSvgPolygon(UBGraphicsStroke* stroke, bool groupHoldsInfo);
|
|
|
|
|
|
|
|
inline QString pointsToSvgPointsAttribute(QVector<QPointF> points)
|
|
|
|
{
|
|
|
|
UBGeometryUtils::crashPointList(points);
|
|
|
|
|
|
|
|
int pointsCount = points.size();
|
|
|
|
QString svgPoints;
|
|
|
|
|
|
|
|
int length = 0;
|
|
|
|
QString sBuf;
|
|
|
|
|
|
|
|
for(int j = 0; j < pointsCount; j++)
|
|
|
|
{
|
|
|
|
sBuf = "%1,%2 ";
|
|
|
|
const QPointF & point = points.at(j);
|
|
|
|
|
|
|
|
QString temp1 = "%1", temp2 = "%2";
|
|
|
|
|
|
|
|
temp1 = temp1.arg(point.x());
|
|
|
|
temp2 = temp2.arg(point.y());
|
|
|
|
|
|
|
|
QLocale loc(QLocale::C);
|
|
|
|
sBuf = sBuf.arg(loc.toFloat(temp1)).arg(loc.toFloat(temp2));
|
|
|
|
|
|
|
|
svgPoints.insert(length, sBuf);
|
|
|
|
length += sBuf.length();
|
|
|
|
}
|
|
|
|
return svgPoints;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline qreal trickAlpha(qreal alpha)
|
|
|
|
{
|
|
|
|
qreal trickAlpha = alpha;
|
|
|
|
if(trickAlpha >= 0.2 && trickAlpha < 0.6){
|
|
|
|
trickAlpha /= 5;
|
|
|
|
}else if (trickAlpha < 0.8)
|
|
|
|
trickAlpha /= 3;
|
|
|
|
|
|
|
|
return trickAlpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pixmapItemToLinkedImage(UBGraphicsPixmapItem *pixmapItem);
|
|
|
|
void svgItemToLinkedSvg(UBGraphicsSvgItem *svgItem);
|
|
|
|
void pdfItemToLinkedPDF(UBGraphicsPDFItem *pdfItem);
|
|
|
|
void videoItemToLinkedVideo(UBGraphicsVideoItem *videoItem);
|
|
|
|
void audioItemToLinkedAudio(UBGraphicsAudioItem *audioItem);
|
|
|
|
void graphicsItemToSvg(QGraphicsItem *item);
|
|
|
|
void graphicsAppleWidgetToSvg(UBGraphicsAppleWidgetItem *item);
|
|
|
|
void graphicsW3CWidgetToSvg(UBGraphicsW3CWidgetItem *item);
|
|
|
|
void graphicsWidgetToSvg(UBGraphicsWidgetItem *item);
|
|
|
|
void textItemToSvg(UBGraphicsTextItem *item);
|
|
|
|
void curtainItemToSvg(UBGraphicsCurtainItem *item);
|
|
|
|
void rulerToSvg(UBGraphicsRuler *item);
|
|
|
|
void axesToSvg(UBGraphicsAxes *item);
|
|
|
|
void compassToSvg(UBGraphicsCompass *item);
|
|
|
|
void protractorToSvg(UBGraphicsProtractor *item);
|
|
|
|
void cacheToSvg(UBGraphicsCache* item);
|
|
|
|
void triangleToSvg(UBGraphicsTriangle *item);
|
|
|
|
void writeSvgElement(UBDocumentProxy *proxy);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
UBGraphicsScene* mScene;
|
|
|
|
QXmlStreamWriter mXmlWriter;
|
|
|
|
QString mDocumentPath;
|
|
|
|
int mPageIndex;
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* UBSVGSUBSETADAPTOR_H_ */
|