View Issue Details

IDProjectCategoryView StatusLast Update
0016073ScribusPDFpublic2020-04-05 19:37
ReporterPontobart Assigned Tojghali  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.5.6.svn 
Fixed in Version1.5.6.svn 
Summary0016073: Fixing some clip handling issues in PDF import
DescriptionThe attached patch fixes the import of the file Option 5(1).pdf from https://bugs.scribus.net/view.php?id=15855 as far as I can see.

Currently the clipping path is using FPointArray which does not remember the fill rule to use as far as I see. This results in the clipping path operations not correctly tracking the rule to be applied. The patch uses QPainterPath to track the clip which also keeps track of the fill rule. Changes:

a) clip() and eoClip() now use the correct fill rule for the new path and correctly intersect it with the exisiting clip path.
b) fill() and eoFill() did not apply the clip at all. This is fixed.
c) For images we intersect the image area with the clip. The result is that some images do not span the whole page after being imported.

There are two issues that might/should be fixed in the future:
a) QPainterPath sometimes converts bezier curves into an approximation with line segments. See some of the boxes in Option 5(1).pdf
b) An empty clip path should be treated as nothing to print. However, currently an empty clip path is interpreted as no restriction at all. Instead for each new page the clip path should be initialized with the media box or crop box.
Steps To ReproduceStart scribus ../path/to/file/Option\ 5\(1\).pdf
TagsNo tags attached.
PatchYes

Activities

Pontobart

2020-03-25 20:04

reporter  

clipping_path_improvements.diff (15,820 bytes)   
Index: scribus/plugins/import/pdf/slaoutput.cpp
===================================================================
--- scribus/plugins/import/pdf/slaoutput.cpp	(Revision 23535)
+++ scribus/plugins/import/pdf/slaoutput.cpp	(Arbeitskopie)
@@ -1298,8 +1298,7 @@
 	m_actPage = pageNum;
 	m_groupStack.clear();
 	pushGroup();
-	m_currentClipPath.resize(0);
-	m_currentClipPath.svgInit();
+	m_currentClipPath.clear();
 	m_clipPaths.clear();
 }
 
@@ -1358,10 +1357,10 @@
 				PageItem *ite = m_doc->groupObjectsSelection(tmpSel);
 				if (ite)
 				{
-					FPointArray out = m_currentClipPath.copy();
-					out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
-					out.translate(-ite->xPos(), -ite->yPos());
-					ite->PoLine = out.copy();
+					QPainterPath clippath = m_currentClipPath;
+					clippath.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
+					clippath.translate(-ite->xPos(), -ite->yPos());
+					ite->PoLine.fromQPainterPath(clippath, true);
 					ite->ClipEdited = true;
 					ite->FrameType = 3;
 					ite->setTextFlowMode(PageItem::TextFlowDisabled);
@@ -1486,10 +1485,10 @@
 		ite->FrameType = 3;
 		if (checkClip())
 		{
-			FPointArray out = m_currentClipPath.copy();
-			out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
-			out.translate(-ite->xPos(), -ite->yPos());
-			ite->PoLine = out.copy();
+			QPainterPath clippath = m_currentClipPath;
+			clippath.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
+			clippath.translate(-ite->xPos(), -ite->yPos());
+			ite->PoLine.fromQPainterPath(clippath, true);
 			ite->ClipEdited = true;
 			ite->FrameType = 3;
 			ite->setTextFlowMode(PageItem::TextFlowDisabled);
@@ -1557,75 +1556,39 @@
 void SlaOutputDev::clip(GfxState *state)
 {
 //	qDebug() << "Clip";
-	const double *ctm;
-	ctm = state->getCTM();
-	m_ctm = QTransform(ctm[0], ctm[1], ctm[2], ctm[3], ctm[4], ctm[5]);
-	QString output = convertPath(state->getPath());
-	if (output.isEmpty())
-		return;
-
-	FPointArray out;
-	out.parseSVG(output);
-	out.svgClosePath();
-	out.map(m_ctm);
-	if (checkClip())
-	{
-		QPainterPath pathN = out.toQPainterPath(true);
-		QPainterPath pathA = m_currentClipPath.toQPainterPath(true);
-		QPainterPath resultPath = pathA.intersected(pathN);
-		if (!resultPath.isEmpty())
-		{
-			FPointArray polyline;
-			polyline.resize(0);
-			polyline.fromQPainterPath(resultPath, true);
-			polyline.svgClosePath();
-			m_currentClipPath = polyline.copy();
-		}
-		else
-		{
-			m_currentClipPath.resize(0);
-			m_currentClipPath.svgInit();
-		}
-	}
-	else
-		m_currentClipPath = out.copy();
+	adjustClip(state, Qt::WindingFill);
 }
 
 void SlaOutputDev::eoClip(GfxState *state)
 {
 //	qDebug() << "EoClip";
-	const double *ctm;
-	ctm = state->getCTM();
+	adjustClip(state, Qt::OddEvenFill);
+}
+
+void SlaOutputDev::adjustClip(GfxState *state, Qt::FillRule fillRule)
+{
+	const double *ctm = state->getCTM();
 	m_ctm = QTransform(ctm[0], ctm[1], ctm[2], ctm[3], ctm[4], ctm[5]);
 	QString output = convertPath(state->getPath());
+	if (output.isEmpty())
+		return;
 	FPointArray out;
-	if (!output.isEmpty())
-	{
 		out.parseSVG(output);
 		out.svgClosePath();
 		out.map(m_ctm);
 		if (checkClip())
 		{
-			QPainterPath pathN = out.toQPainterPath(true);
-			QPainterPath pathA = m_currentClipPath.toQPainterPath(true);
-			QPainterPath resultPath = pathA.intersected(pathN);
-			if (!resultPath.isEmpty())
-			{
-				FPointArray polyline;
-				polyline.resize(0);
-				polyline.fromQPainterPath(resultPath, true);
-				polyline.svgClosePath();
-				m_currentClipPath = polyline.copy();
+		// "clip" (WindingFill) and "eoClip" (OddEvenFill) only the determine
+		// the fill rule of the new clipping path. The new clip should be the
+		// intersection of the old and new area. QPainterPath determines on
+		// its own which fill rule to use for the result. We should not loose
+		// this information.
+		QPainterPath pathN = out.toQPainterPath(false);
+		pathN.setFillRule(fillRule);
+		m_currentClipPath = pathN.intersected(m_currentClipPath);
 			}
 			else
-			{
-				m_currentClipPath.resize(0);
-				m_currentClipPath.svgInit();
-			}
-		}
-		else
-			m_currentClipPath = out.copy();
-	}
+		m_currentClipPath = out.toQPainterPath(false);
 }
 
 void SlaOutputDev::stroke(GfxState *state)
@@ -1723,51 +1686,17 @@
 void SlaOutputDev::fill(GfxState *state)
 {
 //	qDebug() << "Fill";
-	const double *ctm;
-	ctm = state->getCTM();
-	double xCoor = m_doc->currentPage()->xOffset();
-	double yCoor = m_doc->currentPage()->yOffset();
-	FPointArray out;
-	QString output = convertPath(state->getPath());
-	out.parseSVG(output);
-	m_ctm = QTransform(ctm[0], ctm[1], ctm[2], ctm[3], ctm[4], ctm[5]);
-	out.map(m_ctm);
-	Coords = output;
-	FPoint wh = out.widthHeight();
-	if ((out.size() > 3) && ((wh.x() != 0.0) || (wh.y() != 0.0)))
-	{
-		CurrColorFill = getColor(state->getFillColorSpace(), state->getFillColor(), &CurrFillShade);
-		int z;
-		if (pathIsClosed)
-			z = m_doc->itemAdd(PageItem::Polygon, PageItem::Unspecified, xCoor, yCoor, 10, 10, 0, CurrColorFill, CommonStrings::None);
-		else
-			z = m_doc->itemAdd(PageItem::PolyLine, PageItem::Unspecified, xCoor, yCoor, 10, 10, 0, CurrColorFill, CommonStrings::None);
-		PageItem* ite = m_doc->Items->at(z);
-		ite->PoLine = out.copy();
-		ite->ClipEdited = true;
-		ite->FrameType = 3;
-		ite->setFillShade(CurrFillShade);
-		ite->setLineShade(100);
-		ite->setFillEvenOdd(false);
-		ite->setFillTransparency(1.0 - state->getFillOpacity());
-		ite->setFillBlendmode(getBlendMode(state));
-		ite->setLineEnd(PLineEnd);
-		ite->setLineJoin(PLineJoin);
-		ite->setWidthHeight(wh.x(),wh.y());
-		ite->setTextFlowMode(PageItem::TextFlowDisabled);
-		m_doc->adjustItemSize(ite);
-		m_Elements->append(ite);
-		if (m_groupStack.count() != 0)
-		{
-			m_groupStack.top().Items.append(ite);
-			applyMask(ite);
-		}
-	}
+	createFillItem(state, Qt::WindingFill);
 }
 
 void SlaOutputDev::eoFill(GfxState *state)
 {
 //	qDebug() << "EoFill";
+	createFillItem(state, Qt::OddEvenFill);
+}
+
+void SlaOutputDev::createFillItem(GfxState *state, Qt::FillRule fillRule)
+{
 	const double *ctm;
 	ctm = state->getCTM();
 	double xCoor = m_doc->currentPage()->xOffset();
@@ -1777,9 +1706,15 @@
 	out.parseSVG(output);
 	m_ctm = QTransform(ctm[0], ctm[1], ctm[2], ctm[3], ctm[4], ctm[5]);
 	out.map(m_ctm);
+
+	// Clip the new path first and only add it if it is not empty.
+	QPainterPath path = out.toQPainterPath(false);
+	path.setFillRule(fillRule);
+	QPainterPath clippedPath = path.intersected(m_currentClipPath);
+
 	Coords = output;
-	FPoint wh = out.widthHeight();
-	if ((out.size() > 3) && ((wh.x() != 0.0) || (wh.y() != 0.0)))
+	QRectF bbox = clippedPath.boundingRect();
+    if (!clippedPath.isEmpty() && !bbox.isNull())
 	{
 		CurrColorFill = getColor(state->getFillColorSpace(), state->getFillColor(), &CurrFillShade);
 		int z;
@@ -1788,17 +1723,20 @@
 		else
 			z = m_doc->itemAdd(PageItem::PolyLine, PageItem::Unspecified, xCoor, yCoor, 10, 10, 0, CurrColorFill, CommonStrings::None);
 		PageItem* ite = m_doc->Items->at(z);
-		ite->PoLine = out.copy();
+		ite->PoLine.fromQPainterPath(clippedPath, true);
 		ite->ClipEdited = true;
 		ite->FrameType = 3;
 		ite->setFillShade(CurrFillShade);
 		ite->setLineShade(100);
-		ite->setFillEvenOdd(true);
+		// Only the new path has to be interpreted according to fillRule. QPainterPath
+		// could decide to create a final path according to the other rule. Thus
+		// we have to set this from the final path.
+		ite->setFillEvenOdd(clippedPath.fillRule() == Qt::OddEvenFill);
 		ite->setFillTransparency(1.0 - state->getFillOpacity());
 		ite->setFillBlendmode(getBlendMode(state));
 		ite->setLineEnd(PLineEnd);
 		ite->setLineJoin(PLineJoin);
-		ite->setWidthHeight(wh.x(),wh.y());
+		ite->setWidthHeight(bbox.width(),bbox.height());
 		ite->setTextFlowMode(PageItem::TextFlowDisabled);
 		m_doc->adjustItemSize(ite);
 		m_Elements->append(ite);
@@ -1812,6 +1750,7 @@
 
 GBool SlaOutputDev::axialShadedFill(GfxState *state, GfxAxialShading *shading, double tMin, double tMax)
 {
+//	qDebug() << "SlaOutputDev::axialShadedFill";
 	double GrStartX;
 	double GrStartY;
 	double GrEndX;
@@ -1884,16 +1823,16 @@
 	PageItem* ite = m_doc->Items->at(z);
 	if (checkClip())
 	{
-		FPointArray out = m_currentClipPath.copy();
+		QPainterPath out = m_currentClipPath;
 		out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
 		out.translate(-ite->xPos(), -ite->yPos());
-		ite->PoLine = out.copy();
+		ite->PoLine.fromQPainterPath(out, true);
+		ite->setFillEvenOdd(out.fillRule() == Qt::OddEvenFill);
 	}
 	ite->ClipEdited = true;
 	ite->FrameType = 3;
 	ite->setFillShade(CurrFillShade);
 	ite->setLineShade(100);
-	ite->setFillEvenOdd(false);
 	ite->setFillTransparency(1.0 - state->getFillOpacity());
 	ite->setFillBlendmode(getBlendMode(state));
 	ite->setLineEnd(PLineEnd);
@@ -1924,6 +1863,7 @@
 
 GBool SlaOutputDev::radialShadedFill(GfxState *state, GfxRadialShading *shading, double sMin, double sMax)
 {
+//	qDebug() << "SlaOutputDev::radialShadedFill";
 	double GrStartX;
 	double GrStartY;
 	double GrEndX;
@@ -2004,16 +1944,16 @@
 	PageItem* ite = m_doc->Items->at(z);
 	if (checkClip())
 	{
-		FPointArray out = m_currentClipPath.copy();
+		QPainterPath out = m_currentClipPath;
 		out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
 		out.translate(-ite->xPos(), -ite->yPos());
-		ite->PoLine = out.copy();
+		ite->PoLine.fromQPainterPath(out, true);
+		ite->setFillEvenOdd(out.fillRule() == Qt::OddEvenFill);
 	}
 	ite->ClipEdited = true;
 	ite->FrameType = 3;
 	ite->setFillShade(CurrFillShade);
 	ite->setLineShade(100);
-	ite->setFillEvenOdd(false);
 	ite->setFillTransparency(1.0 - state->getFillOpacity());
 	ite->setFillBlendmode(getBlendMode(state));
 	ite->setLineEnd(PLineEnd);
@@ -2044,6 +1984,7 @@
 
 GBool SlaOutputDev::gouraudTriangleShadedFill(GfxState *state, GfxGouraudTriangleShading *shading)
 {
+//	qDebug() << "SlaOutputDev::gouraudTriangleShadedFill";
 	double xCoor = m_doc->currentPage()->xOffset();
 	double yCoor = m_doc->currentPage()->yOffset();
 	double xmin, ymin, xmax, ymax;
@@ -2123,7 +2064,7 @@
 
 GBool SlaOutputDev::patchMeshShadedFill(GfxState *state, GfxPatchMeshShading *shading)
 {
-//	qDebug() << "mesh shaded fill";
+//	qDebug() << "SlaOutputDev::patchMeshShadedFill";
 	double xCoor = m_doc->currentPage()->xOffset();
 	double yCoor = m_doc->currentPage()->yOffset();
 	double xmin, ymin, xmax, ymax;
@@ -2272,6 +2213,7 @@
 
 GBool SlaOutputDev::tilingPatternFill(GfxState *state, Gfx * /*gfx*/, Catalog *cat, Object *str, POPPLER_CONST_070 double *pmat, int paintType, int tilingType, Dict *resDict, POPPLER_CONST_070 double *mat, POPPLER_CONST_070 double *bbox, int x0, int y0, int x1, int y1, double xStep, double yStep)
 {
+//	qDebug() << "SlaOutputDev::tilingPatternFill";
 	PDFRectangle box;
 	Gfx *gfx;
 	QString id;
@@ -2360,16 +2302,16 @@
 	ite = m_doc->Items->at(z);
 	if (checkClip())
 	{
-		FPointArray out = m_currentClipPath.copy();
+		QPainterPath out = m_currentClipPath;
 		out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
 		out.translate(-ite->xPos(), -ite->yPos());
-		ite->PoLine = out.copy();
+		ite->PoLine.fromQPainterPath(out, true);
+		ite->setFillEvenOdd(out.fillRule() == Qt::OddEvenFill);
 	}
 	ite->ClipEdited = true;
 	ite->FrameType = 3;
 	ite->setFillShade(CurrFillShade);
 	ite->setLineShade(100);
-	ite->setFillEvenOdd(false);
 	ite->setFillTransparency(1.0 - state->getFillOpacity());
 	ite->setFillBlendmode(getBlendMode(state));
 	ite->setLineEnd(PLineEnd);
@@ -2700,6 +2642,17 @@
 		torigin = m_ctm.map(QPointF(0, 1));
 	}
 
+	// Determine the visible area of the picture after clipping it. If it is empty, no item
+	// needs to be created.
+	QPainterPath outline;
+	outline.addRect(0, 0, 1, 1);
+	outline = m_ctm.map(outline);
+	if (!m_currentClipPath.isEmpty())
+		outline = outline.intersected(m_currentClipPath);
+
+	if ((inPattern == 0) && (outline.isEmpty() || outline.boundingRect().isNull()))
+		return;
+
     // Determine the width and height of the image by undoing the rotation part
 	// of the CTM and applying the result to the unit square.
 	QTransform without_rotation; 
@@ -2798,20 +2751,15 @@
 		}
 		delete tempFile;
 	}
-	if ((checkClip()) && (inPattern == 0))
+	if (inPattern == 0)
 	{
-		FPointArray out = m_currentClipPath.copy();
+		outline.translate(xCoor - ite->xPos(), yCoor - ite->yPos());
+		// Undo the rotation of the clipping path as it is rotated together with the iamge.
 		QTransform mm;
 		mm.rotate(-ite->rotation());
-		out.translate(m_doc->currentPage()->xOffset(), m_doc->currentPage()->yOffset());
-		out.translate(-ite->xPos(), -ite->yPos());
-		// Undo the rotation of the clipping path as it is rotated together with the iamge.
-		for (int i = 0; i != out.size(); ++i)
-		{
-			QPointF p = mm.map(out.pointQF(i));
-			out.setPoint(i, p.x(), p.y());
-		}
-		ite->PoLine = out.copy();
+		outline = mm.map(outline);
+		ite->PoLine.fromQPainterPath(outline, true);
+		ite->setFillEvenOdd(outline.fillRule() == Qt::OddEvenFill);
 		ite->ClipEdited = true;
 		ite->FrameType = 3;
 		ite->setTextFlowMode(PageItem::TextFlowDisabled);
@@ -3536,6 +3484,7 @@
 
 QString SlaOutputDev::convertPath(POPPLER_CONST_083 GfxPath *path)
 {
+//	qDebug() << "SlaOutputDev::convertPath";
 	if (! path)
 		return QString();
 
@@ -3798,10 +3747,10 @@
 bool SlaOutputDev::checkClip()
 {
 	bool ret = false;
-	if (m_currentClipPath.count() != 0)
+	if (!m_currentClipPath.isEmpty())
 	{
-		FPoint wh = m_currentClipPath.widthHeight();
-		if ((wh.x() > 0) && (wh.y() > 0))
+		QRectF bbox = m_currentClipPath.boundingRect();
+		if ((bbox.width() > 0) && (bbox.height() > 0))
 			ret = true;
 	}
 	return ret;
Index: scribus/plugins/import/pdf/slaoutput.h
===================================================================
--- scribus/plugins/import/pdf/slaoutput.h	(Revision 23535)
+++ scribus/plugins/import/pdf/slaoutput.h	(Arbeitskopie)
@@ -296,6 +296,14 @@
 	QString UnicodeParsedString(const std::string& s1);
 	bool checkClip();
 
+	// Intersect the current clip path with the new path in state where filled areas
+	// are interpreted according to fillRule.
+	void adjustClip(GfxState *state, Qt::FillRule fillRule);
+
+	// Take the current path of state and interpret it according to fillRule,
+	// intersect it with the clipping path and create a new pageitem for it.
+	void createFillItem(GfxState *state, Qt::FillRule fillRule);
+
 	void createImageFrame(QImage& image, GfxState *state, int numColorComponents);
 
 	bool pathIsClosed {false};
@@ -308,8 +316,15 @@
 	QVector<double> DashValues;
 	double DashOffset {0.0};
 	QString Coords;
-	FPointArray m_currentClipPath;
-	QStack<FPointArray> m_clipPaths;
+	// The currently visible area. If it is empty, everything is visible.
+	// QPainterPath has the drawback that it sometimes approximates Bezier curves
+	// by line segments for numerical stability. If available, a better class
+	// should be used. However, it is important that the used class knows which
+	// areas are covered and does not rely on external information about the fill
+	// rule to use.
+	QPainterPath m_currentClipPath;
+	QStack<QPainterPath> m_clipPaths;
+
 	struct groupEntry
 	{
 		QList<PageItem*> Items;
clipping_path_improvements.diff (15,820 bytes)   

jghali

2020-03-26 00:31

administrator   ~0047456

Niiice! Thanks. I've applied your patch with a slight modification in order to remove usage of QPainterPath::clear(). This function has been introduced in Qt 5.13 and at this point we support Qt 5.11.

jghali

2020-03-26 01:30

administrator   ~0047460

It seems there is something wrong tho with the added test for image visible area in SlaOutputDev::createImageFrame():
QPainterPath outline;
outline.addRect(0, 0, 1, 1);
outline = m_ctm.map(outline);
if (!m_currentClipPath.isEmpty())
    outline = outline.intersected(m_currentClipPath);

if ((inPattern == 0) && (outline.isEmpty() || outline.boundingRect().isNull()))
    return;

This test apparently prevent some images to be imported correctly. Take for example the sample file of issue 0015865. These lines prevent the image at the top of the page to be correctly imported. Without these lines, import would be correct.

Pontobart

2020-03-26 07:33

reporter   ~0047462

It a quick glance this looks like a bug in Qt.

I have printed the clip, the outline and the intersection:

m_currentClipPath: QPainterPath: Element count=5
-> MoveTo(x=52.436, y=84.1364)
-> LineTo(x=349.348, y=63.3732)
-> LineTo(x=364.92, y=286.057)
-> LineTo(x=68.0084, y=306.82)
-> LineTo(x=52.436, y=84.1364)
Qt::OddEvenFill

outline: QPainterPath: Element count=5
-> MoveTo(x=68.0065, y=306.792)
-> LineTo(x=364.88, y=286.031)
-> LineTo(x=349.31, y=63.3758)
-> LineTo(x=52.436, y=84.1364)
-> LineTo(x=68.0065, y=306.792)
Qt::OddEvenFill

intersection: QPainterPath: Element count=0

There are small diffferences in the coordinates, but the intersection should be the large area and not empty. I'll try to take a look later.

jghali

2020-03-26 11:43

administrator   ~0047466

It seems there are also clipping issues when importing PDF such as this one.

jghali

2020-03-26 12:33

administrator   ~0047467

Astonishingly using:
outline = m_currentClipPath.intersected(outline);
instead of:
outline = outline.intersected(m_currentClipPath);
seems to work better...

Pontobart

2020-03-26 13:43

reporter   ~0047470

This is a bug in QPainterPath:
https://bugreports.qt.io/browse/QTBUG-83102

Seems like an alternative is necessary.

Pontobart

2020-03-26 21:59

reporter   ~0047476

This one reverts the additional clip in createImageFrame and should make the file from 0015865 work.

The other file needs a deeper look. The handling of masks is not yet correct.
do_not_clip_imagees_on_outline.diff (1,229 bytes)   
Index: scribus/plugins/import/pdf/slaoutput.cpp
===================================================================
--- scribus/plugins/import/pdf/slaoutput.cpp	(Revision 23539)
+++ scribus/plugins/import/pdf/slaoutput.cpp	(Arbeitskopie)
@@ -2642,17 +2642,6 @@
 		torigin = m_ctm.map(QPointF(0, 1));
 	}
 
-	// Determine the visible area of the picture after clipping it. If it is empty, no item
-	// needs to be created.
-	QPainterPath outline;
-	outline.addRect(0, 0, 1, 1);
-	outline = m_ctm.map(outline);
-	if (!m_currentClipPath.isEmpty())
-		outline = m_currentClipPath.intersected(outline);
-
-	if ((inPattern == 0) && (outline.isEmpty() || outline.boundingRect().isNull()))
-		return;
-
     // Determine the width and height of the image by undoing the rotation part
 	// of the CTM and applying the result to the unit square.
 	QTransform without_rotation; 
@@ -2751,8 +2740,10 @@
 		}
 		delete tempFile;
 	}
-	if (inPattern == 0)
+
+	if (checkClip() && (inPattern == 0))
 	{
+		QPainterPath outline = m_currentClipPath;
 		outline.translate(xCoor - ite->xPos(), yCoor - ite->yPos());
 		// Undo the rotation of the clipping path as it is rotated together with the iamge.
 		QTransform mm;

jghali

2020-03-28 12:15

administrator   ~0047479

Here is as requested on irc the sla which was used to create 15818_gradient_transparency_group_disappear.pdf
15818_gradient_transparency_group_disappear.sla (33,310 bytes)   
<?xml version="1.0" encoding="UTF-8"?>
<SCRIBUSUTF8NEW Version="1.5.6.svn">
    <DOCUMENT ANZPAGES="2" PAGEWIDTH="595.275590551181" PAGEHEIGHT="841.889763779528" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="A4" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="11" UNITS="1" DFONT="Arial Regular" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="6" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="Fogra27L CMYK Coated Press" DPIn="sRGB IEC61966-2.1" DPInCMYK="Fogra27L CMYK Coated Press" DPIn2="sRGB IEC61966-2.1" DPIn3="Fogra27L CMYK Coated Press" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="fr" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="0" MINGRID="20.001" MAJGRID="100.001" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20.001" ScratchLeft="100.001" ScratchRight="100.001" ScratchTop="20.001" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="1" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10.001" dispY="10.001" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
        <CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
        <COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
        <COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
        <COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
        <COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
        <COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
        <COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
        <COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
        <COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
        <COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
        <COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
        <COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
        <COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
        <HYPHEN/>
        <STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
        <CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="Arial Regular" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="fr"/>
        <TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
            <TableBorderLeft>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderLeft>
            <TableBorderRight>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderRight>
            <TableBorderTop>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderTop>
            <TableBorderBottom>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderBottom>
        </TableStyle>
        <CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
            <TableBorderLeft>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderLeft>
            <TableBorderRight>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderRight>
            <TableBorderTop>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderTop>
            <TableBorderBottom>
                <TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
            </TableBorderBottom>
        </CellStyle>
        <LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
        <Printer firstUse="1" toFile="1" useAltPrintCommand="1" outputSeparations="1" useSpotColors="1" useColor="1" mirrorH="1" mirrorV="1" useICC="0" doGCR="1" doClip="1" setDevParam="1" useDocBleeds="1" cropMarks="1" bleedMarks="1" registrationMarks="1" colorMarks="1" includePDFMarks="1" PSLevel="-15263977" PDLanguage="-15263977" markLength="-1.58344695403368e+304" markOffset="-1.58344695403368e+304" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="" filename="" separationName="" printerCommand=""/>
        <PDF firstUse="0" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB IEC61966-2.1" ImageP="sRGB IEC61966-2.1" PrintP="Fogra27L CMYK Coated Press" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20.0012598425197" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
            <Subset Name="Arial Regular"/>
            <LPI Color="" Frequency="133" Angle="45" SpotFunction="3"/>
            <LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
            <LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
            <LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
            <LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
        </PDF>
        <DocItemAttributes/>
        <TablesOfContents/>
        <NotesStyles>
            <notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
        </NotesStyles>
        <NotesFrames/>
        <PageSets>
            <Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
            <Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
                <PageNames Name="Left Page"/>
                <PageNames Name="Right Page"/>
            </Set>
            <Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
                <PageNames Name="Left Page"/>
                <PageNames Name="Middle"/>
                <PageNames Name="Right Page"/>
            </Set>
            <Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
                <PageNames Name="Left Page"/>
                <PageNames Name="Middle Left"/>
                <PageNames Name="Middle Right"/>
                <PageNames Name="Right Page"/>
            </Set>
        </PageSets>
        <Sections>
            <Section Number="0" Name="0" From="0" To="1" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
        </Sections>
        <Pattern Name="Pattern_Text14" width="193.5" height="107.25" scaleX="1" scaleY="1" xoffset="0" yoffset="0">
            <PatternItem XPOS="0" YPOS="0" OwnPage="-1" ItemID="48426912" PTYPE="12" WIDTH="193.5" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" ANNAME="Group3" groupWidth="193.5" groupHeight="107.25" groupClips="1" path="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" copath="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" gXpos="0" gYpos="0" gWidth="193.5" gHeight="107.25" LAYER="0">
                <PAGEOBJECT XPOS="190.001" YPOS="948.390763779528" OwnPage="-1" ItemID="217231616" PTYPE="4" WIDTH="103.5" HEIGHT="45" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Cyan" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L103.5 0 L103.5 45 L0 45 L0 0 Z" copath="M0 0 L103.5 0 L103.5 45 L0 45 L0 0 Z" gXpos="90" gYpos="46.5" gWidth="193.5" gHeight="107.25" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                    <StoryText>
                        <DefaultStyle/>
                        <trail/>
                    </StoryText>
                </PAGEOBJECT>
                <PAGEOBJECT XPOS="100.001" YPOS="901.890763779528" OwnPage="-1" ItemID="217860816" PTYPE="4" WIDTH="114" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Green" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L114 0 L114 107.25 L0 107.25 L0 0 Z" copath="M0 0 L114 0 L114 107.25 L0 107.25 L0 0 Z" gXpos="0" gYpos="0" gWidth="193.5" gHeight="107.25" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                    <StoryText>
                        <DefaultStyle/>
                        <trail/>
                    </StoryText>
                </PAGEOBJECT>
            </PatternItem>
        </Pattern>
        <MASTERPAGE PAGEXPOS="100.001" PAGEYPOS="20.001" PAGEWIDTH="595.275590551181" PAGEHEIGHT="841.889763779528" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="A4" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
        <PAGE PAGEXPOS="100.001" PAGEYPOS="20.001" PAGEWIDTH="595.275590551181" PAGEHEIGHT="841.889763779528" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="A4" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
        <PAGE PAGEXPOS="100.001" PAGEYPOS="901.890763779528" PAGEWIDTH="595.275590551181" PAGEHEIGHT="841.889763779528" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="1" NAM="" MNAM="Normal" Size="A4" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
        <PAGEOBJECT XPOS="140.001" YPOS="88.25" OwnPage="0" ItemID="217674400" PTYPE="12" WIDTH="467.22931496063" HEIGHT="510" FRTYPE="0" CLIPEDIT="0" groupWidth="467.22931496063" groupHeight="510" groupClips="1" path="M0 0 L467.229 0 L467.229 510 L0 510 L0 0 Z" copath="M0 0 L467.229 0 L467.229 510 L0 510 L0 0 Z" gXpos="140.001" gYpos="88.25" gWidth="0" gHeight="0" GRExtM="3" GRTYPM="1" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="467.22931496063" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0.5" NAME="Black" SHADE="100" TRANS="0"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <PAGEOBJECT XPOS="140.001" YPOS="88.25" OwnPage="0" ItemID="217604928" PTYPE="4" WIDTH="272.97931496063" HEIGHT="267" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Blue" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L272.979 0 L272.979 267 L0 267 L0 0 Z" copath="M0 0 L272.979 0 L272.979 267 L0 267 L0 0 Z" gXpos="0" gYpos="0" gWidth="467.22931496063" gHeight="510" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
            <PAGEOBJECT XPOS="330.48031496063" YPOS="282.5" OwnPage="0" ItemID="217610400" PTYPE="4" WIDTH="276.75" HEIGHT="315.75" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Cyan" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L276.75 0 L276.75 315.75 L0 315.75 L0 0 Z" copath="M0 0 L276.75 0 L276.75 315.75 L0 315.75 L0 0 Z" gXpos="190.47931496063" gYpos="194.25" gWidth="467.22931496063" gHeight="510" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="376.25" YPOS="51.5" OwnPage="0" ItemID="217615872" PTYPE="5" WIDTH="595.5" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="90" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="376.25" gYpos="51.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="140.001" YPOS="43.5" OwnPage="0" ItemID="218092416" PTYPE="5" WIDTH="626.25" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="90" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="140.001" gYpos="43.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="113.25" YPOS="88.0324960629921" OwnPage="0" ItemID="218056992" PTYPE="5" WIDTH="561.864419550773" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="113.25" gYpos="88.0324960629921" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="140.001" YPOS="970.139763779528" OwnPage="1" ItemID="218062368" PTYPE="12" WIDTH="467.22931496063" HEIGHT="510" FRTYPE="0" CLIPEDIT="0" groupWidth="467.22931496063" groupHeight="510" groupClips="1" path="M0 0 L467.229 0 L467.229 510 L0 510 L0 0 Z" copath="M0 0 L467.229 0 L467.229 510 L0 510 L0 0 Z" gXpos="140.001" gYpos="88.25" gWidth="0" gHeight="0" GRExtM="3" GRTYPM="1" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="467.22931496063" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0.5" NAME="Black" SHADE="100" TRANS="0"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <PAGEOBJECT XPOS="140.001" YPOS="970.139763779528" OwnPage="1" ItemID="218084160" PTYPE="4" WIDTH="272.97931496063" HEIGHT="267" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Blue" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L272.979 0 L272.979 267 L0 267 L0 0 Z" copath="M0 0 L272.979 0 L272.979 267 L0 267 L0 0 Z" gXpos="0" gYpos="0" gWidth="467.22931496063" gHeight="510" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
            <PAGEOBJECT XPOS="330.48031496063" YPOS="1164.38976377953" OwnPage="1" ItemID="218007840" PTYPE="4" WIDTH="276.75" HEIGHT="315.75" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Cyan" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L276.75 0 L276.75 315.75 L0 315.75 L0 0 Z" copath="M0 0 L276.75 0 L276.75 315.75 L0 315.75 L0 0 Z" gXpos="190.47931496063" gYpos="194.25" gWidth="467.22931496063" gHeight="510" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="376.25" YPOS="933.389763779528" OwnPage="1" ItemID="218013312" PTYPE="5" WIDTH="595.5" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="90" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="376.25" gYpos="51.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="140.001" YPOS="925.389763779528" OwnPage="1" ItemID="218018688" PTYPE="5" WIDTH="626.25" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="90" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="140.001" gYpos="43.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="113.25" YPOS="969.92225984252" OwnPage="1" ItemID="217588512" PTYPE="5" WIDTH="561.864419550773" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="113.25" gYpos="88.0324960629921" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="140.001" YPOS="712.75" OwnPage="0" ItemID="217593888" PTYPE="11" WIDTH="235.749" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" ROT="330" path="M0 0 L235.749 0 L235.749 107.25 L0 107.25 L0 0 Z" copath="M0 0 L235.749 0 L235.749 107.25 L0 107.25 L0 0 Z" gXpos="140.001" gYpos="712.75" gWidth="0" gHeight="0" pattern="Pattern_Text14" GRExtM="3" GRTYPM="1" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="235.749" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0.6" NAME="Black" SHADE="100" TRANS="0"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="120.75" YPOS="682.5" OwnPage="0" ItemID="217599264" PTYPE="5" WIDTH="192.994550478966" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="58.8785422356679" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="110.25" gYpos="688.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="230.5" YPOS="595" OwnPage="0" ItemID="217602048" PTYPE="5" WIDTH="230.93532644444" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="59.6319449236053" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="227.5" gYpos="611.276590551181" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="393" YPOS="729.009539223647" OwnPage="0" ItemID="218067744" PTYPE="11" WIDTH="193.5" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" ROT="330" path="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" copath="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" gXpos="393" gYpos="729.009539223647" gWidth="0" gHeight="0" pattern="Pattern_Text14" GRExtM="3" GRTYPM="6" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="1" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" patternM="Pattern_Text14" pScaleXM="100" pScaleYM="100" pOffsetXM="0" pOffsetYM="0" pRotationM="0" pSkewXM="0" pSkewYM="0" pMirrorXM="0" pMirrorYM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="140.001" YPOS="1594.63976377953" OwnPage="1" ItemID="218070528" PTYPE="11" WIDTH="235.749" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" ROT="330" path="M0 0 L235.749 0 L235.749 107.25 L0 107.25 L0 0 Z" copath="M0 0 L235.749 0 L235.749 107.25 L0 107.25 L0 0 Z" gXpos="140.001" gYpos="712.75" gWidth="0" gHeight="0" pattern="Pattern_Text14" GRExtM="3" GRTYPM="1" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="235.749" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0.6" NAME="Black" SHADE="100" TRANS="0"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="120.75" YPOS="1564.38976377953" OwnPage="1" ItemID="218073312" PTYPE="5" WIDTH="192.994550478966" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="58.8785422356679" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="110.25" gYpos="688.5" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="230.5" YPOS="1476.88976377953" OwnPage="1" ItemID="218076096" PTYPE="5" WIDTH="230.93532644444" HEIGHT="1" FRTYPE="0" CLIPEDIT="0" ROT="59.6319449236053" PWIDTH="1" PCOLOR2="Black" PLINEART="1" path="" gXpos="227.5" gYpos="611.276590551181" gWidth="0" gHeight="0" LAYER="0"/>
        <PAGEOBJECT XPOS="393" YPOS="1610.89930300317" OwnPage="1" ItemID="218078880" PTYPE="11" WIDTH="193.5" HEIGHT="107.25" FRTYPE="0" CLIPEDIT="0" ROT="330" path="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" copath="M0 0 L193.5 0 L193.5 107.25 L0 107.25 L0 0 Z" gXpos="393" gYpos="729.009539223647" gWidth="0" gHeight="0" pattern="Pattern_Text14" GRExtM="3" GRTYPM="6" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="1" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" patternM="Pattern_Text14" pScaleXM="100" pScaleYM="100" pOffsetXM="0" pOffsetYM="0" pRotationM="0" pSkewXM="0" pSkewYM="0" pMirrorXM="0" pMirrorYM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="140.001" YPOS="442.347456692913" OwnPage="0" ItemID="213213520" PTYPE="12" WIDTH="121.467503937008" HEIGHT="153.070866141732" FRTYPE="0" CLIPEDIT="0" ROT="330" ANNAME="Copy of Group4" groupWidth="121.467503937008" groupHeight="153.070866141732" groupClips="1" path="M0 0 L121.468 0 L121.468 153.071 L0 153.071 L0 0 Z" copath="M0 0 L121.468 0 L121.468 153.071 L0 153.071 L0 0 Z" gXpos="140.001" gYpos="442.347456692913" gWidth="0" gHeight="0" GRExtM="3" GRTYPM="6" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="121.467503937008" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" patternM="Pattern_Text14" pScaleXM="100" pScaleYM="100" pOffsetXM="0" pOffsetYM="0" pRotationM="0" pSkewXM="0" pSkewYM="0" pMirrorXM="0" pMirrorYM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <PAGEOBJECT XPOS="140.001" YPOS="442.347456692913" OwnPage="0" ItemID="6701888" PTYPE="4" WIDTH="75.7175039370079" HEIGHT="91.1525433070866" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Blue" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L75.7175 0 L75.7175 91.1525 L0 91.1525 L0 0 Z" copath="M0 0 L75.7175 0 L75.7175 91.1525 L0 91.1525 L0 0 Z" gXpos="0" gYpos="0" gWidth="121.467503937008" gHeight="153.070866141732" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
            <PAGEOBJECT XPOS="180.468503937008" YPOS="508" OwnPage="0" ItemID="212207568" PTYPE="4" WIDTH="81" HEIGHT="87.4183228346457" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Green" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L81 0 L81 87.4183 L0 87.4183 L0 0 Z" copath="M0 0 L81 0 L81 87.4183 L0 87.4183 L0 0 Z" gXpos="40.4675039370079" gYpos="65.6525433070866" gWidth="121.467503937008" gHeight="153.070866141732" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
        </PAGEOBJECT>
        <PAGEOBJECT XPOS="140.001" YPOS="1324.23722047244" OwnPage="1" ItemID="213210688" PTYPE="12" WIDTH="121.467503937008" HEIGHT="153.070866141732" FRTYPE="0" CLIPEDIT="0" ROT="330" ANNAME="Copy of Group4 (2)" groupWidth="121.467503937008" groupHeight="153.070866141732" groupClips="1" path="M0 0 L121.468 0 L121.468 153.071 L0 153.071 L0 0 Z" copath="M0 0 L121.468 0 L121.468 153.071 L0 153.071 L0 0 Z" gXpos="140.001" gYpos="442.347456692913" gWidth="0" gHeight="0" GRExtM="3" GRTYPM="6" GRSTARTXM="0" GRSTARTYM="0" GRENDXM="121.467503937008" GRENDYM="0" GRFOCALXM="0" GRFOCALYM="0" GRSCALEM="1" GRSKEWM="0" patternM="Pattern_Text14" pScaleXM="100" pScaleYM="100" pOffsetXM="0" pOffsetYM="0" pRotationM="0" pSkewXM="0" pSkewYM="0" pMirrorXM="0" pMirrorYM="0" LAYER="0">
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="0" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <M_CSTOP RAMP="1" NAME="Black" SHADE="100" TRANS="1"/>
            <PAGEOBJECT XPOS="268.033496062992" YPOS="1310.23822047244" OwnPage="1" ItemID="209077072" PTYPE="4" WIDTH="75.7175039370079" HEIGHT="91.1525433070866" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Blue" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L75.7175 0 L75.7175 91.1525 L0 91.1525 L0 0 Z" copath="M0 0 L75.7175 0 L75.7175 91.1525 L0 91.1525 L0 0 Z" gXpos="0" gYpos="0" gWidth="121.467503937008" gHeight="153.070866141732" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
            <PAGEOBJECT XPOS="308.501" YPOS="1375.89076377953" OwnPage="1" ItemID="214528592" PTYPE="4" WIDTH="81" HEIGHT="87.4183228346457" FRTYPE="0" CLIPEDIT="0" PWIDTH="1" PCOLOR="Green" PLINEART="1" LOCALSCX="1" LOCALSCY="1" LOCALX="0" LOCALY="0" LOCALROT="0" PICART="1" SCALETYPE="1" RATIO="1" COLUMNS="1" COLGAP="0" AUTOTEXT="0" EXTRA="0" TEXTRA="0" BEXTRA="0" REXTRA="0" VAlign="0" FLOP="0" PLTSHOW="0" BASEOF="0" textPathType="0" textPathFlipped="0" path="M0 0 L81 0 L81 87.4183 L0 87.4183 L0 0 Z" copath="M0 0 L81 0 L81 87.4183 L0 87.4183 L0 0 Z" gXpos="40.4675039370079" gYpos="65.6525433070866" gWidth="121.467503937008" gHeight="153.070866141732" LAYER="0" NEXTITEM="-1" BACKITEM="-1">
                <StoryText>
                    <DefaultStyle/>
                    <trail/>
                </StoryText>
            </PAGEOBJECT>
        </PAGEOBJECT>
    </DOCUMENT>
</SCRIBUSUTF8NEW>

jghali

2020-03-28 13:53

administrator   ~0047480

Last edited: 2020-03-28 14:53

With r23538, the file from 0015865 already works as well as several other test files I have in my possession. So I'm tempted to leave the code as is for now despite that potential QPainterPath::intersected() issue. If you look at the other sample attached to 0015865, swimming-howto.pdf, it is also now correctly imported and reverting to the old code would now cause somewhat a regression.

Issue History

Date Modified Username Field Change
2020-03-25 20:04 Pontobart New Issue
2020-03-25 20:04 Pontobart File Added: clipping_path_improvements.diff
2020-03-26 00:31 jghali Assigned To => jghali
2020-03-26 00:31 jghali Status new => resolved
2020-03-26 00:31 jghali Resolution open => fixed
2020-03-26 00:31 jghali Fixed in Version => 1.5.6.svn
2020-03-26 00:31 jghali Note Added: 0047456
2020-03-26 01:30 jghali Note Added: 0047460
2020-03-26 07:33 Pontobart Note Added: 0047462
2020-03-26 11:43 jghali File Added: 15818_gradient_transparency_group_disappear.pdf
2020-03-26 11:43 jghali Note Added: 0047466
2020-03-26 12:33 jghali Note Added: 0047467
2020-03-26 13:43 Pontobart Note Added: 0047470
2020-03-26 21:59 Pontobart File Added: do_not_clip_imagees_on_outline.diff
2020-03-26 21:59 Pontobart Note Added: 0047476
2020-03-28 12:15 jghali File Added: 15818_gradient_transparency_group_disappear.sla
2020-03-28 12:15 jghali Note Added: 0047479
2020-03-28 13:53 jghali Note Added: 0047480
2020-03-28 14:53 jghali Note Edited: 0047480
2020-04-05 19:37 cbradney Status resolved => closed