blob: bf630740654bc3ebd8e8570e29b740a10659bf17 (
plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* -*- 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 "uiobject.hxx"
#include "edtwin.hxx"
#include "view.hxx"
#include "wrtsh.hxx"
SwEditWinUIObject::SwEditWinUIObject(VclPtr<SwEditWin> xEditWin):
WindowUIObject(xEditWin),
mxEditWin(xEditWin)
{
}
namespace {
SwWrtShell& getWrtShell(VclPtr<SwEditWin> const & xEditWin)
{
return xEditWin->GetView().GetWrtShell();
}
}
StringMap SwEditWinUIObject::get_state()
{
StringMap aMap = WindowUIObject::get_state();
aMap["SelectedText"] = mxEditWin->GetView().GetSelectionText();
sal_uInt16 nPageNum = 0;
sal_uInt16 nVirtPageNum = 0;
SwWrtShell& rWrtShell = getWrtShell(mxEditWin);
rWrtShell.GetPageNum(nPageNum, nVirtPageNum);
aMap["CurrentPage"] = OUString::number(nPageNum);
rWrtShell.GetPageNum(nPageNum, nVirtPageNum, false);
aMap["TopVisiblePage"] = OUString::number(nPageNum);
sal_uInt16 nPages = rWrtShell.GetPageCnt();
aMap["Pages"] = OUString::number(nPages);
aMap["StartWord"] = OUString::boolean(rWrtShell.IsStartWord());
aMap["EndWord"] = OUString::boolean(rWrtShell.IsEndWord());
aMap["StartSentence"] = OUString::boolean(rWrtShell.IsStartSentence());
aMap["EndSentence"] = OUString::boolean(rWrtShell.IsEndSentence());
aMap["StartPara"] = OUString::boolean(rWrtShell.IsSttPara());
aMap["EndPara"] = OUString::boolean(rWrtShell.IsEndPara());
aMap["StartDoc"] = OUString::boolean(rWrtShell.IsStartOfDoc());
aMap["EndDoc"] = OUString::boolean(rWrtShell.IsEndOfDoc());
return aMap;
}
void SwEditWinUIObject::execute(const OUString& rAction,
const StringMap& rParameters)
{
if (rAction == "SET")
{
if (rParameters.find("ZOOM") != rParameters.end())
{
auto itr = rParameters.find("ZOOM");
OUString aVal = itr->second;
sal_Int32 nVal = aVal.toInt32();
mxEditWin->GetView().SetZoom(SvxZoomType::PERCENT, nVal);
}
}
else if (rAction == "GOTO")
{
if (rParameters.find("PAGE") != rParameters.end())
{
auto itr = rParameters.find("PAGE");
OUString aVal = itr->second;
sal_Int32 nVal = aVal.toInt32();
getWrtShell(mxEditWin).GotoPage(nVal, false);
}
}
else if (rAction == "SELECT")
{
if (rParameters.find("START_POS") != rParameters.end())
{
auto itr = rParameters.find("START_POS");
OUString aStartPos = itr->second;
sal_Int32 nStartPos = aStartPos.toInt32();
itr = rParameters.find("END_POS");
assert(itr != rParameters.end());
OUString aEndPos = itr->second;
sal_Int32 nEndPos = aEndPos.toInt32();
getWrtShell(mxEditWin).SelectText(nStartPos, nEndPos);
}
}
else
WindowUIObject::execute(rAction, rParameters);
}
OUString SwEditWinUIObject::get_name() const
{
return OUString("SwEditWinUIObject");
}
std::unique_ptr<UIObject> SwEditWinUIObject::create(vcl::Window* pWindow)
{
SwEditWin* pEditWin = dynamic_cast<SwEditWin*>(pWindow);
assert(pEditWin);
return std::unique_ptr<UIObject>(new SwEditWinUIObject(pEditWin));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|