17a2c9e8e2
Change-Id: I6ed8c54c7c45931d91709cc818f2483c70197192 Reviewed-on: https://gerrit.libreoffice.org/38400 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
110 lines
2.8 KiB
C++
110 lines
2.8 KiB
C++
/* -*- 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 <memory>
|
|
#include "uiobject.hxx"
|
|
|
|
#include "ElementsDockingWindow.hxx"
|
|
|
|
ElementUIObject::ElementUIObject(const VclPtr<SmElementsControl>& xElementSelector,
|
|
const OUString& rID):
|
|
mxElementsSelector(xElementSelector),
|
|
maID(rID)
|
|
{
|
|
}
|
|
|
|
SmElement* ElementUIObject::get_element()
|
|
{
|
|
sal_uInt32 nID = maID.toUInt32();
|
|
size_t n = mxElementsSelector->maElementList.size();
|
|
if (nID >= n)
|
|
return nullptr;
|
|
|
|
return mxElementsSelector->maElementList[nID].get();
|
|
}
|
|
|
|
StringMap ElementUIObject::get_state()
|
|
{
|
|
StringMap aMap;
|
|
aMap["ID"] = maID;
|
|
|
|
SmElement* pElement = get_element();
|
|
if (pElement)
|
|
aMap["Text"] = pElement->getText();
|
|
|
|
return aMap;
|
|
}
|
|
|
|
void ElementUIObject::execute(const OUString& rAction,
|
|
const StringMap& /*rParameters*/)
|
|
{
|
|
if (rAction == "SELECT")
|
|
{
|
|
SmElement* pElement = get_element();
|
|
if (pElement)
|
|
mxElementsSelector->maSelectHdlLink.Call(*pElement);
|
|
}
|
|
}
|
|
|
|
ElementSelectorUIObject::ElementSelectorUIObject(const VclPtr<SmElementsControl>& xElementSelector):
|
|
WindowUIObject(xElementSelector),
|
|
mxElementsSelector(xElementSelector)
|
|
{
|
|
}
|
|
|
|
StringMap ElementSelectorUIObject::get_state()
|
|
{
|
|
StringMap aMap = WindowUIObject::get_state();
|
|
|
|
SmElement* pElement = mxElementsSelector->mpCurrentElement;
|
|
if (pElement)
|
|
aMap["CurrentEntry"] = pElement->getText();
|
|
|
|
aMap["CurrentSelection"] = OUString::number(mxElementsSelector->maCurrentSetId);
|
|
|
|
return aMap;
|
|
}
|
|
|
|
std::unique_ptr<UIObject> ElementSelectorUIObject::get_child(const OUString& rID)
|
|
{
|
|
size_t nID = rID.toInt32();
|
|
size_t n = mxElementsSelector->maElementList.size();
|
|
if (nID >= n)
|
|
throw css::uno::RuntimeException("invalid id");
|
|
|
|
return std::unique_ptr<UIObject>(new ElementUIObject(mxElementsSelector, rID));
|
|
}
|
|
|
|
std::set<OUString> ElementSelectorUIObject::get_children() const
|
|
{
|
|
std::set<OUString> aChildren;
|
|
|
|
size_t n = mxElementsSelector->maElementList.size();
|
|
for (size_t i = 0; i < n; ++i)
|
|
{
|
|
aChildren.insert(OUString::number(i));
|
|
}
|
|
|
|
return aChildren;
|
|
}
|
|
|
|
std::unique_ptr<UIObject> ElementSelectorUIObject::create(vcl::Window* pWindow)
|
|
{
|
|
SmElementsControl* pElementsControl = dynamic_cast<SmElementsControl*>(pWindow);
|
|
assert(pElementsControl);
|
|
|
|
return std::unique_ptr<UIObject>(new ElementSelectorUIObject(pElementsControl));
|
|
}
|
|
|
|
OUString ElementSelectorUIObject::get_name() const
|
|
{
|
|
return OUString("SmElementSelector");
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|