1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/* -*- 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>
#include <com/sun/star/frame/XModel2.hpp>
#include <com/sun/star/text/XTextViewTextRangeSupplier.hpp>
#include <com/sun/star/util/XCloseable.hpp>
#include <vcl/scheduler.hxx>
#include <docsh.hxx>
#include <edtwin.hxx>
#include <unotextrange.hxx>
#include <view.hxx>
#include <wrtsh.hxx>
constexpr OUStringLiteral DATA_DIRECTORY = u"/sw/qa/uibase/uno/data/";
/// Covers sw/source/uibase/uno/ fixes.
class SwUibaseUnoTest : public SwModelTestBase
{
};
CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, testLockControllers)
{
mxComponent = loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument");
{
uno::Reference<frame::XModel> xModel(mxComponent, uno::UNO_QUERY_THROW);
xModel->lockControllers();
}
{
uno::Reference<util::XCloseable> xCloseable(mxComponent, uno::UNO_QUERY_THROW);
xCloseable->close(false);
}
// Without the accompanying fix in place, this test would have crashed.
mxComponent.clear();
}
CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, testCondFieldCachedValue)
{
load(DATA_DIRECTORY, "cond-field-cached-value.docx");
Scheduler::ProcessEventsToIdle();
// Without the accompanying fix in place, this test would have failed with:
// - Expected: 1
// - Actual :
// i.e. the conditional field lost its cached content.
getParagraph(2, "1");
}
CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, testCreateTextRangeByPixelPosition)
{
// Given a document with 2 characters, and the pixel position of the point between them:
SwDoc* pDoc = createSwDoc();
SwDocShell* pDocShell = pDoc->GetDocShell();
SwWrtShell* pWrtShell = pDocShell->GetWrtShell();
pWrtShell->Insert2("AZ");
pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false);
Point aLogic = pWrtShell->GetCharRect().Center();
SwView* pView = pDocShell->GetView();
SwEditWin& rEditWin = pView->GetEditWin();
Point aPixel = rEditWin.LogicToPixel(aLogic);
// When converting that pixel position to a document model position (text range):
uno::Reference<frame::XModel2> xModel(mxComponent, uno::UNO_QUERY);
uno::Reference<container::XEnumeration> xControllers = xModel->getControllers();
uno::Reference<text::XTextViewTextRangeSupplier> xController(xControllers->nextElement(),
uno::UNO_QUERY);
awt::Point aPoint(aPixel.getX(), aPixel.getY());
uno::Reference<text::XTextRange> xTextRange
= xController->createTextRangeByPixelPosition(aPoint);
// Then make sure that text range points after the first character:
auto pTextRange = dynamic_cast<SwXTextRange*>(xTextRange.get());
SwPaM aPaM(pDoc->GetNodes());
pTextRange->GetPositions(aPaM);
sal_Int32 nActual = aPaM.GetPoint()->nContent.GetIndex();
// Without the needed PixelToLogic() call in place, this test would have failed with:
// - Expected: 1
// - Actual : 0
// i.e. the returned text range pointed before the first character, not between the first and
// the second character.
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(1), nActual);
}
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|