2019-07-15 11:49:00 -05:00
|
|
|
/* -*- 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <vcl/NotebookBarAddonsMerger.hxx>
|
|
|
|
#include <vcl/commandinfoprovider.hxx>
|
2019-07-24 16:21:10 -05:00
|
|
|
#include <vcl/vclenum.hxx>
|
2019-07-15 11:49:00 -05:00
|
|
|
#include <vcl/toolbox.hxx>
|
2019-08-05 09:57:54 -05:00
|
|
|
#include <osl/module.hxx>
|
|
|
|
#include <vcl/OptionalBox.hxx>
|
|
|
|
#include <sfx2/sidebar/SidebarToolBox.hxx>
|
|
|
|
#include <vcl/IPrioritable.hxx>
|
2019-07-15 11:49:00 -05:00
|
|
|
|
2019-07-19 16:13:15 -05:00
|
|
|
static const char STYLE_TEXT[] = "Text";
|
|
|
|
static const char STYLE_ICON[] = "Icon";
|
|
|
|
|
2019-07-15 11:49:00 -05:00
|
|
|
static const char MERGE_NOTEBOOKBAR_URL[] = "URL";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_TITLE[] = "Title";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_IMAGEID[] = "ImageIdentifier";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_CONTEXT[] = "Context";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_TARGET[] = "Target";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_CONTROLTYPE[] = "ControlType";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_WIDTH[] = "Width";
|
|
|
|
static const char MERGE_NOTEBOOKBAR_STYLE[] = "Style";
|
|
|
|
|
2019-07-24 16:21:10 -05:00
|
|
|
static void GetAddonNotebookBarItem(const css::uno::Sequence<css::beans::PropertyValue>& pExtension,
|
|
|
|
AddonNotebookBarItem& aAddonNotebookBarItem)
|
2019-07-15 11:49:00 -05:00
|
|
|
{
|
2019-07-24 16:21:10 -05:00
|
|
|
for (int nIdx = 0; nIdx < pExtension.getLength(); nIdx++)
|
|
|
|
{
|
|
|
|
if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_URL)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sCommandURL;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_TITLE)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sLabel;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_IMAGEID)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sImageIdentifier;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_CONTEXT)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sContext;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_TARGET)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sTarget;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_CONTROLTYPE)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sControlType;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_WIDTH)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.nWidth;
|
|
|
|
else if (pExtension[nIdx].Name == MERGE_NOTEBOOKBAR_STYLE)
|
|
|
|
pExtension[nIdx].Value >>= aAddonNotebookBarItem.sStyle;
|
|
|
|
}
|
2019-07-15 11:49:00 -05:00
|
|
|
}
|
|
|
|
|
2019-08-05 09:57:54 -05:00
|
|
|
static void CreateNotebookBarToolBox(vcl::Window* pNotebookbarToolBox,
|
|
|
|
const css::uno::Reference<css::frame::XFrame>& m_xFrame,
|
|
|
|
const AddonNotebookBarItem& aAddonNotebookBarItem,
|
|
|
|
const std::vector<Image>& aImageVec,
|
|
|
|
const unsigned long& nIter)
|
|
|
|
{
|
|
|
|
sal_uInt16 nItemId = 0;
|
|
|
|
ToolBox* pToolbox = dynamic_cast<ToolBox*>(pNotebookbarToolBox);
|
|
|
|
if (pToolbox)
|
|
|
|
{
|
|
|
|
pToolbox->InsertSeparator();
|
|
|
|
pToolbox->Show();
|
|
|
|
Size aSize(0, 0);
|
|
|
|
Image sImage;
|
|
|
|
pToolbox->InsertItem(aAddonNotebookBarItem.sCommandURL, m_xFrame, ToolBoxItemBits::NONE,
|
|
|
|
aSize);
|
|
|
|
nItemId = pToolbox->GetItemId(aAddonNotebookBarItem.sCommandURL);
|
|
|
|
pToolbox->SetItemCommand(nItemId, aAddonNotebookBarItem.sCommandURL);
|
|
|
|
pToolbox->SetQuickHelpText(nItemId, aAddonNotebookBarItem.sLabel);
|
|
|
|
|
|
|
|
if (nIter < aImageVec.size())
|
|
|
|
{
|
|
|
|
sImage = aImageVec[nIter];
|
|
|
|
if (!sImage)
|
|
|
|
{
|
|
|
|
sImage = vcl::CommandInfoProvider::GetImageForCommand(
|
|
|
|
aAddonNotebookBarItem.sImageIdentifier, m_xFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aAddonNotebookBarItem.sStyle == STYLE_TEXT)
|
|
|
|
pToolbox->SetItemText(nItemId, aAddonNotebookBarItem.sLabel);
|
|
|
|
else if (aAddonNotebookBarItem.sStyle == STYLE_ICON)
|
|
|
|
pToolbox->SetItemImage(nItemId, sImage);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pToolbox->SetItemText(nItemId, aAddonNotebookBarItem.sLabel);
|
|
|
|
pToolbox->SetItemImage(nItemId, sImage);
|
|
|
|
}
|
|
|
|
pToolbox->Show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 16:21:10 -05:00
|
|
|
NotebookBarAddonsMerger::NotebookBarAddonsMerger() {}
|
|
|
|
|
|
|
|
NotebookBarAddonsMerger::~NotebookBarAddonsMerger() {}
|
|
|
|
|
2019-07-15 11:49:00 -05:00
|
|
|
void NotebookBarAddonsMerger::MergeNotebookBarAddons(
|
2019-09-03 04:54:48 -05:00
|
|
|
vcl::Window* pParent, const VclBuilder::customMakeWidget& pFunction,
|
2019-08-05 09:57:54 -05:00
|
|
|
const css::uno::Reference<css::frame::XFrame>& m_xFrame,
|
2019-09-03 04:54:48 -05:00
|
|
|
const NotebookBarAddonsItem& aNotebookBarAddonsItem, VclBuilder::stringmap& rMap)
|
2019-07-15 11:49:00 -05:00
|
|
|
{
|
|
|
|
std::vector<Image> aImageVec = aNotebookBarAddonsItem.aImageValues;
|
|
|
|
unsigned long nIter = 0;
|
2019-08-05 09:57:54 -05:00
|
|
|
sal_uInt16 nPriorityIdx = aImageVec.size();
|
2019-07-15 11:49:00 -05:00
|
|
|
css::uno::Sequence<css::uno::Sequence<css::beans::PropertyValue>> aExtension;
|
|
|
|
for (unsigned long nIdx = 0; nIdx < aNotebookBarAddonsItem.aAddonValues.size(); nIdx++)
|
|
|
|
{
|
|
|
|
aExtension = aNotebookBarAddonsItem.aAddonValues[nIdx];
|
|
|
|
|
|
|
|
for (int nSecIdx = 0; nSecIdx < aExtension.getLength(); nSecIdx++)
|
|
|
|
{
|
2019-08-05 09:57:54 -05:00
|
|
|
VclPtr<vcl::Window> pOptionalParent;
|
|
|
|
pOptionalParent = VclPtr<OptionalBox>::Create(pParent);
|
|
|
|
pOptionalParent->Show();
|
|
|
|
|
|
|
|
vcl::IPrioritable* pPrioritable
|
|
|
|
= dynamic_cast<vcl::IPrioritable*>(pOptionalParent.get());
|
|
|
|
if (pPrioritable)
|
|
|
|
pPrioritable->SetPriority(nPriorityIdx - nIter);
|
|
|
|
|
|
|
|
VclPtr<vcl::Window> pNotebookbarToolBox;
|
|
|
|
pFunction(pNotebookbarToolBox, pOptionalParent, rMap);
|
|
|
|
|
2019-07-15 11:49:00 -05:00
|
|
|
AddonNotebookBarItem aAddonNotebookBarItem;
|
|
|
|
const css::uno::Sequence<css::beans::PropertyValue> pExtension = aExtension[nSecIdx];
|
2019-07-24 16:21:10 -05:00
|
|
|
GetAddonNotebookBarItem(pExtension, aAddonNotebookBarItem);
|
2019-08-05 09:57:54 -05:00
|
|
|
|
|
|
|
CreateNotebookBarToolBox(pNotebookbarToolBox, m_xFrame, aAddonNotebookBarItem,
|
|
|
|
aImageVec, nIter);
|
|
|
|
nIter++;
|
2019-07-24 16:21:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotebookBarAddonsMerger::MergeNotebookBarMenuAddons(
|
|
|
|
PopupMenu* pPopupMenu, sal_Int16 nItemId, const OString& sItemIdName,
|
|
|
|
NotebookBarAddonsItem& aNotebookBarAddonsItem)
|
|
|
|
{
|
|
|
|
std::vector<Image> aImageVec = aNotebookBarAddonsItem.aImageValues;
|
|
|
|
unsigned long nIter = 0;
|
|
|
|
css::uno::Sequence<css::uno::Sequence<css::beans::PropertyValue>> aExtension;
|
|
|
|
for (unsigned long nIdx = 0; nIdx < aNotebookBarAddonsItem.aAddonValues.size(); nIdx++)
|
|
|
|
{
|
|
|
|
aExtension = aNotebookBarAddonsItem.aAddonValues[nIdx];
|
|
|
|
|
|
|
|
for (int nSecIdx = 0; nSecIdx < aExtension.getLength(); nSecIdx++)
|
|
|
|
{
|
|
|
|
AddonNotebookBarItem aAddonNotebookBarItem;
|
|
|
|
Image sImage;
|
|
|
|
MenuItemBits nBits = MenuItemBits::ICON;
|
|
|
|
const css::uno::Sequence<css::beans::PropertyValue> pExtension = aExtension[nSecIdx];
|
|
|
|
|
|
|
|
GetAddonNotebookBarItem(pExtension, aAddonNotebookBarItem);
|
|
|
|
|
|
|
|
pPopupMenu->InsertItem(nItemId, aAddonNotebookBarItem.sLabel, nBits, sItemIdName);
|
|
|
|
pPopupMenu->SetItemCommand(nItemId, aAddonNotebookBarItem.sCommandURL);
|
|
|
|
|
|
|
|
if (nIter < aImageVec.size())
|
|
|
|
{
|
|
|
|
sImage = aImageVec[nIter];
|
|
|
|
nIter++;
|
|
|
|
}
|
|
|
|
pPopupMenu->SetItemImage(nItemId, sImage);
|
|
|
|
|
|
|
|
if (nSecIdx == aExtension.getLength() - 1)
|
|
|
|
pPopupMenu->InsertSeparator();
|
|
|
|
|
|
|
|
++nItemId;
|
2019-07-15 11:49:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|