Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <sfx2/sidebar/Tools.hxx>
21 :
22 : #include <sfx2/sidebar/Theme.hxx>
23 :
24 : #include <sfx2/imagemgr.hxx>
25 : #include <comphelper/processfactory.hxx>
26 : #include <comphelper/namedvaluecollection.hxx>
27 : #include <vcl/gradient.hxx>
28 :
29 : #include <com/sun/star/frame/XDispatchProvider.hpp>
30 : #include <com/sun/star/graphic/GraphicProvider.hpp>
31 : #include <com/sun/star/util/URLTransformer.hpp>
32 : #include <com/sun/star/frame/ModuleManager.hpp>
33 :
34 : #include <cstring>
35 :
36 : using namespace css;
37 : using namespace css::uno;
38 :
39 :
40 : namespace sfx2 { namespace sidebar {
41 :
42 3216 : Image Tools::GetImage (
43 : const ::rtl::OUString& rsImageURL,
44 : const ::rtl::OUString& rsHighContrastImageURL,
45 : const Reference<frame::XFrame>& rxFrame)
46 : {
47 3216 : if (Theme::IsHighContrastMode())
48 0 : return GetImage(rsHighContrastImageURL, rxFrame);
49 : else
50 3216 : return GetImage(rsImageURL, rxFrame);
51 : }
52 :
53 :
54 :
55 :
56 16830 : Image Tools::GetImage (
57 : const ::rtl::OUString& rsURL,
58 : const Reference<frame::XFrame>& rxFrame)
59 : {
60 16830 : if (rsURL.getLength() > 0)
61 : {
62 5364 : const sal_Char sUnoCommandPrefix[] = ".uno:";
63 5364 : const sal_Char sCommandImagePrefix[] = "private:commandimage/";
64 5364 : const sal_Int32 nCommandImagePrefixLength = strlen(sCommandImagePrefix);
65 :
66 5364 : if (rsURL.startsWith(sUnoCommandPrefix))
67 : {
68 0 : const Image aPanelImage (::GetImage(rxFrame, rsURL, false));
69 0 : return aPanelImage;
70 : }
71 5364 : else if (rsURL.startsWith(sCommandImagePrefix))
72 : {
73 0 : ::rtl::OUStringBuffer aCommandName;
74 0 : aCommandName.appendAscii(sUnoCommandPrefix);
75 0 : aCommandName.append(rsURL.copy(nCommandImagePrefixLength));
76 0 : const ::rtl::OUString sCommandName (aCommandName.makeStringAndClear());
77 :
78 0 : const Image aPanelImage (::GetImage(rxFrame, sCommandName, false));
79 0 : return aPanelImage;
80 : }
81 : else
82 : {
83 5364 : const Reference<XComponentContext> xContext (::comphelper::getProcessComponentContext());
84 : const Reference<graphic::XGraphicProvider> xGraphicProvider =
85 5364 : graphic::GraphicProvider::create( xContext );
86 5364 : ::comphelper::NamedValueCollection aMediaProperties;
87 5364 : aMediaProperties.put("URL", rsURL);
88 : const Reference<graphic::XGraphic> xGraphic (
89 5364 : xGraphicProvider->queryGraphic(aMediaProperties.getPropertyValues()),
90 5364 : UNO_QUERY);
91 5364 : if (xGraphic.is())
92 5364 : return Image(xGraphic);
93 : }
94 : }
95 11466 : return Image();
96 : }
97 :
98 :
99 :
100 :
101 184 : css::awt::Gradient Tools::VclToAwtGradient (const Gradient aVclGradient)
102 : {
103 : css::awt::Gradient aAwtGradient (
104 184 : awt::GradientStyle(aVclGradient.GetStyle()),
105 184 : aVclGradient.GetStartColor().GetRGBColor(),
106 184 : aVclGradient.GetEndColor().GetRGBColor(),
107 184 : aVclGradient.GetAngle(),
108 184 : aVclGradient.GetBorder(),
109 184 : aVclGradient.GetOfsX(),
110 184 : aVclGradient.GetOfsY(),
111 184 : aVclGradient.GetStartIntensity(),
112 184 : aVclGradient.GetEndIntensity(),
113 1840 : aVclGradient.GetSteps());
114 184 : return aAwtGradient;
115 : }
116 :
117 :
118 :
119 :
120 168 : Gradient Tools::AwtToVclGradient (const css::awt::Gradient aAwtGradient)
121 : {
122 : Gradient aVclGradient (
123 : GradientStyle(aAwtGradient.Style),
124 : aAwtGradient.StartColor,
125 168 : aAwtGradient.EndColor);
126 168 : aVclGradient.SetAngle(aAwtGradient.Angle);
127 168 : aVclGradient.SetBorder(aAwtGradient.Border);
128 168 : aVclGradient.SetOfsX(aAwtGradient.XOffset);
129 168 : aVclGradient.SetOfsY(aAwtGradient.YOffset);
130 168 : aVclGradient.SetStartIntensity(aAwtGradient.StartIntensity);
131 168 : aVclGradient.SetEndIntensity(aAwtGradient.EndIntensity);
132 168 : aVclGradient.SetSteps(aAwtGradient.StepCount);
133 :
134 168 : return aVclGradient;
135 : }
136 :
137 :
138 :
139 :
140 30068 : util::URL Tools::GetURL (const ::rtl::OUString& rsCommand)
141 : {
142 30068 : util::URL aURL;
143 30068 : aURL.Complete = rsCommand;
144 :
145 60136 : const Reference<XComponentContext> xComponentContext (::comphelper::getProcessComponentContext());
146 60136 : const Reference<util::XURLTransformer> xParser = util::URLTransformer::create( xComponentContext );
147 30068 : xParser->parseStrict(aURL);
148 :
149 60136 : return aURL;
150 : }
151 :
152 :
153 :
154 :
155 4700 : Reference<frame::XDispatch> Tools::GetDispatch (
156 : const css::uno::Reference<css::frame::XFrame>& rxFrame,
157 : const util::URL& rURL)
158 : {
159 4700 : Reference<frame::XDispatchProvider> xProvider (rxFrame, UNO_QUERY_THROW);
160 4700 : Reference<frame::XDispatch> xDispatch (xProvider->queryDispatch(rURL, ::rtl::OUString(), 0));
161 4700 : return xDispatch;
162 : }
163 :
164 :
165 :
166 :
167 31656 : ::rtl::OUString Tools::GetModuleName (
168 : const css::uno::Reference<css::frame::XFrame>& rxFrame)
169 : {
170 31656 : if ( ! rxFrame.is() || ! rxFrame->getController().is())
171 0 : return ::rtl::OUString();
172 :
173 : try
174 : {
175 31656 : const Reference<XComponentContext> xComponentContext (::comphelper::getProcessComponentContext());
176 63312 : const Reference<frame::XModuleManager> xModuleManager = frame::ModuleManager::create( xComponentContext );
177 63312 : return xModuleManager->identify(rxFrame);
178 : }
179 0 : catch (const Exception&)
180 : {
181 : // Ignored.
182 : }
183 0 : return ::rtl::OUString();
184 : }
185 :
186 :
187 951 : } } // end of namespace sfx2::sidebar
188 :
189 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|