LCOV - code coverage report
Current view: top level - sd/source/ui/slidesorter/controller - SlsVisibleAreaManager.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 67 108 62.0 %
Date: 2014-11-03 Functions: 10 16 62.5 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #include <sal/config.h>
      21             : 
      22             : #include <cstdlib>
      23             : 
      24             : #include "controller/SlsVisibleAreaManager.hxx"
      25             : #include "controller/SlideSorterController.hxx"
      26             : #include "controller/SlsProperties.hxx"
      27             : #include "controller/SlsAnimationFunction.hxx"
      28             : #include "controller/SlsScrollBarManager.hxx"
      29             : #include "controller/SlsCurrentSlideManager.hxx"
      30             : 
      31             : namespace sd { namespace slidesorter { namespace controller {
      32             : 
      33             : namespace {
      34           0 :     class VisibleAreaScroller
      35             :     {
      36             :     public:
      37             :         VisibleAreaScroller (
      38             :             SlideSorter& rSlideSorter,
      39             :             const Point aStart,
      40             :             const Point aEnd);
      41             :         void operator() (const double nValue);
      42             :     private:
      43             :         SlideSorter& mrSlideSorter;
      44             :         Point maStart;
      45             :         const Point maEnd;
      46             :         const ::boost::function<double(double)> maAccelerationFunction;
      47             :     };
      48             : 
      49             : } // end of anonymous namespace
      50             : 
      51         126 : VisibleAreaManager::VisibleAreaManager (SlideSorter& rSlideSorter)
      52             :     : mrSlideSorter(rSlideSorter),
      53             :       maVisibleRequests(),
      54             :       mnScrollAnimationId(Animator::NotAnAnimationId),
      55             :       maRequestedVisibleTopLeft(),
      56             :       meRequestedAnimationMode(Animator::AM_Immediate),
      57             :       mbIsCurrentSlideTrackingActive(true),
      58         126 :       mnDisableCount(0)
      59             : {
      60         126 : }
      61             : 
      62         126 : VisibleAreaManager::~VisibleAreaManager (void)
      63             : {
      64         126 : }
      65             : 
      66           0 : void VisibleAreaManager::ActivateCurrentSlideTracking (void)
      67             : {
      68           0 :     mbIsCurrentSlideTrackingActive = true;
      69           0 : }
      70             : 
      71           0 : void VisibleAreaManager::DeactivateCurrentSlideTracking (void)
      72             : {
      73           0 :     mbIsCurrentSlideTrackingActive = false;
      74           0 : }
      75             : 
      76         537 : void VisibleAreaManager::RequestVisible (
      77             :     const model::SharedPageDescriptor& rpDescriptor,
      78             :     const bool bForce)
      79             : {
      80         537 :     if (rpDescriptor)
      81             :     {
      82         537 :         if (mnDisableCount == 0)
      83             :         {
      84             :             maVisibleRequests.push_back(
      85         403 :                 mrSlideSorter.GetView().GetLayouter().GetPageObjectBox(
      86             :                     rpDescriptor->GetPageIndex(),
      87         806 :                     true));
      88             :         }
      89         537 :         if (bForce && ! mbIsCurrentSlideTrackingActive)
      90           0 :             ActivateCurrentSlideTracking();
      91         537 :         MakeVisible();
      92             :     }
      93         537 : }
      94             : 
      95         269 : void VisibleAreaManager::RequestCurrentSlideVisible (void)
      96             : {
      97         269 :     if (mbIsCurrentSlideTrackingActive && mnDisableCount==0)
      98             :         RequestVisible(
      99         269 :             mrSlideSorter.GetController().GetCurrentSlideManager()->GetCurrentSlide());
     100         269 : }
     101             : 
     102         537 : void VisibleAreaManager::MakeVisible (void)
     103             : {
     104         537 :     if (maVisibleRequests.empty())
     105         671 :         return;
     106             : 
     107         403 :     SharedSdWindow pWindow (mrSlideSorter.GetContentWindow());
     108         403 :     if ( ! pWindow)
     109           0 :         return;
     110         403 :     const Point aCurrentTopLeft (pWindow->PixelToLogic(Point(0,0)));
     111             : 
     112         403 :     const ::boost::optional<Point> aNewVisibleTopLeft (GetRequestedTopLeft());
     113         403 :     maVisibleRequests.clear();
     114         403 :     if ( ! aNewVisibleTopLeft)
     115         403 :         return;
     116             : 
     117             :     // We now know what the visible area shall be.  Scroll accordingly
     118             :     // unless that is not already the visible area or a running scroll
     119             :     // animation has it as its target area.
     120           0 :     if (mnScrollAnimationId!=Animator::NotAnAnimationId
     121           0 :         && maRequestedVisibleTopLeft==aNewVisibleTopLeft)
     122           0 :         return;
     123             : 
     124             :     // Stop a running animation.
     125           0 :     if (mnScrollAnimationId != Animator::NotAnAnimationId)
     126           0 :         mrSlideSorter.GetController().GetAnimator()->RemoveAnimation(mnScrollAnimationId);
     127             : 
     128           0 :     maRequestedVisibleTopLeft = aNewVisibleTopLeft.get();
     129             :     VisibleAreaScroller aAnimation(
     130             :         mrSlideSorter,
     131             :         aCurrentTopLeft,
     132           0 :         maRequestedVisibleTopLeft);
     133           0 :     if (meRequestedAnimationMode==Animator::AM_Animated
     134           0 :         && mrSlideSorter.GetProperties()->IsSmoothSelectionScrolling())
     135             :     {
     136           0 :         mnScrollAnimationId = mrSlideSorter.GetController().GetAnimator()->AddAnimation(
     137             :             aAnimation,
     138             :             0,
     139           0 :             300);
     140             :     }
     141             :     else
     142             :     {
     143             :         // Execute the animation at its final value.
     144           0 :         aAnimation(1.0);
     145             :     }
     146           0 :     meRequestedAnimationMode = Animator::AM_Immediate;
     147             : }
     148             : 
     149         403 : ::boost::optional<Point> VisibleAreaManager::GetRequestedTopLeft (void) const
     150             : {
     151         403 :     SharedSdWindow pWindow (mrSlideSorter.GetContentWindow());
     152         403 :     if ( ! pWindow)
     153           0 :         return ::boost::optional<Point>();
     154             : 
     155             :     // Get the currently visible area and the model area.
     156         403 :     const Rectangle aVisibleArea (pWindow->PixelToLogic(
     157             :         Rectangle(
     158             :             Point(0,0),
     159         806 :             pWindow->GetOutputSizePixel())));
     160         403 :     const Rectangle aModelArea (mrSlideSorter.GetView().GetModelArea());
     161             : 
     162         403 :     sal_Int32 nVisibleTop (aVisibleArea.Top());
     163         403 :     const sal_Int32 nVisibleWidth (aVisibleArea.GetWidth());
     164         403 :     sal_Int32 nVisibleLeft (aVisibleArea.Left());
     165         403 :     const sal_Int32 nVisibleHeight (aVisibleArea.GetHeight());
     166             : 
     167             :     // Find the longest run of boxes whose union fits into the visible area.
     168         806 :     for (::std::vector<Rectangle>::const_iterator
     169         403 :              iBox(maVisibleRequests.begin()),
     170         403 :              iEnd(maVisibleRequests.end());
     171             :          iBox!=iEnd;
     172             :          ++iBox)
     173             :     {
     174         403 :         if (nVisibleTop+nVisibleHeight <= iBox->Bottom())
     175         126 :             nVisibleTop = iBox->Bottom()-nVisibleHeight;
     176         403 :         if (nVisibleTop > iBox->Top())
     177         126 :             nVisibleTop = iBox->Top();
     178             : 
     179         403 :         if (nVisibleLeft+nVisibleWidth <= iBox->Right())
     180         126 :             nVisibleLeft = iBox->Right()-nVisibleWidth;
     181         403 :         if (nVisibleLeft > iBox->Left())
     182         126 :             nVisibleLeft = iBox->Left();
     183             : 
     184             :         // Make sure the visible area does not move outside the model area.
     185         403 :         if (nVisibleTop + nVisibleHeight > aModelArea.Bottom())
     186         268 :             nVisibleTop = aModelArea.Bottom() - nVisibleHeight;
     187         403 :         if (nVisibleTop < aModelArea.Top())
     188         268 :             nVisibleTop = aModelArea.Top();
     189             : 
     190         403 :         if (nVisibleLeft + nVisibleWidth > aModelArea.Right())
     191         277 :             nVisibleLeft = aModelArea.Right() - nVisibleWidth;
     192         403 :         if (nVisibleLeft < aModelArea.Left())
     193         277 :             nVisibleLeft = aModelArea.Left();
     194             :     }
     195             : 
     196         403 :     const Point aRequestedTopLeft (nVisibleLeft, nVisibleTop);
     197         403 :     if (aRequestedTopLeft == aVisibleArea.TopLeft())
     198         403 :         return ::boost::optional<Point>();
     199             :     else
     200           0 :         return ::boost::optional<Point>(aRequestedTopLeft);
     201             : }
     202             : 
     203             : //===== VisibleAreaManager::TemporaryDisabler =================================
     204             : 
     205         134 : VisibleAreaManager::TemporaryDisabler::TemporaryDisabler (SlideSorter& rSlideSorter)
     206         134 :     : mrVisibleAreaManager(rSlideSorter.GetController().GetVisibleAreaManager())
     207             : {
     208         134 :     ++mrVisibleAreaManager.mnDisableCount;
     209         134 : }
     210             : 
     211         134 : VisibleAreaManager::TemporaryDisabler::~TemporaryDisabler (void)
     212             : {
     213         134 :     --mrVisibleAreaManager.mnDisableCount;
     214         134 : }
     215             : 
     216             : //===== VerticalVisibleAreaScroller ===========================================
     217             : 
     218             : namespace {
     219             : 
     220             : const static sal_Int32 gnMaxScrollDistance = 300;
     221             : 
     222           0 : VisibleAreaScroller::VisibleAreaScroller (
     223             :     SlideSorter& rSlideSorter,
     224             :     const Point aStart,
     225             :     const Point aEnd)
     226             :     : mrSlideSorter(rSlideSorter),
     227             :       maStart(aStart),
     228             :       maEnd(aEnd),
     229             :       maAccelerationFunction(
     230             :           controller::AnimationParametricFunction(
     231           0 :               controller::AnimationBezierFunction (0.1,0.6)))
     232             : {
     233             :     // When the distance to scroll is larger than a threshold then first
     234             :     // jump to within this distance of the final value and start the
     235             :     // animation from there.
     236           0 :     if (std::abs(aStart.X()-aEnd.X()) > gnMaxScrollDistance)
     237             :     {
     238           0 :         if (aStart.X() < aEnd.X())
     239           0 :             maStart.X() = aEnd.X()-gnMaxScrollDistance;
     240             :         else
     241           0 :             maStart.X() = aEnd.X()+gnMaxScrollDistance;
     242             :     }
     243           0 :     if (std::abs(aStart.Y()-aEnd.Y()) > gnMaxScrollDistance)
     244             :     {
     245           0 :         if (aStart.Y() < aEnd.Y())
     246           0 :             maStart.Y() = aEnd.Y()-gnMaxScrollDistance;
     247             :         else
     248           0 :             maStart.Y() = aEnd.Y()+gnMaxScrollDistance;
     249             :     }
     250           0 : }
     251             : 
     252           0 : void VisibleAreaScroller::operator() (const double nTime)
     253             : {
     254           0 :     const double nLocalTime (maAccelerationFunction(nTime));
     255           0 :     mrSlideSorter.GetController().GetScrollBarManager().SetTopLeft(
     256             :         Point(
     257           0 :             sal_Int32(0.5 + maStart.X() * (1.0 - nLocalTime) + maEnd.X() * nLocalTime),
     258           0 :             sal_Int32 (0.5 + maStart.Y() * (1.0 - nLocalTime) + maEnd.Y() * nLocalTime)));
     259           0 : }
     260             : 
     261             : } // end of anonymous namespace
     262             : 
     263         114 : } } } // end of namespace ::sd::slidesorter::controller
     264             : 
     265             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10