Use o3tl::convert in Math
[LibreOffice.git] / slideshow / source / engine / waitsymbol.cxx
blob83f1858e92944b4064ecdfe7556d471cbf470a07
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/.
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 <cppcanvas/customsprite.hxx>
25 #include <basegfx/point/b2dpoint.hxx>
26 #include <basegfx/vector/b2dvector.hxx>
28 #include <com/sun/star/rendering/XCanvas.hpp>
29 #include <com/sun/star/presentation/XSlideShowView.hpp>
30 #include <tools/diagnose_ex.h>
32 #include "waitsymbol.hxx"
33 #include <eventmultiplexer.hxx>
35 #include <algorithm>
38 using namespace com::sun::star;
40 namespace slideshow::internal {
42 const sal_Int32 LEFT_BORDER_SPACE = 10;
43 const sal_Int32 LOWER_BORDER_SPACE = 10;
45 WaitSymbolSharedPtr WaitSymbol::create( const uno::Reference<rendering::XBitmap>& xBitmap,
46 ScreenUpdater& rScreenUpdater,
47 EventMultiplexer& rEventMultiplexer,
48 const UnoViewContainer& rViewContainer )
50 WaitSymbolSharedPtr pRet(
51 new WaitSymbol( xBitmap,
52 rScreenUpdater,
53 rViewContainer ));
55 rEventMultiplexer.addViewHandler( pRet );
57 return pRet;
60 WaitSymbol::WaitSymbol( uno::Reference<rendering::XBitmap> const & xBitmap,
61 ScreenUpdater& rScreenUpdater,
62 const UnoViewContainer& rViewContainer ) :
63 mxBitmap(xBitmap),
64 maViews(),
65 mrScreenUpdater( rScreenUpdater ),
66 mbVisible(false)
68 for( const auto& pView : rViewContainer )
69 viewAdded( pView );
72 void WaitSymbol::setVisible( const bool bVisible )
74 if( mbVisible == bVisible )
75 return;
77 mbVisible = bVisible;
79 for( const auto& rView : maViews )
81 if( rView.second )
83 if( bVisible )
84 rView.second->show();
85 else
86 rView.second->hide();
90 // sprites changed, need a screen update for this frame.
91 mrScreenUpdater.requestImmediateUpdate();
94 basegfx::B2DPoint WaitSymbol::calcSpritePos(
95 UnoViewSharedPtr const & rView ) const
97 const awt::Rectangle aViewArea( rView->getUnoView()->getCanvasArea() );
98 return basegfx::B2DPoint(
99 aViewArea.X + std::min<sal_Int32>( aViewArea.Width, LEFT_BORDER_SPACE ),
100 aViewArea.X + std::max<sal_Int32>( 0,
101 aViewArea.Height
102 - mxBitmap->getSize().Height
103 - LOWER_BORDER_SPACE ) );
106 void WaitSymbol::viewAdded( const UnoViewSharedPtr& rView )
108 cppcanvas::CustomSpriteSharedPtr sprite;
112 const geometry::IntegerSize2D spriteSize( mxBitmap->getSize() );
113 sprite = rView->createSprite( basegfx::B2DVector( spriteSize.Width,
114 spriteSize.Height ),
115 1000.0 ); // sprite should be in front of all
116 // other sprites
117 rendering::ViewState viewState;
118 canvas::tools::initViewState( viewState );
119 rendering::RenderState renderState;
120 canvas::tools::initRenderState( renderState );
121 sprite->getContentCanvas()->getUNOCanvas()->drawBitmap(
122 mxBitmap, viewState, renderState );
124 sprite->setAlpha( 0.9 );
125 sprite->movePixel( calcSpritePos( rView ) );
126 if( mbVisible )
127 sprite->show();
129 catch( uno::Exception& )
131 TOOLS_WARN_EXCEPTION( "slideshow", "" );
134 maViews.emplace_back( rView, sprite );
137 void WaitSymbol::viewRemoved( const UnoViewSharedPtr& rView )
139 maViews.erase(
140 std::remove_if(
141 maViews.begin(), maViews.end(),
142 [&rView]
143 ( const ViewsVecT::value_type& cp )
144 { return rView == cp.first; } ),
145 maViews.end() );
148 void WaitSymbol::viewChanged( const UnoViewSharedPtr& rView )
150 // find entry corresponding to modified view
151 ViewsVecT::iterator aModifiedEntry(
152 std::find_if(
153 maViews.begin(),
154 maViews.end(),
155 [&rView]
156 ( const ViewsVecT::value_type& cp )
157 { return rView == cp.first; } ) );
159 OSL_ASSERT( aModifiedEntry != maViews.end() );
160 if( aModifiedEntry == maViews.end() )
161 return;
163 if( aModifiedEntry->second )
164 aModifiedEntry->second->movePixel(
165 calcSpritePos(aModifiedEntry->first) );
168 void WaitSymbol::viewsChanged()
170 // reposition sprites on all views
171 for( const auto& rView : maViews )
173 if( rView.second )
174 rView.second->movePixel(
175 calcSpritePos( rView.first ) );
179 } // namespace slideshow::internal
181 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */