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 1 : class VisibleAreaScroller
35 : {
36 : public:
37 : VisibleAreaScroller (
38 : SlideSorter& rSlideSorter,
39 : const Point& rStart,
40 : const Point& rEnd);
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 64 : VisibleAreaManager::VisibleAreaManager (SlideSorter& rSlideSorter)
52 : : mrSlideSorter(rSlideSorter),
53 : maVisibleRequests(),
54 : mnScrollAnimationId(Animator::NotAnAnimationId),
55 : maRequestedVisibleTopLeft(),
56 : meRequestedAnimationMode(Animator::AM_Immediate),
57 : mbIsCurrentSlideTrackingActive(true),
58 64 : mnDisableCount(0)
59 : {
60 64 : }
61 :
62 64 : VisibleAreaManager::~VisibleAreaManager()
63 : {
64 64 : }
65 :
66 0 : void VisibleAreaManager::ActivateCurrentSlideTracking()
67 : {
68 0 : mbIsCurrentSlideTrackingActive = true;
69 0 : }
70 :
71 0 : void VisibleAreaManager::DeactivateCurrentSlideTracking()
72 : {
73 0 : mbIsCurrentSlideTrackingActive = false;
74 0 : }
75 :
76 330 : void VisibleAreaManager::RequestVisible (
77 : const model::SharedPageDescriptor& rpDescriptor,
78 : const bool bForce)
79 : {
80 330 : if (rpDescriptor)
81 : {
82 322 : if (mnDisableCount == 0)
83 : {
84 : maVisibleRequests.push_back(
85 237 : mrSlideSorter.GetView().GetLayouter().GetPageObjectBox(
86 : rpDescriptor->GetPageIndex(),
87 474 : true));
88 : }
89 322 : if (bForce && ! mbIsCurrentSlideTrackingActive)
90 0 : ActivateCurrentSlideTracking();
91 322 : MakeVisible();
92 : }
93 330 : }
94 :
95 160 : void VisibleAreaManager::RequestCurrentSlideVisible()
96 : {
97 160 : if (mbIsCurrentSlideTrackingActive && mnDisableCount==0)
98 : RequestVisible(
99 160 : mrSlideSorter.GetController().GetCurrentSlideManager()->GetCurrentSlide());
100 160 : }
101 :
102 322 : void VisibleAreaManager::MakeVisible()
103 : {
104 322 : if (maVisibleRequests.empty())
105 406 : return;
106 :
107 237 : sd::Window *pWindow (mrSlideSorter.GetContentWindow());
108 237 : if ( ! pWindow)
109 0 : return;
110 237 : const Point aCurrentTopLeft (pWindow->PixelToLogic(Point(0,0)));
111 :
112 237 : const ::boost::optional<Point> aNewVisibleTopLeft (GetRequestedTopLeft());
113 237 : maVisibleRequests.clear();
114 237 : if ( ! aNewVisibleTopLeft)
115 236 : 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 2 : if (mnScrollAnimationId!=Animator::NotAnAnimationId
121 1 : && maRequestedVisibleTopLeft==aNewVisibleTopLeft)
122 0 : return;
123 :
124 : // Stop a running animation.
125 1 : if (mnScrollAnimationId != Animator::NotAnAnimationId)
126 0 : mrSlideSorter.GetController().GetAnimator()->RemoveAnimation(mnScrollAnimationId);
127 :
128 1 : maRequestedVisibleTopLeft = aNewVisibleTopLeft.get();
129 : VisibleAreaScroller aAnimation(
130 : mrSlideSorter,
131 : aCurrentTopLeft,
132 2 : maRequestedVisibleTopLeft);
133 4 : if (meRequestedAnimationMode==Animator::AM_Animated
134 3 : && 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 1 : aAnimation(1.0);
145 : }
146 2 : meRequestedAnimationMode = Animator::AM_Immediate;
147 : }
148 :
149 237 : ::boost::optional<Point> VisibleAreaManager::GetRequestedTopLeft() const
150 : {
151 237 : sd::Window *pWindow (mrSlideSorter.GetContentWindow());
152 237 : if ( ! pWindow)
153 0 : return ::boost::optional<Point>();
154 :
155 : // Get the currently visible area and the model area.
156 : const Rectangle aVisibleArea (pWindow->PixelToLogic(
157 : Rectangle(
158 : Point(0,0),
159 237 : pWindow->GetOutputSizePixel())));
160 237 : const Rectangle aModelArea (mrSlideSorter.GetView().GetModelArea());
161 :
162 237 : sal_Int32 nVisibleTop (aVisibleArea.Top());
163 237 : const sal_Int32 nVisibleWidth (aVisibleArea.GetWidth());
164 237 : sal_Int32 nVisibleLeft (aVisibleArea.Left());
165 237 : const sal_Int32 nVisibleHeight (aVisibleArea.GetHeight());
166 :
167 : // Find the longest run of boxes whose union fits into the visible area.
168 474 : for (::std::vector<Rectangle>::const_iterator
169 237 : iBox(maVisibleRequests.begin()),
170 237 : iEnd(maVisibleRequests.end());
171 : iBox!=iEnd;
172 : ++iBox)
173 : {
174 237 : if (nVisibleTop+nVisibleHeight <= iBox->Bottom())
175 64 : nVisibleTop = iBox->Bottom()-nVisibleHeight;
176 237 : if (nVisibleTop > iBox->Top())
177 64 : nVisibleTop = iBox->Top();
178 :
179 237 : if (nVisibleLeft+nVisibleWidth <= iBox->Right())
180 64 : nVisibleLeft = iBox->Right()-nVisibleWidth;
181 237 : if (nVisibleLeft > iBox->Left())
182 64 : nVisibleLeft = iBox->Left();
183 :
184 : // Make sure the visible area does not move outside the model area.
185 237 : if (nVisibleTop + nVisibleHeight > aModelArea.Bottom())
186 172 : nVisibleTop = aModelArea.Bottom() - nVisibleHeight;
187 237 : if (nVisibleTop < aModelArea.Top())
188 172 : nVisibleTop = aModelArea.Top();
189 :
190 237 : if (nVisibleLeft + nVisibleWidth > aModelArea.Right())
191 173 : nVisibleLeft = aModelArea.Right() - nVisibleWidth;
192 237 : if (nVisibleLeft < aModelArea.Left())
193 173 : nVisibleLeft = aModelArea.Left();
194 : }
195 :
196 237 : const Point aRequestedTopLeft (nVisibleLeft, nVisibleTop);
197 237 : if (aRequestedTopLeft == aVisibleArea.TopLeft())
198 236 : return ::boost::optional<Point>();
199 : else
200 1 : return ::boost::optional<Point>(aRequestedTopLeft);
201 : }
202 :
203 : //===== VisibleAreaManager::TemporaryDisabler =================================
204 :
205 97 : VisibleAreaManager::TemporaryDisabler::TemporaryDisabler (SlideSorter& rSlideSorter)
206 97 : : mrVisibleAreaManager(rSlideSorter.GetController().GetVisibleAreaManager())
207 : {
208 97 : ++mrVisibleAreaManager.mnDisableCount;
209 97 : }
210 :
211 97 : VisibleAreaManager::TemporaryDisabler::~TemporaryDisabler()
212 : {
213 97 : --mrVisibleAreaManager.mnDisableCount;
214 97 : }
215 :
216 : //===== VerticalVisibleAreaScroller ===========================================
217 :
218 : namespace {
219 :
220 : const static sal_Int32 gnMaxScrollDistance = 300;
221 :
222 1 : VisibleAreaScroller::VisibleAreaScroller (
223 : SlideSorter& rSlideSorter,
224 : const Point& rStart,
225 : const Point& rEnd)
226 : : mrSlideSorter(rSlideSorter),
227 : maStart(rStart),
228 : maEnd(rEnd),
229 : maAccelerationFunction(
230 : controller::AnimationParametricFunction(
231 1 : 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 1 : if (std::abs(rStart.X()-rEnd.X()) > gnMaxScrollDistance)
237 : {
238 0 : if (rStart.X() < rEnd.X())
239 0 : maStart.X() = rEnd.X()-gnMaxScrollDistance;
240 : else
241 0 : maStart.X() = rEnd.X()+gnMaxScrollDistance;
242 : }
243 1 : if (std::abs(rStart.Y()-rEnd.Y()) > gnMaxScrollDistance)
244 : {
245 0 : if (rStart.Y() < rEnd.Y())
246 0 : maStart.Y() = rEnd.Y()-gnMaxScrollDistance;
247 : else
248 0 : maStart.Y() = rEnd.Y()+gnMaxScrollDistance;
249 : }
250 1 : }
251 :
252 1 : void VisibleAreaScroller::operator() (const double nTime)
253 : {
254 1 : const double nLocalTime (maAccelerationFunction(nTime));
255 1 : mrSlideSorter.GetController().GetScrollBarManager().SetTopLeft(
256 : Point(
257 1 : sal_Int32(0.5 + maStart.X() * (1.0 - nLocalTime) + maEnd.X() * nLocalTime),
258 3 : sal_Int32 (0.5 + maStart.Y() * (1.0 - nLocalTime) + maEnd.Y() * nLocalTime)));
259 1 : }
260 :
261 : } // end of anonymous namespace
262 :
263 66 : } } } // end of namespace ::sd::slidesorter::controller
264 :
265 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|