diff options
author | Armin Le Grand (allotropia) <armin.le.grand.extern@allotropia.de> | 2023-04-21 15:18:09 +0200 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@me.com> | 2023-05-03 17:38:46 +0200 |
commit | bb198176684c3d9377e26c04a29ec66deb811949 (patch) | |
tree | 731abe7ce1b95805900f39c6c7ac2c1c6ccfb211 /sc | |
parent | f1fd3e32508ee3e8aca6f90724e7af8664652e41 (diff) |
MCGR: Make MCGR default for oox im/export, cleanup
Following an error in CppunitTest_chart2_export3 I updated
the transparency definition at WriteGradientFill and
corrected usages.
Had to correct/adapt some Chart UnitTests. Some of these
changes are temporary since this will/has to change when
ODF MCGR im/export is integrated. I checked that all of
these cases actually work, comparing im LO and MSO.
Adapted some Chart2ImportTest to directly compare/check
now for the fully imported tranparence gradient with
available higher precision.
Adapted OoxDrawingmlTest testGradientMultiStepTransparency
to use new MCGR capabilities.
Adapted testTextframeGradient and tested the turn-around
with rtf gradients. These are a little bit limited and
needed some extra care.
Adapted testTextframeGradient.
Adapted SdOOXMLExportTest1, testTdf94238
Adapted SdOOXMLExportTest1, testTdf128345GradientAxial
Adapted SdOOXMLExportTest2, testTdf105739
Adapted SdOOXMLExportTest3, testTdf127372
Adapted SdOOXMLExportTest3, testTdf127379
Adapted SdMiscTest, testFillGradient
Adapted testTextframeGradient
Adapted ScFiltersTest3, testTdf129789
Adapted SdUiImpressTest, testPageFillGradient
Adapted SdOOXMLExportTest1, testTdf128345GradientLinear by
using better double-to-integer rounding (basegfx::fround) in
DrawingML::WriteGradientStop. After double calculations
this makes the tansition to integer correct and stable. Also
took back change at testTdf128345ChartArea_CG_TS_export
which showed the same flaw before.
2nd look @testTdf128345Legend_CS_TG_axial_export made me
add that stuff again and adapt the axial ColorStop adding
in the export to not export the middle enty twice. Extended
test a little bit, too.
Only do not add value if it starts at 0.0 aka StartColor,
else adding it is corect.
Adapted some tests CPPUNIT_ASSERT to CPPUNIT_ASSERT_EQUAL
after being pointed to it from gerrit_linux_clang_dbgutil
build.
Change-Id: I4a993053da8960035671b655e67908f36e59b5fe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150763
Tested-by: Jenkins
Reviewed-by: Armin Le Grand <Armin.Le.Grand@me.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/subsequent_filters_test3.cxx | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/sc/qa/unit/subsequent_filters_test3.cxx b/sc/qa/unit/subsequent_filters_test3.cxx index 400a2fbcdd2c..779e07fe4589 100644 --- a/sc/qa/unit/subsequent_filters_test3.cxx +++ b/sc/qa/unit/subsequent_filters_test3.cxx @@ -1628,12 +1628,16 @@ CPPUNIT_TEST_FIXTURE(ScFiltersTest3, testTdf129789) CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_GRADIENT, rStyleItemH2.GetValue()); const XFillGradientItem& rGradientItem = pCaptionH2->GetMergedItem(XATTR_FILLGRADIENT); + const basegfx::ColorStops& rColorStops(rGradientItem.GetGradientValue().GetColorStops()); + + CPPUNIT_ASSERT_EQUAL(size_t(2), rColorStops.size()); + CPPUNIT_ASSERT(basegfx::fTools::equal(rColorStops[0].getStopOffset(), 0.0)); CPPUNIT_ASSERT_EQUAL( - Color(0xdde8cb), - Color(rGradientItem.GetGradientValue().GetColorStops().front().getStopColor())); - CPPUNIT_ASSERT_EQUAL( - Color(0xffd7d7), - Color(rGradientItem.GetGradientValue().GetColorStops().back().getStopColor())); + rColorStops[0].getStopColor(), + basegfx::BColor(0.8666666666666667, 0.90980392156862744, 0.79607843137254897)); + CPPUNIT_ASSERT(basegfx::fTools::equal(rColorStops[1].getStopOffset(), 1.0)); + CPPUNIT_ASSERT_EQUAL(rColorStops[1].getStopColor(), + basegfx::BColor(1.0, 0.84313725490196079, 0.84313725490196079)); SdrCaptionObj* const pCaptionH9 = checkCaption(*pDoc, ScAddress(7, 8, 0), false); @@ -1641,12 +1645,16 @@ CPPUNIT_TEST_FIXTURE(ScFiltersTest3, testTdf129789) CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_GRADIENT, rStyleItemH9.GetValue()); const XFillGradientItem& rGradientItem2 = pCaptionH2->GetMergedItem(XATTR_FILLGRADIENT); + const basegfx::ColorStops& rColorStops2(rGradientItem2.GetGradientValue().GetColorStops()); + + CPPUNIT_ASSERT_EQUAL(size_t(2), rColorStops2.size()); + CPPUNIT_ASSERT(basegfx::fTools::equal(rColorStops2[0].getStopOffset(), 0.0)); CPPUNIT_ASSERT_EQUAL( - Color(0xdde8cb), - Color(rGradientItem2.GetGradientValue().GetColorStops().front().getStopColor())); - CPPUNIT_ASSERT_EQUAL( - Color(0xffd7d7), - Color(rGradientItem2.GetGradientValue().GetColorStops().back().getStopColor())); + rColorStops2[0].getStopColor(), + basegfx::BColor(0.8666666666666667, 0.90980392156862744, 0.79607843137254897)); + CPPUNIT_ASSERT(basegfx::fTools::equal(rColorStops2[1].getStopOffset(), 1.0)); + CPPUNIT_ASSERT_EQUAL(rColorStops2[1].getStopColor(), + basegfx::BColor(1.0, 0.84313725490196079, 0.84313725490196079)); } { |