1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <canvas/canvastools.hxx>
23 #include <comphelper/anytostring.hxx>
24 #include <cppuhelper/exc_hlp.hxx>
26 #include <basegfx/point/b2dpoint.hxx>
27 #include <basegfx/vector/b2dvector.hxx>
29 #include <com/sun/star/rendering/XCanvas.hpp>
30 #include <com/sun/star/presentation/XSlideShowView.hpp>
32 #include "waitsymbol.hxx"
33 #include <eventmultiplexer.hxx>
38 using namespace com::sun::star
;
43 const sal_Int32 LEFT_BORDER_SPACE
= 10;
44 const sal_Int32 LOWER_BORDER_SPACE
= 10;
46 WaitSymbolSharedPtr
WaitSymbol::create( const uno::Reference
<rendering::XBitmap
>& xBitmap
,
47 ScreenUpdater
& rScreenUpdater
,
48 EventMultiplexer
& rEventMultiplexer
,
49 const UnoViewContainer
& rViewContainer
)
51 WaitSymbolSharedPtr
pRet(
52 new WaitSymbol( xBitmap
,
56 rEventMultiplexer
.addViewHandler( pRet
);
61 WaitSymbol::WaitSymbol( uno::Reference
<rendering::XBitmap
> const & xBitmap
,
62 ScreenUpdater
& rScreenUpdater
,
63 const UnoViewContainer
& rViewContainer
) :
66 mrScreenUpdater( rScreenUpdater
),
69 for( const auto& pView
: rViewContainer
)
73 void WaitSymbol::setVisible( const bool bVisible
)
75 if( mbVisible
!= bVisible
)
79 for( const auto& rView
: maViews
)
90 // sprites changed, need a screen update for this frame.
91 mrScreenUpdater
.requestImmediateUpdate();
95 basegfx::B2DPoint
WaitSymbol::calcSpritePos(
96 UnoViewSharedPtr
const & rView
) const
98 const awt::Rectangle
aViewArea( rView
->getUnoView()->getCanvasArea() );
99 return basegfx::B2DPoint(
100 aViewArea
.X
+ std::min
<sal_Int32
>( aViewArea
.Width
, LEFT_BORDER_SPACE
),
101 aViewArea
.X
+ std::max
<sal_Int32
>( 0,
103 - mxBitmap
->getSize().Height
104 - LOWER_BORDER_SPACE
) );
107 void WaitSymbol::viewAdded( const UnoViewSharedPtr
& rView
)
109 cppcanvas::CustomSpriteSharedPtr sprite
;
113 const geometry::IntegerSize2D
spriteSize( mxBitmap
->getSize() );
114 sprite
= rView
->createSprite( basegfx::B2DVector( spriteSize
.Width
,
116 1000.0 ); // sprite should be in front of all
118 rendering::ViewState viewState
;
119 canvas::tools::initViewState( viewState
);
120 rendering::RenderState renderState
;
121 canvas::tools::initRenderState( renderState
);
122 sprite
->getContentCanvas()->getUNOCanvas()->drawBitmap(
123 mxBitmap
, viewState
, renderState
);
125 sprite
->setAlpha( 0.9 );
126 sprite
->movePixel( calcSpritePos( rView
) );
130 catch( uno::Exception
& )
132 SAL_WARN( "slideshow", comphelper::anyToString( cppu::getCaughtException() ) );
135 maViews
.emplace_back( rView
, sprite
);
138 void WaitSymbol::viewRemoved( const UnoViewSharedPtr
& rView
)
142 maViews
.begin(), maViews
.end(),
144 ( const ViewsVecT::value_type
& cp
)
145 { return rView
== cp
.first
; } ),
149 void WaitSymbol::viewChanged( const UnoViewSharedPtr
& rView
)
151 // find entry corresponding to modified view
152 ViewsVecT::iterator
aModifiedEntry(
157 ( const ViewsVecT::value_type
& cp
)
158 { return rView
== cp
.first
; } ) );
160 OSL_ASSERT( aModifiedEntry
!= maViews
.end() );
161 if( aModifiedEntry
== maViews
.end() )
164 if( aModifiedEntry
->second
)
165 aModifiedEntry
->second
->movePixel(
166 calcSpritePos(aModifiedEntry
->first
) );
169 void WaitSymbol::viewsChanged()
171 // reposition sprites on all views
172 for( const auto& rView
: maViews
)
175 rView
.second
->movePixel(
176 calcSpritePos( rView
.first
) );
180 } // namespace internal
181 } // namespace slideshow
183 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */