/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * 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 #include #include #include #include #include #include #include #include #include #include #include #include using namespace css; namespace sc_apitest { class ScViewPaneObj : public CalcUnoApiTest, public apitest::XCellRangeReferrer, public apitest::XControlAccess, public apitest::XFormLayerAccess, public apitest::XServiceInfo, public apitest::XViewPane { public: ScViewPaneObj(); virtual uno::Reference init() override; virtual uno::Reference getXComponent() override; virtual void setUp() override; virtual void tearDown() override; CPPUNIT_TEST_SUITE(ScViewPaneObj); // XCellRangeReferrer CPPUNIT_TEST(testGetReferredCells); // XControlAccess CPPUNIT_TEST(testGetControl); // XFormLayerAccess CPPUNIT_TEST(testGetFormController); CPPUNIT_TEST(testIsFormDesignMode); CPPUNIT_TEST(testSetFormDesignMode); // XServiceInfo CPPUNIT_TEST(testGetImplementationName); CPPUNIT_TEST(testGetSupportedServiceNames); CPPUNIT_TEST(testSupportsService); // XViewPane CPPUNIT_TEST(testFirstVisibleColumn); CPPUNIT_TEST(testFirstVisibleRow); CPPUNIT_TEST(testVisibleRange); CPPUNIT_TEST_SUITE_END(); private: uno::Reference mxComponent; }; ScViewPaneObj::ScViewPaneObj() : CalcUnoApiTest("/sc/qa/extras/testdocuments") , XServiceInfo("ScViewPaneObj", "com.sun.star.sheet.SpreadsheetViewPane") { } uno::Reference ScViewPaneObj::getXComponent() { return mxComponent; } uno::Reference ScViewPaneObj::init() { uno::Reference xDoc(mxComponent, uno::UNO_QUERY_THROW); uno::Reference xModel(xDoc, uno::UNO_QUERY_THROW); uno::Reference xController(xModel->getCurrentController(), uno::UNO_SET_THROW); uno::Reference xIA(xController, uno::UNO_QUERY_THROW); uno::Reference xViewPane(xIA->getByIndex(0), uno::UNO_QUERY_THROW); uno::Reference xDPS(xDoc, uno::UNO_QUERY_THROW); uno::Reference xDP(xDPS->getDrawPages(), uno::UNO_SET_THROW); xDP->insertNewByIndex(1); xDP->insertNewByIndex(2); uno::Reference xDrawPage(xDP->getByIndex(0), uno::UNO_QUERY_THROW); xDrawPage->add( apitest::helper::form::createCommandButton(mxComponent, 15000, 10000, 3000, 4500)); uno::Reference xFS(xDrawPage, uno::UNO_QUERY_THROW); uno::Reference xNC(xFS->getForms(), uno::UNO_SET_THROW); // XFormLayerAccess uno::Reference xForm(xNC->getByName("Form"), uno::UNO_QUERY_THROW); setForm(xForm); // XCellRangeReferrer setCellRange(xViewPane->getVisibleRange()); return xViewPane; } void ScViewPaneObj::setUp() { CalcUnoApiTest::setUp(); // create a calc document mxComponent = loadFromDesktop("private:factory/scalc"); } void ScViewPaneObj::tearDown() { closeDocument(mxComponent); CalcUnoApiTest::tearDown(); } CPPUNIT_TEST_SUITE_REGISTRATION(ScViewPaneObj); } // namespace sc_apitest CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */