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 "vcl/throbber.hxx"
21 : #include "vcl/svapp.hxx"
22 :
23 : #include <com/sun/star/uno/XComponentContext.hpp>
24 : #include <com/sun/star/graphic/GraphicProvider.hpp>
25 : #include <com/sun/star/graphic/XGraphicProvider.hpp>
26 : #include <com/sun/star/awt/ImageScaleMode.hpp>
27 :
28 : #include <comphelper/namedvaluecollection.hxx>
29 : #include <comphelper/processfactory.hxx>
30 : #include <rtl/ustrbuf.hxx>
31 : #include <tools/diagnose_ex.h>
32 : #include <tools/urlobj.hxx>
33 :
34 : #include <limits>
35 :
36 : using ::com::sun::star::uno::Sequence;
37 : using ::com::sun::star::uno::Reference;
38 : using ::com::sun::star::graphic::XGraphic;
39 : using ::com::sun::star::graphic::XGraphicProvider;
40 : using ::com::sun::star::uno::UNO_QUERY_THROW;
41 : using ::com::sun::star::uno::UNO_QUERY;
42 : using ::com::sun::star::uno::Exception;
43 : namespace ImageScaleMode = ::com::sun::star::awt::ImageScaleMode;
44 :
45 0 : Throbber::Throbber( vcl::Window* i_parentWindow, WinBits i_style, const ImageSet i_imageSet )
46 : :ImageControl( i_parentWindow, i_style )
47 : ,mbRepeat( true )
48 : ,mnStepTime( 100 )
49 : ,mnCurStep( 0 )
50 : ,mnStepCount( 0 )
51 0 : ,meImageSet( i_imageSet )
52 : {
53 0 : maWaitTimer.SetTimeout( mnStepTime );
54 0 : maWaitTimer.SetTimeoutHdl( LINK( this, Throbber, TimeOutHdl ) );
55 :
56 0 : SetScaleMode( ImageScaleMode::NONE );
57 0 : initImages();
58 0 : }
59 :
60 0 : Throbber::~Throbber()
61 : {
62 0 : maWaitTimer.Stop();
63 0 : }
64 :
65 : namespace
66 : {
67 0 : ::std::vector< Image > lcl_loadImageSet( const Throbber::ImageSet i_imageSet )
68 : {
69 0 : ::std::vector< Image > aImages;
70 0 : ENSURE_OR_RETURN( i_imageSet != Throbber::IMAGES_NONE, "lcl_loadImageSet: illegal image set", aImages );
71 :
72 0 : const Reference< com::sun::star::uno::XComponentContext > aContext( ::comphelper::getProcessComponentContext() );
73 0 : const Reference< XGraphicProvider > xGraphicProvider( com::sun::star::graphic::GraphicProvider::create(aContext) );
74 :
75 0 : ::std::vector< OUString > aImageURLs( Throbber::getDefaultImageURLs( i_imageSet ) );
76 0 : aImages.reserve( aImageURLs.size() );
77 :
78 0 : ::comphelper::NamedValueCollection aMediaProperties;
79 0 : for ( ::std::vector< OUString >::const_iterator imageURL = aImageURLs.begin();
80 0 : imageURL != aImageURLs.end();
81 : ++imageURL
82 : )
83 : {
84 0 : Reference< XGraphic > xGraphic;
85 0 : aMediaProperties.put( "URL", *imageURL );
86 0 : xGraphic.set( xGraphicProvider->queryGraphic( aMediaProperties.getPropertyValues() ), UNO_QUERY );
87 0 : aImages.push_back( Image( xGraphic ) );
88 0 : }
89 :
90 0 : return aImages;
91 : }
92 : }
93 :
94 0 : void Throbber::Resize()
95 : {
96 0 : ImageControl::Resize();
97 :
98 0 : if ( meImageSet == IMAGES_AUTO )
99 0 : initImages();
100 0 : }
101 :
102 0 : void Throbber::initImages()
103 : {
104 0 : if ( meImageSet == IMAGES_NONE )
105 0 : return;
106 :
107 : try
108 : {
109 0 : ::std::vector< ::std::vector< Image > > aImageSets;
110 0 : if ( meImageSet == IMAGES_AUTO )
111 : {
112 0 : aImageSets.push_back( lcl_loadImageSet( IMAGES_16_PX ) );
113 0 : aImageSets.push_back( lcl_loadImageSet( IMAGES_32_PX ) );
114 0 : aImageSets.push_back( lcl_loadImageSet( IMAGES_64_PX ) );
115 : }
116 : else
117 : {
118 0 : aImageSets.push_back( lcl_loadImageSet( meImageSet ) );
119 : }
120 :
121 : // find the best matching image set (size-wise)
122 0 : const ::Size aWindowSizePixel = GetSizePixel();
123 0 : size_t nPreferredSet = 0;
124 0 : if ( aImageSets.size() > 1 )
125 : {
126 0 : long nMinimalDistance = ::std::numeric_limits< long >::max();
127 0 : for ( ::std::vector< ::std::vector< Image > >::const_iterator check = aImageSets.begin();
128 0 : check != aImageSets.end();
129 : ++check
130 : )
131 : {
132 0 : if ( check->empty() )
133 : {
134 : SAL_WARN( "vcl.control", "Throbber::initImages: illegal image!" );
135 0 : continue;
136 : }
137 :
138 0 : const Size aImageSize = (*check)[0].GetSizePixel();
139 :
140 0 : if ( ( aImageSize.Width() > aWindowSizePixel.Width() )
141 0 : || ( aImageSize.Height() > aWindowSizePixel.Height() )
142 : )
143 : // do not use an image set which doesn't fit into the window
144 0 : continue;
145 :
146 : const sal_Int64 distance =
147 0 : ( aWindowSizePixel.Width() - aImageSize.Width() ) * ( aWindowSizePixel.Width() - aImageSize.Width() )
148 0 : + ( aWindowSizePixel.Height() - aImageSize.Height() ) * ( aWindowSizePixel.Height() - aImageSize.Height() );
149 0 : if ( distance < nMinimalDistance )
150 : {
151 0 : nMinimalDistance = distance;
152 0 : nPreferredSet = check - aImageSets.begin();
153 : }
154 : }
155 : }
156 :
157 0 : if ( nPreferredSet < aImageSets.size() )
158 0 : setImageList( aImageSets[nPreferredSet] );
159 : }
160 0 : catch( const Exception& )
161 : {
162 : }
163 : }
164 :
165 0 : void Throbber::start()
166 : {
167 0 : maWaitTimer.Start();
168 0 : }
169 :
170 0 : void Throbber::stop()
171 : {
172 0 : maWaitTimer.Stop();
173 0 : }
174 :
175 0 : bool Throbber::isRunning() const
176 : {
177 0 : return maWaitTimer.IsActive();
178 : }
179 :
180 0 : void Throbber::setImageList( ::std::vector< Image > const& i_images )
181 : {
182 0 : maImageList = i_images;
183 :
184 0 : mnStepCount = maImageList.size();
185 0 : const Image aInitialImage( mnStepCount ? maImageList[ 0 ] : Image() );
186 0 : SetImage( aInitialImage );
187 0 : }
188 :
189 0 : void Throbber::setImageList( const Sequence< Reference< XGraphic > >& rImageList )
190 : {
191 0 : ::std::vector< Image > aImages( rImageList.getLength() );
192 0 : for (sal_Int32 i = 0; i < rImageList.getLength(); ++i)
193 : {
194 0 : aImages[i] = Image(rImageList[i]);
195 : }
196 0 : setImageList( aImages );
197 0 : }
198 :
199 0 : ::std::vector< OUString > Throbber::getDefaultImageURLs( const ImageSet i_imageSet )
200 : {
201 0 : ::std::vector< OUString > aImageURLs;
202 :
203 0 : sal_Char const* const pResolutions[] = { "16", "32", "64" };
204 0 : size_t const nImageCounts[] = { 6, 12, 12 };
205 :
206 0 : size_t index = 0;
207 0 : switch ( i_imageSet )
208 : {
209 0 : case IMAGES_16_PX: index = 0; break;
210 0 : case IMAGES_32_PX: index = 1; break;
211 0 : case IMAGES_64_PX: index = 2; break;
212 : case IMAGES_NONE:
213 : case IMAGES_AUTO:
214 : OSL_ENSURE( false, "Throbber::getDefaultImageURLs: illegal image set!" );
215 0 : return aImageURLs;
216 : }
217 :
218 0 : aImageURLs.reserve( nImageCounts[index] );
219 0 : for ( size_t i=0; i<nImageCounts[index]; ++i )
220 : {
221 0 : OUStringBuffer aURL;
222 0 : aURL.appendAscii( "private:graphicrepository/vcl/res/spinner-" );
223 0 : aURL.appendAscii( pResolutions[index] );
224 0 : aURL.appendAscii( "-" );
225 0 : if ( i < 9 )
226 0 : aURL.appendAscii( "0" );
227 0 : aURL.append ( sal_Int32( i + 1 ) );
228 0 : aURL.appendAscii( ".png" );
229 :
230 0 : aImageURLs.push_back( aURL.makeStringAndClear() );
231 0 : }
232 :
233 0 : return aImageURLs;
234 : }
235 :
236 0 : IMPL_LINK_NOARG(Throbber, TimeOutHdl)
237 : {
238 0 : SolarMutexGuard aGuard;
239 0 : if ( maImageList.empty() )
240 0 : return 0;
241 :
242 0 : if ( mnCurStep < mnStepCount - 1 )
243 0 : mnCurStep += 1;
244 : else
245 : {
246 0 : if ( mbRepeat )
247 : {
248 : // start over
249 0 : mnCurStep = 0;
250 : }
251 : else
252 : {
253 0 : stop();
254 : }
255 : }
256 :
257 0 : SetImage( maImageList[ mnCurStep ] );
258 :
259 0 : return 0;
260 1233 : }
261 :
262 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|