2015-03-11 18:00:26 +01:00
|
|
|
/* -*- 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 <swmodeltestbase.hxx>
|
2015-03-12 10:18:48 +01:00
|
|
|
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
2015-03-11 18:00:26 +01:00
|
|
|
#include <svx/svdpage.hxx>
|
|
|
|
#include <svx/svdview.hxx>
|
|
|
|
#include <crsskip.hxx>
|
|
|
|
#include <drawdoc.hxx>
|
|
|
|
#include <wrtsh.hxx>
|
|
|
|
|
|
|
|
static const char* DATA_DIRECTORY = "/sw/qa/extras/tiledrendering/data/";
|
|
|
|
|
|
|
|
/// Testsuite for the SwXTextDocument methods implementing the vcl::ITiledRenderable interface.
|
|
|
|
class SwTiledRenderingTest : public SwModelTestBase
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2015-03-13 14:50:09 +01:00
|
|
|
void testSetTextSelection();
|
2015-03-12 10:18:48 +01:00
|
|
|
void testSetGraphicSelection();
|
2015-03-11 18:00:26 +01:00
|
|
|
void testResetSelection();
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(SwTiledRenderingTest);
|
2015-03-13 14:50:09 +01:00
|
|
|
CPPUNIT_TEST(testSetTextSelection);
|
2015-03-12 10:18:48 +01:00
|
|
|
CPPUNIT_TEST(testSetGraphicSelection);
|
2015-03-11 18:00:26 +01:00
|
|
|
CPPUNIT_TEST(testResetSelection);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SwXTextDocument* createDoc(const char* pName);
|
|
|
|
};
|
|
|
|
|
|
|
|
SwXTextDocument* SwTiledRenderingTest::createDoc(const char* pName)
|
|
|
|
{
|
|
|
|
load(DATA_DIRECTORY, pName);
|
|
|
|
|
|
|
|
SwXTextDocument* pTextDocument = dynamic_cast<SwXTextDocument*>(mxComponent.get());
|
|
|
|
CPPUNIT_ASSERT(pTextDocument);
|
2015-03-12 10:18:48 +01:00
|
|
|
pTextDocument->initializeForTiledRendering();
|
2015-03-11 18:00:26 +01:00
|
|
|
return pTextDocument;
|
|
|
|
}
|
|
|
|
|
2015-03-13 14:50:09 +01:00
|
|
|
void SwTiledRenderingTest::testSetTextSelection()
|
|
|
|
{
|
|
|
|
SwXTextDocument* pXTextDocument = createDoc("set-text-selection.fodt");
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
// Move the cursor into the second word.
|
|
|
|
pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/false, 5, /*bBasicCall=*/false);
|
|
|
|
// Create a selection by on the word.
|
|
|
|
pWrtShell->SelWrd();
|
|
|
|
SwShellCrsr* pShellCrsr = pWrtShell->getShellCrsr(false);
|
|
|
|
// Did we indeed manage to select the second word?
|
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("bbb"), pShellCrsr->GetTxt());
|
|
|
|
|
|
|
|
// Now use setTextSelection() to move the start of the selection 1000 twips left.
|
|
|
|
Point aStart = pShellCrsr->GetSttPos();
|
|
|
|
aStart.setX(aStart.getX() - 1000);
|
|
|
|
pXTextDocument->setTextSelection(LOK_SETTEXTSELECTION_START, aStart.getX(), aStart.getY());
|
|
|
|
// The new selection must include the first word, too -- but not the ending dot.
|
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("Aaa bbb"), pShellCrsr->GetTxt());
|
|
|
|
}
|
|
|
|
|
2015-03-12 10:18:48 +01:00
|
|
|
void SwTiledRenderingTest::testSetGraphicSelection()
|
|
|
|
{
|
|
|
|
SwXTextDocument* pXTextDocument = createDoc("shape.fodt");
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
SdrPage* pPage = pWrtShell->GetDoc()->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0);
|
|
|
|
SdrObject* pObject = pPage->GetObj(0);
|
|
|
|
pWrtShell->SelectObj(Point(), 0, pObject);
|
|
|
|
// Make sure the rectangle has 8 handles: at each corner and at the center of each edge.
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_uInt32>(8), pObject->GetHdlCount());
|
|
|
|
// Take the bottom center one.
|
|
|
|
SdrHdl* pHdl = pObject->GetHdl(6);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(HDL_LOWER, pHdl->GetKind());
|
|
|
|
Rectangle aShapeBefore = pObject->GetSnapRect();
|
|
|
|
// Resize.
|
|
|
|
pXTextDocument->setGraphicSelection(LOK_SETGRAPHICSELECTION_START, pHdl->GetPos().getX(), pHdl->GetPos().getY());
|
|
|
|
pXTextDocument->setGraphicSelection(LOK_SETGRAPHICSELECTION_END, pHdl->GetPos().getX(), pHdl->GetPos().getY() + 1000);
|
|
|
|
Rectangle aShapeAfter = pObject->GetSnapRect();
|
|
|
|
// Check that a resize happened, but aspect ratio is not kept.
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aShapeBefore.getWidth(), aShapeAfter.getWidth());
|
2015-03-16 14:55:40 +01:00
|
|
|
#if !defined(MACOSX) // FIXME
|
2015-03-12 10:18:48 +01:00
|
|
|
CPPUNIT_ASSERT_EQUAL(aShapeBefore.getHeight() + 1000, aShapeAfter.getHeight());
|
2015-03-16 14:55:40 +01:00
|
|
|
#endif
|
2015-03-12 10:18:48 +01:00
|
|
|
}
|
|
|
|
|
2015-03-11 18:00:26 +01:00
|
|
|
void SwTiledRenderingTest::testResetSelection()
|
|
|
|
{
|
2015-03-12 10:18:48 +01:00
|
|
|
SwXTextDocument* pXTextDocument = createDoc("shape.fodt");
|
2015-03-11 18:00:26 +01:00
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
// Select one character.
|
|
|
|
pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/true, 1, /*bBasicCall=*/false);
|
|
|
|
SwShellCrsr* pShellCrsr = pWrtShell->getShellCrsr(false);
|
|
|
|
// We have a text selection.
|
|
|
|
CPPUNIT_ASSERT(pShellCrsr->HasMark());
|
|
|
|
|
|
|
|
pXTextDocument->resetSelection();
|
|
|
|
// We no longer have a text selection.
|
|
|
|
CPPUNIT_ASSERT(!pShellCrsr->HasMark());
|
|
|
|
|
|
|
|
SdrPage* pPage = pWrtShell->GetDoc()->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0);
|
|
|
|
SdrObject* pObject = pPage->GetObj(0);
|
|
|
|
Point aPoint = pObject->GetSnapRect().Center();
|
|
|
|
// Select the shape.
|
|
|
|
pWrtShell->EnterSelFrmMode(&aPoint);
|
|
|
|
// We have a graphic selection.
|
|
|
|
CPPUNIT_ASSERT(pWrtShell->IsSelFrmMode());
|
|
|
|
|
|
|
|
pXTextDocument->resetSelection();
|
|
|
|
// We no longer have a graphic selection.
|
|
|
|
CPPUNIT_ASSERT(!pWrtShell->IsSelFrmMode());
|
|
|
|
}
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(SwTiledRenderingTest);
|
|
|
|
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|