summaryrefslogtreecommitdiff
path: root/vcl/source/window/NotebookBarAddonsMerger.cxx
blob: d65aba9624f8c0f70c705fc748119ec2189a0941 (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
115
116
/* -*- 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>
#include <vcl/toolbox.hxx>

static const char STYLE_TEXT[] = "Text";
static const char STYLE_ICON[] = "Icon";

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";

NotebookBarAddonsMerger::NotebookBarAddonsMerger(
    vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& m_xFrame,
    const NotebookBarAddonsItem& aNotebookBarAddonsItem)
{
    MergeNotebookBarAddons(pParent, m_xFrame, aNotebookBarAddonsItem);
}

void NotebookBarAddonsMerger::MergeNotebookBarAddons(
    vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& m_xFrame,
    const 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;
            const css::uno::Sequence<css::beans::PropertyValue> pExtension = aExtension[nSecIdx];
            for (int nRes = 0; nRes < pExtension.getLength(); nRes++)
            {
                if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_URL)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sCommandURL;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_TITLE)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sLabel;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_IMAGEID)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sImageIdentifier;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_CONTEXT)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sContext;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_TARGET)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sTarget;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_CONTROLTYPE)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sControlType;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_WIDTH)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.nWidth;
                else if (pExtension[nRes].Name == MERGE_NOTEBOOKBAR_STYLE)
                    pExtension[nRes].Value >>= aAddonNotebookBarItem.sStyle;
            }

            sal_uInt16 nItemId = 0;
            ToolBox* pToolbox = dynamic_cast<ToolBox*>(pParent);
            if (pToolbox)
            {
                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);
                    }
                    nIter++;
                }

                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->InsertSeparator();
        }
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */