/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
namespace
{ /// Tests not about special features of custom shapes, but about shapes in general. class ClassicshapesTest : public UnoApiTest
{ public:
ClassicshapesTest()
: UnoApiTest(u"svx/qa/unit/data/"_ustr)
{
}
uno::Reference<drawing::XShape> ClassicshapesTest::getShape(sal_uInt8 nShapeIndex,
sal_uInt8 nPageIndex)
{
uno::Reference<drawing::XDrawPagesSupplier> xDrawPagesSupplier(mxComponent,
uno::UNO_QUERY_THROW);
CPPUNIT_ASSERT_MESSAGE("Could not get XDrawPagesSupplier", xDrawPagesSupplier.is());
uno::Reference<drawing::XDrawPages> xDrawPages(xDrawPagesSupplier->getDrawPages());
uno::Reference<drawing::XDrawPage> xDrawPage(xDrawPages->getByIndex(nPageIndex),
uno::UNO_QUERY_THROW);
CPPUNIT_ASSERT_MESSAGE("Could not get xDrawPage", xDrawPage.is());
uno::Reference<drawing::XShape> xShape(xDrawPage->getByIndex(nShapeIndex), uno::UNO_QUERY);
CPPUNIT_ASSERT_MESSAGE("Could not get xShape", xShape.is()); return xShape;
}
CPPUNIT_TEST_FIXTURE(ClassicshapesTest, testTdf98584ShearVertical)
{ // The document contains draw:rect, draw:polygon and draw:path objects. // They are vertical sheared by skewY(-0.927295218002) or by matrix(1 2 0 1 1cm 1cm). // Notice, skewY and matrix are interpreted on file open, but not written on file save. // They are converted to rotate * shear horizontal * scale. // Besides using a wrong sign in shear angle, error was, that TRSetGeometry of SdrPathObj did // not consider the additional scaling (tdf#98565).
loadFromFile(u"tdf98584_ShearVertical.odg");
CPPUNIT_TEST_FIXTURE(ClassicshapesTest, testTdf98583ShearHorizontal)
{ // The document contains rectangles with LT 3000,5000 and RB 5000,9000. // skewX (-0.78539816339744830961) = skewX(-45deg) is applied on the first page // matrix(1 0 1 1 0cm 0cm) on the second page. Both should result in a parallelogram with // LT 8000,5000 and RB 14000, 9000, which means width 6001, height 4001. // Error was, that not the mathematical matrix was used, but the API matrix, which has // wrong sign in shear angle.
loadFromFile(u"tdf98583_ShearHorizontal.odp");
for (sal_uInt8 nPageIndex = 0; nPageIndex < 2; ++nPageIndex)
{
awt::Rectangle aFrameRect;
uno::Reference<drawing::XShape> xShape(getShape(0, nPageIndex));
uno::Reference<beans::XPropertySet> xShapeProps(xShape, uno::UNO_QUERY);
CPPUNIT_ASSERT_MESSAGE("Could not get the shape properties", xShapeProps.is());
xShapeProps->getPropertyValue(UNO_NAME_MISC_OBJ_FRAMERECT) >>= aFrameRect;
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
OUString("Incorrect Left Position on page " + OUString::number(nPageIndex))
.toUtf8()
.getStr(),
8000.0, aFrameRect.X, 2.0);
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
OUString("Incorrect Top Position on page " + OUString::number(nPageIndex))
.toUtf8()
.getStr(),
5000.0, aFrameRect.Y, 2.0);
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
OUString("Incorrect Width on page " + OUString::number(nPageIndex)).toUtf8().getStr(),
6001.0, aFrameRect.Width, 2.0);
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
OUString("Incorrect Height on page " + OUString::number(nPageIndex)).toUtf8().getStr(),
4001.0, aFrameRect.Height, 2.0);
}
}
CPPUNIT_TEST_FIXTURE(ClassicshapesTest, testTdf130076Flip)
{ // The document contains sections of a circle, one of which is scaled // (1, -1), one of which is scaled (-1,1), one of which is transformed // by a matrix equivalent to a vertical flip, and another which is // transformed by a matrix equivalent to a horizontal flip. Error was // that the transformation was made before the CircleKind was set, // resulting in the flip being performed incorrectly.
loadFromFile(u"tdf130076_FlipOnSectorSection.odg");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.