Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / framework / source / uiconfiguration / CommandImageResolver.cxx
blobb443936684d9e44d5cf57be8ae3d0f63ddc0229e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include "CommandImageResolver.hxx"
11 #include <vcl/settings.hxx>
12 #include <vcl/svapp.hxx>
13 #include <rtl/ustrbuf.hxx>
14 #include <tools/urlobj.hxx>
16 using css::uno::Sequence;
18 namespace vcl
21 namespace
24 static const o3tl::enumarray<ImageType, const char*> ImageType_Prefixes =
26 "cmd/sc_",
27 "cmd/lc_",
28 "cmd/32/"
31 OUString lclConvertToCanonicalName(const OUString& rFileName)
33 bool bRemoveSlash(true);
34 sal_Int32 nLength = rFileName.getLength();
35 const sal_Unicode* pString = rFileName.getStr();
37 OUStringBuffer aBuffer(nLength*2);
39 for (sal_Int32 i = 0; i < nLength; i++)
41 const sal_Unicode cCurrentChar = pString[i];
42 switch (cCurrentChar)
44 // map forbidden characters to escape
45 case '/':
46 if (!bRemoveSlash)
47 aBuffer.append("%2f");
48 break;
49 case '\\': aBuffer.append("%5c"); bRemoveSlash = false; break;
50 case ':': aBuffer.append("%3a"); bRemoveSlash = false; break;
51 case '*': aBuffer.append("%2a"); bRemoveSlash = false; break;
52 case '?': aBuffer.append("%3f"); bRemoveSlash = false; break;
53 case '<': aBuffer.append("%3c"); bRemoveSlash = false; break;
54 case '>': aBuffer.append("%3e"); bRemoveSlash = false; break;
55 case '|': aBuffer.append("%7c"); bRemoveSlash = false; break;
56 default:
57 aBuffer.append(cCurrentChar); bRemoveSlash = false; break;
60 return aBuffer.makeStringAndClear();
63 } // end anonymous namespace
65 CommandImageResolver::CommandImageResolver()
69 CommandImageResolver::~CommandImageResolver()
73 void CommandImageResolver::registerCommands(Sequence<OUString>& aCommandSequence)
75 sal_Int32 nSequenceSize = aCommandSequence.getLength();
77 m_aImageCommandNameVector.resize(nSequenceSize);
78 m_aImageNameVector.resize(nSequenceSize);
80 for (sal_Int32 i = 0; i < nSequenceSize; ++i)
82 OUString aCommandName(aCommandSequence[i]);
83 OUString aImageName;
85 m_aImageCommandNameVector[i] = aCommandName;
87 if (aCommandName.indexOf(".uno:") != 0)
89 INetURLObject aUrlObject(aCommandName, INetURLObject::EncodeMechanism::All);
90 aImageName = aUrlObject.GetURLPath();
91 aImageName = lclConvertToCanonicalName(aImageName);
93 else
95 // just remove the schema
96 if (aCommandName.getLength() > 5)
97 aImageName = aCommandName.copy(5);
99 // Search for query part.
100 if (aImageName.indexOf('?') != -1)
101 aImageName = lclConvertToCanonicalName(aImageName);
104 // Image names are not case-dependent. Always use lower case characters to
105 // reflect this.
106 aImageName = aImageName.toAsciiLowerCase() + ".png";
108 m_aImageNameVector[i] = aImageName;
109 m_aCommandToImageNameMap[aCommandName] = aImageName;
113 bool CommandImageResolver::hasImage(const OUString& rCommandURL)
115 CommandToImageNameMap::const_iterator pIterator = m_aCommandToImageNameMap.find(rCommandURL);
116 return pIterator != m_aCommandToImageNameMap.end();
119 ImageList* CommandImageResolver::getImageList(ImageType nImageType)
121 const OUString sIconTheme = Application::GetSettings().GetStyleSettings().DetermineIconTheme();
123 if (sIconTheme != m_sIconTheme)
125 m_sIconTheme = sIconTheme;
126 for (auto& rp : m_pImageList)
127 rp.reset();
130 if (!m_pImageList[nImageType])
132 OUString sIconPath = OUString::createFromAscii(ImageType_Prefixes[nImageType]);
133 m_pImageList[nImageType].reset( new ImageList(m_aImageNameVector, sIconPath) );
136 return m_pImageList[nImageType].get();
139 Image CommandImageResolver::getImageFromCommandURL(ImageType nImageType, const OUString& rCommandURL)
141 CommandToImageNameMap::const_iterator pIterator = m_aCommandToImageNameMap.find(rCommandURL);
142 if (pIterator != m_aCommandToImageNameMap.end())
144 ImageList* pImageList = getImageList(nImageType);
145 return pImageList->GetImage(pIterator->second);
147 return Image();
150 } // end namespace vcl
152 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */