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>
25 #include <sal/log.hxx>
27 #include <basegfx/point/b2dpoint.hxx>
28 #include <basegfx/vector/b2dvector.hxx>
30 #include <com/sun/star/rendering/XCanvas.hpp>
31 #include <com/sun/star/presentation/XSlideShowView.hpp>
32 #include <tools/diagnose_ex.h>
34 #include "waitsymbol.hxx"
35 #include <eventmultiplexer.hxx>
40 using namespace com::sun::star
;
45 const sal_Int32 LEFT_BORDER_SPACE
= 10;
46 const sal_Int32 LOWER_BORDER_SPACE
= 10;
48 WaitSymbolSharedPtr
WaitSymbol::create( const uno::Reference
<rendering::XBitmap
>& xBitmap
,
49 ScreenUpdater
& rScreenUpdater
,
50 EventMultiplexer
& rEventMultiplexer
,
51 const UnoViewContainer
& rViewContainer
)
53 WaitSymbolSharedPtr
pRet(
54 new WaitSymbol( xBitmap
,
58 rEventMultiplexer
.addViewHandler( pRet
);
63 WaitSymbol::WaitSymbol( uno::Reference
<rendering::XBitmap
> const & xBitmap
,
64 ScreenUpdater
& rScreenUpdater
,
65 const UnoViewContainer
& rViewContainer
) :
68 mrScreenUpdater( rScreenUpdater
),
71 for( const auto& pView
: rViewContainer
)
75 void WaitSymbol::setVisible( const bool bVisible
)
77 if( mbVisible
== bVisible
)
82 for( const auto& rView
: maViews
)
93 // sprites changed, need a screen update for this frame.
94 mrScreenUpdater
.requestImmediateUpdate();
97 basegfx::B2DPoint
WaitSymbol::calcSpritePos(
98 UnoViewSharedPtr
const & rView
) const
100 const awt::Rectangle
aViewArea( rView
->getUnoView()->getCanvasArea() );
101 return basegfx::B2DPoint(
102 aViewArea
.X
+ std::min
<sal_Int32
>( aViewArea
.Width
, LEFT_BORDER_SPACE
),
103 aViewArea
.X
+ std::max
<sal_Int32
>( 0,
105 - mxBitmap
->getSize().Height
106 - LOWER_BORDER_SPACE
) );
109 void WaitSymbol::viewAdded( const UnoViewSharedPtr
& rView
)
111 cppcanvas::CustomSpriteSharedPtr sprite
;
115 const geometry::IntegerSize2D
spriteSize( mxBitmap
->getSize() );
116 sprite
= rView
->createSprite( basegfx::B2DVector( spriteSize
.Width
,
118 1000.0 ); // sprite should be in front of all
120 rendering::ViewState viewState
;
121 canvas::tools::initViewState( viewState
);
122 rendering::RenderState renderState
;
123 canvas::tools::initRenderState( renderState
);
124 sprite
->getContentCanvas()->getUNOCanvas()->drawBitmap(
125 mxBitmap
, viewState
, renderState
);
127 sprite
->setAlpha( 0.9 );
128 sprite
->movePixel( calcSpritePos( rView
) );
132 catch( uno::Exception
& )
134 TOOLS_WARN_EXCEPTION( "slideshow", "" );
137 maViews
.emplace_back( rView
, sprite
);
140 void WaitSymbol::viewRemoved( const UnoViewSharedPtr
& rView
)
144 maViews
.begin(), maViews
.end(),
146 ( const ViewsVecT::value_type
& cp
)
147 { return rView
== cp
.first
; } ),
151 void WaitSymbol::viewChanged( const UnoViewSharedPtr
& rView
)
153 // find entry corresponding to modified view
154 ViewsVecT::iterator
aModifiedEntry(
159 ( const ViewsVecT::value_type
& cp
)
160 { return rView
== cp
.first
; } ) );
162 OSL_ASSERT( aModifiedEntry
!= maViews
.end() );
163 if( aModifiedEntry
== maViews
.end() )
166 if( aModifiedEntry
->second
)
167 aModifiedEntry
->second
->movePixel(
168 calcSpritePos(aModifiedEntry
->first
) );
171 void WaitSymbol::viewsChanged()
173 // reposition sprites on all views
174 for( const auto& rView
: maViews
)
177 rView
.second
->movePixel(
178 calcSpritePos( rView
.first
) );
182 } // namespace internal
183 } // namespace slideshow
185 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */