From 267c6f2ac71f92999e969232431ba04678e7437e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:54:39 +0200 Subject: Adding upstream version 4:24.2.0. Signed-off-by: Daniel Baumann --- sw/source/uibase/uitest/uiobject.cxx | 249 +++++++++++++++++++++++++++++++++++ 1 file changed, 249 insertions(+) create mode 100644 sw/source/uibase/uitest/uiobject.cxx (limited to 'sw/source/uibase/uitest') diff --git a/sw/source/uibase/uitest/uiobject.cxx b/sw/source/uibase/uitest/uiobject.cxx new file mode 100644 index 0000000000..097769e370 --- /dev/null +++ b/sw/source/uibase/uitest/uiobject.cxx @@ -0,0 +1,249 @@ +/* -*- 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 +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +SwEditWinUIObject::SwEditWinUIObject(const VclPtr& xEditWin): + WindowUIObject(xEditWin), + mxEditWin(xEditWin) +{ +} + +namespace { + +SwWrtShell& getWrtShell(VclPtr 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); + aMap["Zoom"] = OUString::number(rWrtShell.GetViewOptions()->GetZoom()); + + 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; + TextFrameIndex const nStartPos(aStartPos.toInt32()); + + itr = rParameters.find("END_POS"); + assert(itr != rParameters.end()); + OUString aEndPos = itr->second; + TextFrameIndex const nEndPos(aEndPos.toInt32()); + + auto & shell = getWrtShell(mxEditWin); + if (shell.GetCursor_()->GetPoint()->GetNode().GetTextNode()) + { + shell.Push(); + shell.MovePara(GoCurrPara, fnParaEnd); + TextFrameIndex const len(shell.GetCursorPointAsViewIndex()); + shell.Pop(SwCursorShell::PopMode::DeleteCurrent); + SAL_WARN_IF( + sal_Int32(nStartPos) < 0 || nStartPos > len || sal_Int32(nEndPos) < 0 || nEndPos > len, "sw.ui", + "SELECT START/END_POS " << sal_Int32(nStartPos) << ".." << sal_Int32(nEndPos) << " outside 0.." << sal_Int32(len)); + shell.SelectTextView( + std::clamp(nStartPos, TextFrameIndex(0), len), std::clamp(nEndPos, TextFrameIndex(0), len)); + } + else + { + SAL_WARN("sw.ui", "SELECT without SwTextNode"); + } + } + } + else if (rAction == "SIDEBAR") + { + SfxViewFrame* pViewFrm = SfxViewFrame::Current(); + DBG_ASSERT(pViewFrm, "SwEditWinUIObject::execute: no viewframe"); + pViewFrm->ShowChildWindow(SID_SIDEBAR); + + if (rParameters.find("PANEL") != rParameters.end()) + { + auto itr = rParameters.find("PANEL"); + OUString aVal = itr->second; + ::sfx2::sidebar::Sidebar::ShowPanel(aVal, pViewFrm->GetFrame().GetFrameInterface()); + } + } + else + WindowUIObject::execute(rAction, rParameters); +} + +OUString SwEditWinUIObject::get_name() const +{ + return "SwEditWinUIObject"; +} + +std::unique_ptr SwEditWinUIObject::create(vcl::Window* pWindow) +{ + SwEditWin* pEditWin = dynamic_cast(pWindow); + assert(pEditWin); + return std::unique_ptr(new SwEditWinUIObject(pEditWin)); +} + +CommentUIObject::CommentUIObject(const VclPtr& xCommentUIObject): + WindowUIObject(xCommentUIObject), + mxCommentUIObject(xCommentUIObject) +{ +} + +StringMap CommentUIObject::get_state() +{ + StringMap aMap = WindowUIObject::get_state(); + aMap["Author"] = mxCommentUIObject->GetAuthor(); + aMap["ReadOnly"] = OUString::boolean(mxCommentUIObject->IsReadOnly()); + aMap["Resolved"] = OUString::boolean(mxCommentUIObject->IsResolved()); + aMap["Visible"] = OUString::boolean(mxCommentUIObject->IsVisible()); + + aMap["Text"] = mxCommentUIObject->GetOutliner()->GetEditEngine().GetText(); + aMap["SelectedText"] = mxCommentUIObject->GetOutlinerView()->GetEditView().GetSelected(); + return aMap; +} + +void CommentUIObject::execute(const OUString& rAction, + const StringMap& rParameters) +{ + if (rAction == "SELECT") + { + if (rParameters.find("FROM") != rParameters.end() && + rParameters.find("TO") != rParameters.end()) + { + tools::Long nMin = rParameters.find("FROM")->second.toInt32(); + tools::Long nMax = rParameters.find("TO")->second.toInt32(); + ESelection aNewSelection( 0 , nMin, mxCommentUIObject->GetOutliner()->GetParagraphCount()-1, nMax ); + mxCommentUIObject->GetOutlinerView()->SetSelection( aNewSelection ); + } + } + else if (rAction == "LEAVE") + { + mxCommentUIObject->SwitchToFieldPos(); + } + else if (rAction == "HIDE") + { + mxCommentUIObject->HideNote(); + } + else if (rAction == "SHOW") + { + mxCommentUIObject->ShowNote(); + } + else if (rAction == "DELETE") + { + mxCommentUIObject->Delete(); + } + else if (rAction == "RESOLVE") + { + mxCommentUIObject->SetResolved(true); + } + else + WindowUIObject::execute(rAction, rParameters); +} + +std::unique_ptr CommentUIObject::create(vcl::Window* pWindow) +{ + sw::annotation::SwAnnotationWin* pCommentUIObject = dynamic_cast(pWindow); + assert(pCommentUIObject); + return std::unique_ptr(new CommentUIObject(pCommentUIObject)); +} + +OUString CommentUIObject::get_name() const +{ + return "CommentUIObject"; +} + +PageBreakUIObject::PageBreakUIObject(const VclPtr& xPageBreakUIObject): + WindowUIObject(xPageBreakUIObject), + mxPageBreakUIObject(xPageBreakUIObject) +{ +} + +void PageBreakUIObject::execute(const OUString& rAction, + const StringMap& rParameters) +{ + if (rAction == "DELETE" || rAction == "EDIT") + mxPageBreakUIObject->execute(rAction.toAsciiLowerCase()); + else + WindowUIObject::execute(rAction, rParameters); +} + +std::unique_ptr PageBreakUIObject::create(vcl::Window* pWindow) +{ + SwBreakDashedLine* pPageBreakWin = dynamic_cast(pWindow); + assert(pPageBreakWin); + return std::unique_ptr(new PageBreakUIObject(pPageBreakWin)); +} + +OUString PageBreakUIObject::get_name() const +{ + return "PageBreakUIObject"; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3