/* -*- 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/. */ #include #include #include #include #include #include #include #include #include using namespace css; using namespace css::uno; namespace sc_apitest { class ScAnnotationShapeObj : public CalcUnoApiTest, public apitest::XText, public apitest::CaptionShape { public: ScAnnotationShapeObj(); virtual void setUp() override; virtual void tearDown() override; virtual uno::Reference init() override; virtual uno::Reference getTextContent() override; CPPUNIT_TEST_SUITE(ScAnnotationShapeObj); // XText CPPUNIT_TEST(testInsertRemoveTextContent); // CaptionShape CPPUNIT_TEST(testCaptionShapeProperties); CPPUNIT_TEST_SUITE_END(); private: uno::Reference mxComponent; static uno::Reference mxField; }; uno::Reference ScAnnotationShapeObj::mxField; ScAnnotationShapeObj::ScAnnotationShapeObj() : CalcUnoApiTest("sc/qa/extras/testdocuments") { } void ScAnnotationShapeObj::setUp() { CalcUnoApiTest::setUp(); mxComponent = loadFromDesktop("private:factory/scalc"); } void ScAnnotationShapeObj::tearDown() { mxField.clear(); closeDocument(mxComponent); CalcUnoApiTest::tearDown(); } uno::Reference ScAnnotationShapeObj::init() { uno::Reference xDoc(mxComponent, UNO_QUERY_THROW); uno::Reference xIA(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference xSheet(xIA->getByIndex(0), UNO_QUERY_THROW); // Use cell A1 for this. table::CellAddress aNotePos(0, 0, 0); Reference xAnnosSupp(xSheet, UNO_QUERY_THROW); Reference xAnnos(xAnnosSupp->getAnnotations(), UNO_SET_THROW); // non-empty string required by note implementation (real text will be added below) xAnnos->insertNew(aNotePos, OUString(' ')); uno::Reference xCell = xSheet->getCellByPosition(0, 0); uno::Reference xAnchor(xCell, UNO_QUERY_THROW); uno::Reference xAnnotation(xAnchor->getAnnotation(), UNO_SET_THROW); uno::Reference xAnnoText(xAnnotation, UNO_QUERY_THROW); xAnnoText->setString("ScAnnotationShapeObj"); uno::Reference xShapeSupp(xAnnotation, UNO_QUERY_THROW); uno::Reference xShape(xShapeSupp->getAnnotationShape(), UNO_SET_THROW); return xShape; } uno::Reference ScAnnotationShapeObj::getTextContent() { if (!mxField.is()) { uno::Reference xSM(mxComponent, UNO_QUERY_THROW); mxField.set(xSM->createInstance("com.sun.star.text.TextField.DateTime"), UNO_QUERY_THROW); } return mxField; } CPPUNIT_TEST_SUITE_REGISTRATION(ScAnnotationShapeObj); } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */