From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sd/source/ui/uitest/uiobject.cxx | 183 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 sd/source/ui/uitest/uiobject.cxx (limited to 'sd/source/ui/uitest') diff --git a/sd/source/ui/uitest/uiobject.cxx b/sd/source/ui/uitest/uiobject.cxx new file mode 100644 index 000000000..afd130ee2 --- /dev/null +++ b/sd/source/ui/uitest/uiobject.cxx @@ -0,0 +1,183 @@ +/* -*- 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 + +namespace +{ +class ImpressSdrObject : public SdrUIObject +{ +public: + ImpressSdrObject(const VclPtr& xImpressWin, const OUString& rName); + + SdrObject* get_object() override; + +private: + VclPtr mxWindow; + + OUString maName; +}; + +sd::DrawViewShell* getViewShell(const VclPtr& xWindow) +{ + sd::DrawViewShell* pViewShell = dynamic_cast(xWindow->GetViewShell()); + assert(pViewShell); + + return pViewShell; +} + +OUString getObjectName(SdrObject const* pObject) +{ + if (pObject->GetName().isEmpty()) + return "Unnamed Drawinglayer object " + OUString::number(pObject->GetOrdNum()); + else + return pObject->GetName(); +} + +SdrObject* getObject(const VclPtr& xWindow, std::u16string_view rName) +{ + SdrPage* pPage = getViewShell(xWindow)->getCurrentPage(); + + if (!pPage) + return nullptr; + + size_t nObjs = pPage->GetObjCount(); + for (size_t i = 0; i < nObjs; ++i) + { + SdrObject* pObj = pPage->GetObj(i); + if (rName == getObjectName(pObj)) + return pObj; + } + + return nullptr; +} +} + +ImpressSdrObject::ImpressSdrObject(const VclPtr& xImpressWin, const OUString& rName) + : mxWindow(xImpressWin) + , maName(rName) +{ +} + +SdrObject* ImpressSdrObject::get_object() { return getObject(mxWindow, maName); } + +ImpressWindowUIObject::ImpressWindowUIObject(const VclPtr& xWindow) + : WindowUIObject(xWindow) + , mxWindow(xWindow) +{ +} + +StringMap ImpressWindowUIObject::get_state() +{ + StringMap aMap = WindowUIObject::get_state(); + + aMap["SelectedText"] = getViewShell(mxWindow)->GetSelectionText(false); + aMap["CurrentSlide"] = OUString::number(getViewShell(mxWindow)->GetCurPagePos() + 1); + aMap["Zoom"] = OUString::number(getViewShell(mxWindow)->GetZoom()); + + return aMap; +} + +void ImpressWindowUIObject::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(); + getViewShell(mxWindow)->SetZoom(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(); + getViewShell(mxWindow)->SwitchPage(nVal - 1); + } + } + else if (rAction == "SELECT") + { + if (rParameters.find("OBJECT") != rParameters.end()) + { + auto itr = rParameters.find("OBJECT"); + OUString aName = itr->second; + SdrObject* pObj = getObject(mxWindow, aName); + SdrPageView* pPageView = getViewShell(mxWindow)->GetView()->GetSdrPageView(); + getViewShell(mxWindow)->GetView()->MarkObj(pObj, pPageView); + } + } + else if (rAction == "SIDEBAR") + { + SfxViewFrame* pViewFrm = SfxViewFrame::Current(); + DBG_ASSERT(pViewFrm, "ImpressWindowUIObject::execute: no viewframe"); + pViewFrm->ShowChildWindow(SID_SIDEBAR); + + auto itr = rParameters.find("PANEL"); + if (itr != rParameters.end()) + { + OUString aVal = itr->second; + ::sfx2::sidebar::Sidebar::ShowPanel(aVal, pViewFrm->GetFrame().GetFrameInterface()); + } + } + else if (rAction == "DESELECT") + { + getViewShell(mxWindow)->GetView()->UnMarkAll(); + } + else + WindowUIObject::execute(rAction, rParameters); +} + +std::unique_ptr ImpressWindowUIObject::get_child(const OUString& rID) +{ + return std::unique_ptr(new ImpressSdrObject(mxWindow, rID)); +} + +std::set ImpressWindowUIObject::get_children() const +{ + SdrPage* pPage = getViewShell(mxWindow)->getCurrentPage(); + + std::set aRet; + if (!pPage) + return aRet; + + size_t nObjs = pPage->GetObjCount(); + for (size_t i = 0; i < nObjs; ++i) + { + SdrObject* pObject = pPage->GetObj(i); + aRet.insert(getObjectName(pObject)); + } + + return aRet; +} + +OUString ImpressWindowUIObject::get_name() const { return "ImpressWindowUIObject"; } + +std::unique_ptr ImpressWindowUIObject::create(vcl::Window* pWindow) +{ + sd::Window* pWin = dynamic_cast(pWindow); + assert(pWin); + return std::unique_ptr(new ImpressWindowUIObject(pWin)); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3