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-05-20 17:56:33 +02:00
|
|
|
#include <comphelper/dispatchcommand.hxx>
|
|
|
|
#include <comphelper/propertysequence.hxx>
|
2015-03-17 16:12:26 +01:00
|
|
|
#include <comphelper/string.hxx>
|
2015-03-11 18:00:26 +01:00
|
|
|
#include <svx/svdpage.hxx>
|
|
|
|
#include <svx/svdview.hxx>
|
2015-03-30 14:47:43 +03:00
|
|
|
#include <vcl/svapp.hxx>
|
2015-03-11 18:00:26 +01:00
|
|
|
#include <crsskip.hxx>
|
|
|
|
#include <drawdoc.hxx>
|
2015-04-08 17:48:21 +02:00
|
|
|
#include <ndtxt.hxx>
|
2015-03-11 18:00:26 +01:00
|
|
|
#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-17 16:12:26 +01:00
|
|
|
void testRegisterCallback();
|
2015-04-08 17:48:21 +02:00
|
|
|
void testPostKeyEvent();
|
2015-03-16 17:42:38 +01:00
|
|
|
void testPostMouseEvent();
|
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();
|
2015-05-20 17:56:33 +02:00
|
|
|
void testSearch();
|
2015-05-29 12:05:32 +02:00
|
|
|
void testDocumentSizeChanged();
|
2015-03-11 18:00:26 +01:00
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(SwTiledRenderingTest);
|
2015-03-17 16:12:26 +01:00
|
|
|
CPPUNIT_TEST(testRegisterCallback);
|
2015-04-08 17:48:21 +02:00
|
|
|
CPPUNIT_TEST(testPostKeyEvent);
|
2015-03-16 17:42:38 +01:00
|
|
|
CPPUNIT_TEST(testPostMouseEvent);
|
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);
|
2015-05-20 17:56:33 +02:00
|
|
|
CPPUNIT_TEST(testSearch);
|
2015-05-29 12:05:32 +02:00
|
|
|
CPPUNIT_TEST(testDocumentSizeChanged);
|
2015-03-11 18:00:26 +01:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SwXTextDocument* createDoc(const char* pName);
|
2015-03-17 16:12:26 +01:00
|
|
|
static void callback(int nType, const char* pPayload, void* pData);
|
|
|
|
void callbackImpl(int nType, const char* pPayload);
|
|
|
|
Rectangle m_aInvalidation;
|
2015-05-29 12:05:32 +02:00
|
|
|
Size m_aDocumentSize;
|
2015-03-11 18:00:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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-17 16:12:26 +01:00
|
|
|
void SwTiledRenderingTest::callback(int nType, const char* pPayload, void* pData)
|
|
|
|
{
|
|
|
|
static_cast<SwTiledRenderingTest*>(pData)->callbackImpl(nType, pPayload);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwTiledRenderingTest::callbackImpl(int nType, const char* pPayload)
|
|
|
|
{
|
|
|
|
switch (nType)
|
|
|
|
{
|
|
|
|
case LOK_CALLBACK_INVALIDATE_TILES:
|
|
|
|
{
|
|
|
|
if (m_aInvalidation.IsEmpty())
|
|
|
|
{
|
|
|
|
uno::Sequence<OUString> aSeq = comphelper::string::convertCommaSeparated(OUString::createFromAscii(pPayload));
|
2015-05-29 12:05:32 +02:00
|
|
|
if (OString("EMPTY") == pPayload)
|
|
|
|
return;
|
2015-03-17 16:12:26 +01:00
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(4), aSeq.getLength());
|
|
|
|
m_aInvalidation.setX(aSeq[0].toInt32());
|
|
|
|
m_aInvalidation.setY(aSeq[1].toInt32());
|
|
|
|
m_aInvalidation.setWidth(aSeq[2].toInt32());
|
|
|
|
m_aInvalidation.setHeight(aSeq[3].toInt32());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-05-29 12:05:32 +02:00
|
|
|
case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED:
|
|
|
|
{
|
|
|
|
uno::Sequence<OUString> aSeq = comphelper::string::convertCommaSeparated(OUString::createFromAscii(pPayload));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(2), aSeq.getLength());
|
|
|
|
m_aDocumentSize.setWidth(aSeq[0].toInt32());
|
|
|
|
m_aDocumentSize.setHeight(aSeq[1].toInt32());
|
|
|
|
}
|
|
|
|
break;
|
2015-03-17 16:12:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwTiledRenderingTest::testRegisterCallback()
|
|
|
|
{
|
2015-03-30 14:47:43 +03:00
|
|
|
#ifdef MACOSX
|
|
|
|
// For some reason this particular test requires window system access on OS X.
|
|
|
|
|
|
|
|
// Without window system access, we do get a number of "<<<WARNING>>>
|
|
|
|
// AquaSalGraphics::CheckContext() FAILED!!!!" [sic] and " <Warning>: CGSConnectionByID: 0 is
|
|
|
|
// not a valid connection ID" warnings while running the other tests, too, but they still
|
|
|
|
// succeed.
|
|
|
|
|
|
|
|
if (!vcl::IsWindowSystemAvailable())
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2015-03-17 16:12:26 +01:00
|
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
|
|
|
pXTextDocument->registerCallback(&SwTiledRenderingTest::callback, this);
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
2015-03-25 20:41:42 +01:00
|
|
|
// Insert a character at the beginning of the document.
|
2015-03-17 16:12:26 +01:00
|
|
|
pWrtShell->Insert("x");
|
|
|
|
|
|
|
|
// Check that the top left 256x256px tile would be invalidated.
|
|
|
|
CPPUNIT_ASSERT(!m_aInvalidation.IsEmpty());
|
2015-03-24 22:10:35 +02:00
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
Rectangle aTopLeft(0, 0, 256*15, 256*15); // 1 px = 15 twips, assuming 96 DPI.
|
2015-03-24 16:59:22 +01:00
|
|
|
// FIXME - fails on Windows since about cbd48230bb3a90c4c485fa33123c6653234e02e9
|
|
|
|
// [plus minus few commits maybe]
|
2015-03-24 22:10:35 +02:00
|
|
|
// Also on OS X. But is tiled rendering even supposed to work on Windows and OS X?
|
2015-03-17 16:12:26 +01:00
|
|
|
CPPUNIT_ASSERT(m_aInvalidation.IsOver(aTopLeft));
|
2015-03-24 16:59:22 +01:00
|
|
|
#endif
|
2015-03-17 16:12:26 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 17:48:21 +02:00
|
|
|
void SwTiledRenderingTest::testPostKeyEvent()
|
|
|
|
{
|
|
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false);
|
|
|
|
SwShellCrsr* pShellCrsr = pWrtShell->getShellCrsr(false);
|
|
|
|
// Did we manage to go after the first character?
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(1), pShellCrsr->GetPoint()->nContent.GetIndex());
|
|
|
|
|
|
|
|
pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 'x', 0);
|
|
|
|
pXTextDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 'x', 0);
|
|
|
|
// Did we manage to insert the character after the first one?
|
2015-05-20 13:05:49 +02:00
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("Axaa bbb."), pShellCrsr->GetPoint()->nNode.GetNode().GetTextNode()->GetText());
|
2015-04-08 17:48:21 +02:00
|
|
|
}
|
|
|
|
|
2015-03-16 17:42:38 +01:00
|
|
|
void SwTiledRenderingTest::testPostMouseEvent()
|
|
|
|
{
|
|
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
pWrtShell->Right(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false);
|
|
|
|
SwShellCrsr* pShellCrsr = pWrtShell->getShellCrsr(false);
|
|
|
|
// Did we manage to go after the first character?
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(1), pShellCrsr->GetPoint()->nContent.GetIndex());
|
|
|
|
|
|
|
|
Point aStart = pShellCrsr->GetSttPos();
|
|
|
|
aStart.setX(aStart.getX() - 1000);
|
|
|
|
pXTextDocument->postMouseEvent(LOK_MOUSEEVENT_MOUSEBUTTONDOWN, aStart.getX(), aStart.getY(), 1);
|
|
|
|
pXTextDocument->postMouseEvent(LOK_MOUSEEVENT_MOUSEBUTTONUP, aStart.getX(), aStart.getY(), 1);
|
|
|
|
// The new cursor position must be before the first word.
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0), pShellCrsr->GetPoint()->nContent.GetIndex());
|
|
|
|
}
|
|
|
|
|
2015-03-13 14:50:09 +01:00
|
|
|
void SwTiledRenderingTest::testSetTextSelection()
|
|
|
|
{
|
2015-03-16 17:42:38 +01:00
|
|
|
SwXTextDocument* pXTextDocument = createDoc("dummy.fodt");
|
2015-03-13 14:50:09 +01:00
|
|
|
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?
|
2015-05-20 13:05:49 +02:00
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("bbb"), pShellCrsr->GetText());
|
2015-03-13 14:50:09 +01:00
|
|
|
|
|
|
|
// 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.
|
2015-05-20 13:05:49 +02:00
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("Aaa bbb"), pShellCrsr->GetText());
|
2015-05-15 09:58:25 +02:00
|
|
|
|
|
|
|
// Next: test that LOK_SETTEXTSELECTION_RESET + LOK_SETTEXTSELECTION_END can be used to create a selection.
|
|
|
|
pXTextDocument->setTextSelection(LOK_SETTEXTSELECTION_RESET, aStart.getX(), aStart.getY());
|
|
|
|
pXTextDocument->setTextSelection(LOK_SETTEXTSELECTION_END, aStart.getX() + 1000, aStart.getY());
|
2015-05-20 13:05:49 +02:00
|
|
|
CPPUNIT_ASSERT_EQUAL(OUString("Aaa b"), pShellCrsr->GetText());
|
2015-03-13 14:50:09 +01:00
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2015-05-25 23:26:19 +02:00
|
|
|
#if !(defined WNT || defined MACOSX)
|
2015-05-26 15:14:39 +02:00
|
|
|
void lcl_search(bool bBackward)
|
2015-05-20 17:56:33 +02:00
|
|
|
{
|
|
|
|
uno::Sequence<beans::PropertyValue> aPropertyValues(comphelper::InitPropertySequence(
|
|
|
|
{
|
|
|
|
{"SearchItem.SearchString", uno::makeAny(OUString("shape"))},
|
2015-05-26 15:14:39 +02:00
|
|
|
{"SearchItem.Backward", uno::makeAny(bBackward)}
|
2015-05-20 17:56:33 +02:00
|
|
|
}));
|
|
|
|
comphelper::dispatchCommand(".uno:ExecuteSearch", aPropertyValues);
|
|
|
|
}
|
2015-05-25 23:26:19 +02:00
|
|
|
#endif
|
2015-05-20 17:56:33 +02:00
|
|
|
|
|
|
|
void SwTiledRenderingTest::testSearch()
|
|
|
|
{
|
2015-05-21 11:29:04 +01:00
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
2015-05-20 17:56:33 +02:00
|
|
|
SwXTextDocument* pXTextDocument = createDoc("search.odt");
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
size_t nNode = pWrtShell->getShellCrsr(false)->Start()->nNode.GetNode().GetIndex();
|
|
|
|
|
|
|
|
// First hit, in the second paragraph, before the shape.
|
2015-05-26 15:14:39 +02:00
|
|
|
lcl_search(false);
|
2015-05-20 17:56:33 +02:00
|
|
|
CPPUNIT_ASSERT(!pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
size_t nActual = pWrtShell->getShellCrsr(false)->Start()->nNode.GetNode().GetIndex();
|
|
|
|
CPPUNIT_ASSERT_EQUAL(nNode + 1, nActual);
|
|
|
|
|
|
|
|
// Next hit, in the shape.
|
2015-05-26 15:14:39 +02:00
|
|
|
lcl_search(false);
|
2015-05-20 17:56:33 +02:00
|
|
|
CPPUNIT_ASSERT(pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
|
|
|
|
// Next hit, in the shape, still.
|
2015-05-26 15:14:39 +02:00
|
|
|
lcl_search(false);
|
2015-05-20 17:56:33 +02:00
|
|
|
CPPUNIT_ASSERT(pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
|
|
|
|
// Last hit, in the last paragraph, after the shape.
|
2015-05-26 15:14:39 +02:00
|
|
|
lcl_search(false);
|
2015-05-20 17:56:33 +02:00
|
|
|
CPPUNIT_ASSERT(!pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
nActual = pWrtShell->getShellCrsr(false)->Start()->nNode.GetNode().GetIndex();
|
|
|
|
CPPUNIT_ASSERT_EQUAL(nNode + 7, nActual);
|
2015-05-26 15:14:39 +02:00
|
|
|
|
|
|
|
// Now change direction and make sure that the first 2 hits are in the shape, but not the 3rd one.
|
|
|
|
lcl_search(true);
|
|
|
|
CPPUNIT_ASSERT(pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
lcl_search(true);
|
|
|
|
CPPUNIT_ASSERT(pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
lcl_search(true);
|
|
|
|
CPPUNIT_ASSERT(!pWrtShell->GetDrawView()->GetTextEditObject());
|
|
|
|
nActual = pWrtShell->getShellCrsr(false)->Start()->nNode.GetNode().GetIndex();
|
|
|
|
CPPUNIT_ASSERT_EQUAL(nNode + 1, nActual);
|
2015-05-21 11:29:04 +01:00
|
|
|
#endif
|
2015-05-20 17:56:33 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 12:05:32 +02:00
|
|
|
void SwTiledRenderingTest::testDocumentSizeChanged()
|
|
|
|
{
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
// Get the current document size.
|
|
|
|
SwXTextDocument* pXTextDocument = createDoc("2-pages.odt");
|
|
|
|
pXTextDocument->registerCallback(&SwTiledRenderingTest::callback, this);
|
|
|
|
SwWrtShell* pWrtShell = pXTextDocument->GetDocShell()->GetWrtShell();
|
|
|
|
pXTextDocument->initializeForTiledRendering();
|
|
|
|
Size aSize = pXTextDocument->getDocumentSize();
|
|
|
|
|
|
|
|
// Delete the second page and see how the size changes.
|
|
|
|
pWrtShell->Down(false);
|
|
|
|
pWrtShell->DelLeft();
|
|
|
|
// Document width should not change, this was 0.
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aSize.getWidth(), m_aDocumentSize.getWidth());
|
|
|
|
// Document height should be smaller now.
|
|
|
|
CPPUNIT_ASSERT(aSize.getHeight() > m_aDocumentSize.getHeight());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-03-11 18:00:26 +01:00
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(SwTiledRenderingTest);
|
|
|
|
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|