1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#include <boost/current_function.hpp>
#include <rtl/ustrbuf.hxx>
#include <vcl/svapp.hxx>
#include <vcl/gdimtf.hxx>
#include <vcl/virdev.hxx>
#include <vcl/metric.hxx>
#include <vcl/settings.hxx>
#include <cppcanvas/vclfactory.hxx>
#include <cppcanvas/basegfxfactory.hxx>
#include <basegfx/range/b2drange.hxx>
#include <comphelper/anytostring.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <com/sun/star/awt/MouseButton.hpp>
#include <com/sun/star/awt/MouseEvent.hpp>
#include <com/sun/star/rendering/XBitmap.hpp>
#include "eventqueue.hxx"
#include "screenupdater.hxx"
#include "eventmultiplexer.hxx"
#include "activitiesqueue.hxx"
#include "slideshowcontext.hxx"
#include "mouseeventhandler.hxx"
#include "rehearsetimingsactivity.hxx"
#include <boost/bind.hpp>
#include <o3tl/compat_functional.hxx>
#include <algorithm>
using namespace com::sun::star;
using namespace com::sun::star::uno;
namespace slideshow {
namespace internal {
class RehearseTimingsActivity::WakeupEvent : public Event,
private ::boost::noncopyable
{
public:
WakeupEvent( boost::shared_ptr< ::canvas::tools::ElapsedTime > const& pTimeBase,
ActivitySharedPtr const& rActivity,
ActivitiesQueue & rActivityQueue ) :
Event("WakeupEvent"),
maTimer(pTimeBase),
mnNextTime(0.0),
mpActivity(rActivity),
mrActivityQueue( rActivityQueue )
{}
virtual void dispose() SAL_OVERRIDE {}
virtual bool fire() SAL_OVERRIDE
{
ActivitySharedPtr pActivity( mpActivity.lock() );
if( !pActivity )
return false;
return mrActivityQueue.addActivity( pActivity );
}
virtual bool isCharged() const SAL_OVERRIDE { return true; }
virtual double getActivationTime( double nCurrentTime ) const SAL_OVERRIDE
{
const double nElapsedTime( maTimer.getElapsedTime() );
return ::std::max( nCurrentTime,
nCurrentTime - nElapsedTime + mnNextTime );
}
/// Start the internal timer
void start() { maTimer.reset(); }
/** Set the next timeout this object should generate.
@param nextTime
Absolute time, measured from the last start() call,
when this event should wakeup the Activity again. If
your time is relative, simply call start() just before
every setNextTimeout() call.
*/
void setNextTimeout( double nextTime ) { mnNextTime = nextTime; }
private:
::canvas::tools::ElapsedTime maTimer;
double mnNextTime;
boost::weak_ptr<Activity> mpActivity;
ActivitiesQueue& mrActivityQueue;
};
class RehearseTimingsActivity::MouseHandler : public MouseEventHandler,
private boost::noncopyable
{
public:
explicit MouseHandler( RehearseTimingsActivity& rta );
void reset();
bool hasBeenClicked() const { return mbHasBeenClicked; }
// MouseEventHandler
virtual bool handleMousePressed( awt::MouseEvent const & evt ) SAL_OVERRIDE;
virtual bool handleMouseReleased( awt::MouseEvent const & evt ) SAL_OVERRIDE;
virtual bool handleMouseEntered( awt::MouseEvent const & evt ) SAL_OVERRIDE;
virtual bool handleMouseExited( awt::MouseEvent const & evt ) SAL_OVERRIDE;
virtual bool handleMouseDragged( awt::MouseEvent const & evt ) SAL_OVERRIDE;
virtual bool handleMouseMoved( awt::MouseEvent const & evt ) SAL_OVERRIDE;
private:
bool isInArea( com::sun::star::awt::MouseEvent const & evt ) const;
void updatePressedState( const bool pressedState ) const;
RehearseTimingsActivity& mrActivity;
bool mbHasBeenClicked;
bool mbMouseStartedInArea;
};
const sal_Int32 LEFT_BORDER_SPACE = 10;
const sal_Int32 LOWER_BORDER_SPACE = 30;
RehearseTimingsActivity::RehearseTimingsActivity( const SlideShowContext& rContext ) :
mrEventQueue(rContext.mrEventQueue),
mrScreenUpdater(rContext.mrScreenUpdater),
mrEventMultiplexer(rContext.mrEventMultiplexer),
mrActivitiesQueue(rContext.mrActivitiesQueue),
maElapsedTime( rContext.mrEventQueue.getTimer() ),
maViews(),
maSpriteRectangle(),
maFont( Application::GetSettings().GetStyleSettings().GetInfoFont() ),
mpWakeUpEvent(),
mpMouseHandler(),
maSpriteSizePixel(),
mnYOffset(0),
mbActive(false),
mbDrawPressed(false)
{
maFont.SetHeight( maFont.GetHeight() * 2 );
maFont.SetWidth( maFont.GetWidth() * 2 );
maFont.SetAlign( ALIGN_BASELINE );
maFont.SetColor( COL_BLACK );
// determine sprite size (in pixel):
VirtualDevice blackHole;
blackHole.EnableOutput(false);
blackHole.SetFont( maFont );
blackHole.SetMapMode( MAP_PIXEL );
Rectangle rect;
const FontMetric metric( blackHole.GetFontMetric() );
blackHole.GetTextBoundRect( rect, OUString("XX:XX:XX") );
maSpriteSizePixel.setX( rect.getWidth() * 12 / 10 );
maSpriteSizePixel.setY( metric.GetLineHeight() * 11 / 10 );
mnYOffset = (metric.GetAscent() + (metric.GetLineHeight() / 20));
std::for_each( rContext.mrViewContainer.begin(),
rContext.mrViewContainer.end(),
boost::bind( &RehearseTimingsActivity::viewAdded,
this,
_1 ));
}
RehearseTimingsActivity::~RehearseTimingsActivity()
{
try
{
stop();
}
catch (uno::Exception &)
{
OSL_FAIL( OUStringToOString(
comphelper::anyToString(
cppu::getCaughtException() ),
RTL_TEXTENCODING_UTF8 ).getStr() );
}
}
boost::shared_ptr<RehearseTimingsActivity> RehearseTimingsActivity::create(
const SlideShowContext& rContext )
{
boost::shared_ptr<RehearseTimingsActivity> pActivity(
new RehearseTimingsActivity( rContext ));
pActivity->mpMouseHandler.reset(
new MouseHandler(*pActivity.get()) );
pActivity->mpWakeUpEvent.reset(
new WakeupEvent( rContext.mrEventQueue.getTimer(),
pActivity,
rContext.mrActivitiesQueue ));
rContext.mrEventMultiplexer.addViewHandler( pActivity );
return pActivity;
}
void RehearseTimingsActivity::start()
{
maElapsedTime.reset();
mbDrawPressed = false;
mbActive = true;
// paint and show all sprites:
paintAllSprites();
for_each_sprite( boost::bind( &cppcanvas::Sprite::show, _1 ) );
mrActivitiesQueue.addActivity( shared_from_this() );
mpMouseHandler->reset();
mrEventMultiplexer.addClickHandler(
mpMouseHandler, 42 /* highest prio of all, > 3.0 */ );
mrEventMultiplexer.addMouseMoveHandler(
mpMouseHandler, 42 /* highest prio of all, > 3.0 */ );
}
double RehearseTimingsActivity::stop()
{
mrEventMultiplexer.removeMouseMoveHandler( mpMouseHandler );
mrEventMultiplexer.removeClickHandler( mpMouseHandler );
mbActive = false; // will be removed from queue
for_each_sprite( boost::bind( &cppcanvas::Sprite::hide, _1 ) );
return maElapsedTime.getElapsedTime();
}
bool RehearseTimingsActivity::hasBeenClicked() const
{
if (mpMouseHandler)
return mpMouseHandler->hasBeenClicked();
return false;
}
// Disposable:
void RehearseTimingsActivity::dispose()
{
stop();
mpWakeUpEvent.reset();
mpMouseHandler.reset();
ViewsVecT().swap( maViews );
}
// Activity:
double RehearseTimingsActivity::calcTimeLag() const
{
return 0.0;
}
bool RehearseTimingsActivity::perform()
{
if( !isActive() )
return false;
if( !mpWakeUpEvent )
return false;
mpWakeUpEvent->start();
mpWakeUpEvent->setNextTimeout( 0.5 );
mrEventQueue.addEvent( mpWakeUpEvent );
paintAllSprites();
// sprites changed, need screen update
mrScreenUpdater.notifyUpdate();
return false; // don't reinsert, WakeupEvent will perform
// that after the given timeout
}
bool RehearseTimingsActivity::isActive() const
{
return mbActive;
}
void RehearseTimingsActivity::dequeued()
{
// not used here
}
void RehearseTimingsActivity::end()
{
if (isActive())
{
stop();
mbActive = false;
}
}
basegfx::B2DRange RehearseTimingsActivity::calcSpriteRectangle( UnoViewSharedPtr const& rView ) const
{
const Reference<rendering::XBitmap> xBitmap( rView->getCanvas()->getUNOCanvas(),
UNO_QUERY );
if( !xBitmap.is() )
return basegfx::B2DRange();
const geometry::IntegerSize2D realSize( xBitmap->getSize() );
// pixel:
basegfx::B2DPoint spritePos(
std::min<sal_Int32>( realSize.Width, LEFT_BORDER_SPACE ),
std::max<sal_Int32>( 0, realSize.Height - maSpriteSizePixel.getY()
- LOWER_BORDER_SPACE ) );
basegfx::B2DHomMatrix transformation( rView->getTransformation() );
transformation.invert();
spritePos *= transformation;
basegfx::B2DSize spriteSize( maSpriteSizePixel.getX(),
maSpriteSizePixel.getY() );
spriteSize *= transformation;
return basegfx::B2DRange(
spritePos.getX(), spritePos.getY(),
spritePos.getX() + spriteSize.getX(),
spritePos.getY() + spriteSize.getY() );
}
void RehearseTimingsActivity::viewAdded( const UnoViewSharedPtr& rView )
{
cppcanvas::CustomSpriteSharedPtr sprite(
rView->createSprite( basegfx::B2DSize(
maSpriteSizePixel.getX()+2,
maSpriteSizePixel.getY()+2 ),
1001.0 )); // sprite should be in front of all
// other sprites
sprite->setAlpha( 0.8 );
const basegfx::B2DRange spriteRectangle(
calcSpriteRectangle( rView ) );
sprite->move( basegfx::B2DPoint(
spriteRectangle.getMinX(),
spriteRectangle.getMinY() ) );
if( maViews.empty() )
maSpriteRectangle = spriteRectangle;
maViews.push_back( ViewsVecT::value_type( rView, sprite ) );
if (isActive())
sprite->show();
}
void RehearseTimingsActivity::viewRemoved( const UnoViewSharedPtr& rView )
{
maViews.erase(
std::remove_if(
maViews.begin(), maViews.end(),
boost::bind(
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
boost::bind( o3tl::select1st<ViewsVecT::value_type>(), _1 ))),
maViews.end() );
}
void RehearseTimingsActivity::viewChanged( const UnoViewSharedPtr& rView )
{
// find entry corresponding to modified view
ViewsVecT::iterator aModifiedEntry(
std::find_if(
maViews.begin(),
maViews.end(),
boost::bind(
std::equal_to<UnoViewSharedPtr>(),
rView,
// select view:
boost::bind( o3tl::select1st<ViewsVecT::value_type>(), _1 ))));
OSL_ASSERT( aModifiedEntry != maViews.end() );
if( aModifiedEntry == maViews.end() )
return;
// new sprite pos, transformation might have changed:
maSpriteRectangle = calcSpriteRectangle( rView );
// reposition sprite:
aModifiedEntry->second->move( maSpriteRectangle.getMinimum() );
// sprites changed, need screen update
mrScreenUpdater.notifyUpdate( rView );
}
void RehearseTimingsActivity::viewsChanged()
{
if( !maViews.empty() )
{
// new sprite pos, transformation might have changed:
maSpriteRectangle = calcSpriteRectangle( maViews.front().first );
// reposition sprites
for_each_sprite( boost::bind( &cppcanvas::Sprite::move,
_1,
boost::cref(maSpriteRectangle.getMinimum())) );
// sprites changed, need screen update
mrScreenUpdater.notifyUpdate();
}
}
void RehearseTimingsActivity::paintAllSprites() const
{
for_each_sprite(
boost::bind( &RehearseTimingsActivity::paint, this,
// call getContentCanvas() on each sprite:
boost::bind(
&cppcanvas::CustomSprite::getContentCanvas, _1 ) ) );
}
void RehearseTimingsActivity::paint( cppcanvas::CanvasSharedPtr const & canvas ) const
{
// build timer string:
const sal_Int32 nTimeSecs =
static_cast<sal_Int32>(maElapsedTime.getElapsedTime());
OUStringBuffer buf;
sal_Int32 n = (nTimeSecs / 3600);
if (n < 10)
buf.append( '0' );
buf.append( n );
buf.append( ':' );
n = ((nTimeSecs % 3600) / 60);
if (n < 10)
buf.append( '0' );
buf.append( n );
buf.append( ':' );
n = (nTimeSecs % 60);
if (n < 10)
buf.append( '0' );
buf.append( n );
const OUString time = buf.makeStringAndClear();
// create the MetaFile:
GDIMetaFile metaFile;
VirtualDevice blackHole;
metaFile.Record( &blackHole );
metaFile.SetPrefSize( Size( 1, 1 ) );
blackHole.EnableOutput(false);
blackHole.SetMapMode( MAP_PIXEL );
blackHole.SetFont( maFont );
Rectangle rect = Rectangle( 0,0,
maSpriteSizePixel.getX(),
maSpriteSizePixel.getY());
if (mbDrawPressed)
{
blackHole.SetTextColor( COL_BLACK );
blackHole.SetFillColor( COL_LIGHTGRAY );
blackHole.SetLineColor( COL_GRAY );
}
else
{
blackHole.SetTextColor( COL_BLACK );
blackHole.SetFillColor( COL_WHITE );
blackHole.SetLineColor( COL_GRAY );
}
blackHole.DrawRect( rect );
blackHole.GetTextBoundRect( rect, time );
blackHole.DrawText(
Point( (maSpriteSizePixel.getX() - rect.getWidth()) / 2,
mnYOffset ), time );
metaFile.Stop();
metaFile.WindStart();
cppcanvas::RendererSharedPtr renderer(
cppcanvas::VCLFactory::getInstance().createRenderer(
canvas, metaFile, cppcanvas::Renderer::Parameters() ) );
const bool succ = renderer->draw();
OSL_ASSERT( succ );
(void)succ;
}
RehearseTimingsActivity::MouseHandler::MouseHandler( RehearseTimingsActivity& rta ) :
mrActivity(rta),
mbHasBeenClicked(false),
mbMouseStartedInArea(false)
{}
void RehearseTimingsActivity::MouseHandler::reset()
{
mbHasBeenClicked = false;
mbMouseStartedInArea = false;
}
bool RehearseTimingsActivity::MouseHandler::isInArea(
awt::MouseEvent const & evt ) const
{
return mrActivity.maSpriteRectangle.isInside(
basegfx::B2DPoint( evt.X, evt.Y ) );
}
void RehearseTimingsActivity::MouseHandler::updatePressedState(
const bool pressedState ) const
{
if( pressedState != mrActivity.mbDrawPressed )
{
mrActivity.mbDrawPressed = pressedState;
mrActivity.paintAllSprites();
mrActivity.mrScreenUpdater.notifyUpdate();
}
}
// MouseEventHandler
bool RehearseTimingsActivity::MouseHandler::handleMousePressed(
awt::MouseEvent const & evt )
{
if( evt.Buttons == awt::MouseButton::LEFT && isInArea(evt) )
{
mbMouseStartedInArea = true;
updatePressedState(true);
return true; // consume event
}
return false;
}
bool RehearseTimingsActivity::MouseHandler::handleMouseReleased(
awt::MouseEvent const & evt )
{
if( evt.Buttons == awt::MouseButton::LEFT && mbMouseStartedInArea )
{
mbHasBeenClicked = isInArea(evt); // fini if in
mbMouseStartedInArea = false;
updatePressedState(false);
if( !mbHasBeenClicked )
return true; // consume event, else next slide (manual advance)
}
return false;
}
bool RehearseTimingsActivity::MouseHandler::handleMouseEntered(
awt::MouseEvent const & /*evt*/ )
{
return false;
}
bool RehearseTimingsActivity::MouseHandler::handleMouseExited(
awt::MouseEvent const & /*evt*/ )
{
return false;
}
bool RehearseTimingsActivity::MouseHandler::handleMouseDragged(
awt::MouseEvent const & evt )
{
if( mbMouseStartedInArea )
updatePressedState( isInArea(evt) );
return false;
}
bool RehearseTimingsActivity::MouseHandler::handleMouseMoved(
awt::MouseEvent const & /*evt*/ )
{
return false;
}
} // namespace internal
} // namespace presentation
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|