Files
libreoffice/slideshow/source/engine/waitsymbol.cxx
Kurt Zenker 3f928a6a34 INTEGRATION: CWS impress23 (1.1.2); FILE ADDED
2005/01/09 16:39:45 dbo 1.1.2.4: #i34155# mouse motion
2005/01/08 15:34:22 dbo 1.1.2.3: #i34155# y space
2005/01/08 00:53:32 dbo 1.1.2.2: #i34155#
2005/01/07 15:56:37 dbo 1.1.2.1: #i39053# sand clock bitmap sprite instead of mouse cursor
2005-01-21 15:57:10 +00:00

187 lines
6.3 KiB
C++

/*************************************************************************
*
* $RCSfile: waitsymbol.cxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: kz $ $Date: 2005-01-21 16:57:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include "waitsymbol.hxx"
#include "comphelper/anytostring.hxx"
#include "cppuhelper/exc_hlp.hxx"
#include "canvas/canvastools.hxx"
#include <algorithm>
using namespace ::drafts::com::sun::star;
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
namespace presentation {
namespace internal {
const sal_Int32 LEFT_BORDER_SPACE = 10;
const sal_Int32 LOWER_BORDER_SPACE = 10;
WaitSymbol::WaitSymbol( Reference<rendering::XBitmap> const & xBitmap )
: m_xBitmap(xBitmap),
m_bVisible(false)
{
}
void WaitSymbol::setVisible( const bool bVisible )
{
if (m_bVisible != bVisible) {
m_bVisible = bVisible;
for_each_sprite( boost::bind( bVisible ? &cppcanvas::Sprite::show
: &cppcanvas::Sprite::hide,
_1 ) );
std::for_each(
m_views.begin(), m_views.end(),
boost::bind( &View::updateScreen,
// select view:
boost::bind(
std::select1st<ViewsVecT::value_type>(), _1 ) ) );
}
}
// Disposable:
void WaitSymbol::dispose()
{
m_xBitmap.clear();
ViewsVecT().swap( m_views );
}
basegfx::B2DPoint WaitSymbol::calcSpritePos(
UnoViewSharedPtr const & rView ) const
{
const Reference<rendering::XBitmap> xBitmap(
rView->getCanvas()->getUNOCanvas(), UNO_QUERY_THROW );
const geometry::IntegerSize2D realSize( xBitmap->getSize() );
return basegfx::B2DPoint(
std::min<sal_Int32>( realSize.Width, LEFT_BORDER_SPACE ),
std::max<sal_Int32>( 0, realSize.Height - m_xBitmap->getSize().Height
- LOWER_BORDER_SPACE ) );
}
void WaitSymbol::addView( UnoViewSharedPtr const & rView )
{
if (std::find_if(
m_views.begin(), m_views.end(),
boost::bind(
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
boost::bind( std::select1st<ViewsVecT::value_type>(), _1 ) ) ))
return; // already added
const geometry::IntegerSize2D spriteSize( m_xBitmap->getSize() );
cppcanvas::CustomSpriteSharedPtr sprite(
rView->createSprite( basegfx::B2DSize( spriteSize.Width,
spriteSize.Height ) ) );
try {
rendering::ViewState viewState;
canvas::tools::initViewState( viewState );
rendering::RenderState renderState;
canvas::tools::initRenderState( renderState );
sprite->getContentCanvas()->getUNOCanvas()->drawBitmap(
m_xBitmap, viewState, renderState );
}
catch (RuntimeException &) {
throw;
}
catch (Exception &) {
OSL_ENSURE( false,
rtl::OUStringToOString(
comphelper::anyToString( cppu::getCaughtException() ),
RTL_TEXTENCODING_UTF8 ).getStr() );
}
sprite->setAlpha( 0.9 );
sprite->movePixel( calcSpritePos( rView ) );
m_views.push_back( ViewsVecT::value_type( rView, sprite ) );
if (m_bVisible)
sprite->show();
}
void WaitSymbol::removeView( UnoViewSharedPtr const & rView )
{
m_views.erase(
std::remove_if(
m_views.begin(), m_views.end(),
boost::bind(
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
boost::bind( std::select1st<ViewsVecT::value_type>(), _1 ) ) ),
m_views.end() );
}
void WaitSymbol::notifyViewChange()
{
if (! m_views.empty()) {
// reposition all sprites:
const basegfx::B2DPoint spritePos(
calcSpritePos( m_views.begin()->first ) );
for_each_sprite( boost::bind( &cppcanvas::Sprite::movePixel,
_1, boost::cref(spritePos) ) );
}
}
} // namespace internal
} // namespace presentation