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 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
|
/* -*- 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 "controller/SlsScrollBarManager.hxx"
#include "SlideSorter.hxx"
#include "controller/SlideSorterController.hxx"
#include "controller/SlsVisibleAreaManager.hxx"
#include "model/SlideSorterModel.hxx"
#include "model/SlsPageDescriptor.hxx"
#include "view/SlideSorterView.hxx"
#include "view/SlsLayouter.hxx"
#include "view/SlsTheme.hxx"
#include "Window.hxx"
#include "sdpage.hxx"
#include <boost/limits.hpp>
#include <vcl/scrbar.hxx>
namespace sd { namespace slidesorter { namespace controller {
ScrollBarManager::ScrollBarManager (SlideSorter& rSlideSorter)
: mrSlideSorter(rSlideSorter),
mpHorizontalScrollBar(mrSlideSorter.GetHorizontalScrollBar()),
mpVerticalScrollBar(mrSlideSorter.GetVerticalScrollBar()),
mnHorizontalPosition (0),
mnVerticalPosition (0),
maScrollBorder (20,20),
mnHorizontalScrollFactor (0.15),
mnVerticalScrollFactor (0.25),
mpScrollBarFiller(mrSlideSorter.GetScrollBarFiller()),
maAutoScrollTimer(),
maAutoScrollOffset(0,0),
mbIsAutoScrollActive(false),
mpContentWindow(mrSlideSorter.GetContentWindow()),
maAutoScrollFunctor()
{
// Hide the scroll bars by default to prevent display errors while
// switching between view shells: In the short time between initiating
// such a switch and the final rearrangement of UI controls the scroll
// bars and the filler where displayed in the upper left corner of the
// ViewTabBar.
mpHorizontalScrollBar->Hide();
mpVerticalScrollBar->Hide();
mpScrollBarFiller->Hide();
maAutoScrollTimer.SetTimeout(25);
maAutoScrollTimer.SetTimeoutHdl (
LINK(this, ScrollBarManager, AutoScrollTimeoutHandler));
}
ScrollBarManager::~ScrollBarManager (void)
{
}
void ScrollBarManager::LateInitialization (void)
{
}
void ScrollBarManager::Connect (void)
{
if (mpVerticalScrollBar != 0)
{
mpVerticalScrollBar->SetScrollHdl (
LINK(this, ScrollBarManager, VerticalScrollBarHandler));
}
if (mpHorizontalScrollBar != 0)
{
mpHorizontalScrollBar->SetScrollHdl(
LINK(this, ScrollBarManager, HorizontalScrollBarHandler));
}
}
void ScrollBarManager::Disconnect (void)
{
if (mpVerticalScrollBar != 0)
{
mpVerticalScrollBar->SetScrollHdl (Link());
}
if (mpHorizontalScrollBar != 0)
{
mpHorizontalScrollBar->SetScrollHdl (Link());
}
}
/** Placing the scroll bars is an iterative process. The visibility of one
scroll bar affects the remaining size and thus may lead to the other
scroll bar becoming visible.
First we determine the visibility of the horizontal scroll bar. After
that we do the same for the vertical scroll bar. To have an initial
value for the required size we call the layouter before that. When one
of the two scroll bars is made visible then the size of the browser
window changes and a second call to the layouter becomes necessary.
That call is made anyway after this method returns.
*/
Rectangle ScrollBarManager::PlaceScrollBars (
const Rectangle& rAvailableArea,
const bool bIsHorizontalScrollBarAllowed,
const bool bIsVerticalScrollBarAllowed)
{
Rectangle aRemainingSpace (DetermineScrollBarVisibilities(
rAvailableArea,
bIsHorizontalScrollBarAllowed,
bIsVerticalScrollBarAllowed));
if (mpHorizontalScrollBar!=0 && mpHorizontalScrollBar->IsVisible())
PlaceHorizontalScrollBar (rAvailableArea);
if (mpVerticalScrollBar!=0 && mpVerticalScrollBar->IsVisible())
PlaceVerticalScrollBar (rAvailableArea);
if (mpScrollBarFiller!=0 && mpScrollBarFiller->IsVisible())
PlaceFiller (rAvailableArea);
return aRemainingSpace;
}
void ScrollBarManager::PlaceHorizontalScrollBar (const Rectangle& aAvailableArea)
{
// Save the current relative position.
mnHorizontalPosition = double(mpHorizontalScrollBar->GetThumbPos())
/ double(mpHorizontalScrollBar->GetRange().Len());
// Place the scroll bar.
Size aScrollBarSize (mpHorizontalScrollBar->GetSizePixel());
mpHorizontalScrollBar->SetPosSizePixel (
Point(aAvailableArea.Left(),
aAvailableArea.Bottom()-aScrollBarSize.Height()+1),
Size (aAvailableArea.GetWidth() - GetVerticalScrollBarWidth(),
aScrollBarSize.Height()));
// Restore the relative position.
mpHorizontalScrollBar->SetThumbPos(
(long)(0.5 + mnHorizontalPosition * mpHorizontalScrollBar->GetRange().Len()));
}
void ScrollBarManager::PlaceVerticalScrollBar (const Rectangle& aArea)
{
const sal_Int32 nThumbPosition (mpVerticalScrollBar->GetThumbPos());
// Place the scroll bar.
Size aScrollBarSize (mpVerticalScrollBar->GetSizePixel());
Point aPosition (aArea.Right()-aScrollBarSize.Width()+1, aArea.Top());
Size aSize (aScrollBarSize.Width(), aArea.GetHeight() - GetHorizontalScrollBarHeight());
mpVerticalScrollBar->SetPosSizePixel(aPosition, aSize);
// Restore the position.
mpVerticalScrollBar->SetThumbPos(static_cast<long>(nThumbPosition));
mnVerticalPosition = nThumbPosition / double(mpVerticalScrollBar->GetRange().Len());
}
void ScrollBarManager::PlaceFiller (const Rectangle& aArea)
{
mpScrollBarFiller->SetPosSizePixel(
Point(
aArea.Right()-mpVerticalScrollBar->GetSizePixel().Width()+1,
aArea.Bottom()-mpHorizontalScrollBar->GetSizePixel().Height()+1),
Size (
mpVerticalScrollBar->GetSizePixel().Width(),
mpHorizontalScrollBar->GetSizePixel().Height()));
}
void ScrollBarManager::UpdateScrollBars (bool bResetThumbPosition, bool bUseScrolling)
{
Rectangle aModelArea (mrSlideSorter.GetView().GetModelArea());
SharedSdWindow pWindow (mrSlideSorter.GetContentWindow());
Size aWindowModelSize (pWindow->PixelToLogic(pWindow->GetSizePixel()));
// The horizontal scroll bar is only shown when the window is
// horizontally smaller than the view.
if (mpHorizontalScrollBar != 0 && mpHorizontalScrollBar->IsVisible())
{
mpHorizontalScrollBar->Show();
mpHorizontalScrollBar->SetRange (
Range(aModelArea.Left(), aModelArea.Right()));
if (bResetThumbPosition)
{
mpHorizontalScrollBar->SetThumbPos (0);
mnHorizontalPosition = 0;
}
else
mnHorizontalPosition =
double(mpHorizontalScrollBar->GetThumbPos())
/ double(mpHorizontalScrollBar->GetRange().Len());
mpHorizontalScrollBar->SetVisibleSize (aWindowModelSize.Width());
const long nWidth (mpContentWindow->PixelToLogic(
mpContentWindow->GetSizePixel()).Width());
// Make the line size about 10% of the visible width.
mpHorizontalScrollBar->SetLineSize (nWidth / 10);
// Make the page size about 90% of the visible width.
mpHorizontalScrollBar->SetPageSize ((nWidth * 9) / 10);
}
else
{
mnHorizontalPosition = 0;
}
// The vertical scroll bar is always shown.
if (mpVerticalScrollBar != 0 && mpVerticalScrollBar->IsVisible())
{
mpVerticalScrollBar->SetRange (
Range(aModelArea.Top(), aModelArea.Bottom()));
if (bResetThumbPosition)
{
mpVerticalScrollBar->SetThumbPos (0);
mnVerticalPosition = 0;
}
else
mnVerticalPosition =
double(mpVerticalScrollBar->GetThumbPos())
/ double(mpVerticalScrollBar->GetRange().Len());
mpVerticalScrollBar->SetVisibleSize (aWindowModelSize.Height());
const long nHeight (mpContentWindow->PixelToLogic(
mpContentWindow->GetSizePixel()).Height());
// Make the line size about 10% of the visible height.
mpVerticalScrollBar->SetLineSize (nHeight / 10);
// Make the page size about 90% of the visible height.
mpVerticalScrollBar->SetPageSize ((nHeight * 9) / 10);
}
else
{
mnVerticalPosition = 0;
}
double nEps (::std::numeric_limits<double>::epsilon());
if (fabs(mnHorizontalPosition-pWindow->GetVisibleX()) > nEps
|| fabs(mnVerticalPosition-pWindow->GetVisibleY()) > nEps)
{
mrSlideSorter.GetView().InvalidatePageObjectVisibilities();
if (bUseScrolling)
pWindow->SetVisibleXY(mnHorizontalPosition, mnVerticalPosition);
else
SetWindowOrigin(mnHorizontalPosition, mnVerticalPosition);
}
}
IMPL_LINK(ScrollBarManager, VerticalScrollBarHandler, ScrollBar*, pScrollBar)
{
if (pScrollBar!=NULL
&& pScrollBar==mpVerticalScrollBar.get()
&& pScrollBar->IsVisible()
&& mrSlideSorter.GetContentWindow()!=0)
{
double nRelativePosition = double(pScrollBar->GetThumbPos())
/ double(pScrollBar->GetRange().Len());
mrSlideSorter.GetView().InvalidatePageObjectVisibilities();
mrSlideSorter.GetContentWindow()->SetVisibleXY(-1, nRelativePosition);
mrSlideSorter.GetController().GetVisibleAreaManager().DeactivateCurrentSlideTracking();
}
return sal_True;
}
IMPL_LINK(ScrollBarManager, HorizontalScrollBarHandler, ScrollBar*, pScrollBar)
{
if (pScrollBar!=NULL
&& pScrollBar==mpHorizontalScrollBar.get()
&& pScrollBar->IsVisible()
&& mrSlideSorter.GetContentWindow()!=0)
{
double nRelativePosition = double(pScrollBar->GetThumbPos())
/ double(pScrollBar->GetRange().Len());
mrSlideSorter.GetView().InvalidatePageObjectVisibilities();
mrSlideSorter.GetContentWindow()->SetVisibleXY(nRelativePosition, -1);
mrSlideSorter.GetController().GetVisibleAreaManager().DeactivateCurrentSlideTracking();
}
return sal_True;
}
void ScrollBarManager::SetWindowOrigin (
double nHorizontalPosition,
double nVerticalPosition)
{
mnHorizontalPosition = nHorizontalPosition;
mnVerticalPosition = nVerticalPosition;
SharedSdWindow pWindow (mrSlideSorter.GetContentWindow());
Size aViewSize (pWindow->GetViewSize());
Point aOrigin (
(long int) (mnHorizontalPosition * aViewSize.Width()),
(long int) (mnVerticalPosition * aViewSize.Height()));
pWindow->SetWinViewPos (aOrigin);
pWindow->UpdateMapMode ();
pWindow->Invalidate ();
}
/** Determining the visibility of the scroll bars is quite complicated. The
visibility of one influences that of the other because showing a scroll
bar makes the available space smaller and may lead to the need of
displaying the other.
To solve this we test all four combinations of showing or hiding each
scroll bar and use the best one. The best one is that combination that
a) shows the least number of scroll bars with preference of showing the
vertical over showing the horizontal and
b) when not showing a scroll bar the area used by the page objects fits
into the available area in the scroll bars orientation.
*/
Rectangle ScrollBarManager::DetermineScrollBarVisibilities (
const Rectangle& rAvailableArea,
const bool bIsHorizontalScrollBarAllowed,
const bool bIsVerticalScrollBarAllowed)
{
// Test which combination of scroll bars is the best.
bool bShowHorizontal = false;
bool bShowVertical = false;
if (mrSlideSorter.GetModel().GetPageCount() == 0)
{
// No pages => no scroll bars.
}
else if (TestScrollBarVisibilities(false, false, rAvailableArea))
{
// Nothing to be done.
}
else if (bIsHorizontalScrollBarAllowed
&& TestScrollBarVisibilities(true, false, rAvailableArea))
{
bShowHorizontal = true;
}
else if (bIsVerticalScrollBarAllowed
&& TestScrollBarVisibilities(false, true, rAvailableArea))
{
bShowVertical = true;
}
else
{
bShowHorizontal = true;
bShowVertical = true;
}
// Make the visibility of the scroll bars permanent.
mpVerticalScrollBar->Show(bShowVertical);
mpHorizontalScrollBar->Show(bShowHorizontal);
mpScrollBarFiller->Show(bShowVertical && bShowHorizontal);
// Adapt the remaining space accordingly.
Rectangle aRemainingSpace (rAvailableArea);
if (bShowVertical)
aRemainingSpace.Right() -= mpVerticalScrollBar->GetSizePixel().Width();
if (bShowHorizontal)
aRemainingSpace.Bottom() -= mpHorizontalScrollBar->GetSizePixel().Height();
return aRemainingSpace;
}
bool ScrollBarManager::TestScrollBarVisibilities (
bool bHorizontalScrollBarVisible,
bool bVerticalScrollBarVisible,
const Rectangle& rAvailableArea)
{
model::SlideSorterModel& rModel (mrSlideSorter.GetModel());
// Adapt the available size by subtracting the sizes of the scroll bars
// visible in this combination.
Size aBrowserSize (rAvailableArea.GetSize());
if (bHorizontalScrollBarVisible)
aBrowserSize.Height() -= mpHorizontalScrollBar->GetSizePixel().Height();
if (bVerticalScrollBarVisible)
aBrowserSize.Width() -= mpVerticalScrollBar->GetSizePixel().Width();
// Tell the view to rearrange its page objects and check whether the
// page objects can be shown without clipping.
bool bRearrangeSuccess (mrSlideSorter.GetView().GetLayouter().Rearrange (
mrSlideSorter.GetView().GetOrientation(),
aBrowserSize,
rModel.GetPageDescriptor(0)->GetPage()->GetSize(),
rModel.GetPageCount()));
if (bRearrangeSuccess)
{
Size aPageSize = mrSlideSorter.GetView().GetLayouter().GetTotalBoundingBox().GetSize();
Size aWindowModelSize = mpContentWindow->PixelToLogic(aBrowserSize);
// The content may be clipped, i.e. not fully visible, in one
// direction only when the scroll bar is visible in that direction.
if (aPageSize.Width() > aWindowModelSize.Width())
if ( ! bHorizontalScrollBarVisible)
return false;
if (aPageSize.Height() > aWindowModelSize.Height())
if ( ! bVerticalScrollBarVisible)
return false;
return true;
}
else
return false;
}
void ScrollBarManager::SetTopLeft (const Point aNewTopLeft)
{
if (( ! mpVerticalScrollBar
|| mpVerticalScrollBar->GetThumbPos() == aNewTopLeft.Y())
&& ( ! mpHorizontalScrollBar
|| mpHorizontalScrollBar->GetThumbPos() == aNewTopLeft.X()))
return;
// Flush pending repaints before scrolling to avoid temporary artifacts.
mrSlideSorter.GetContentWindow()->Update();
if (mpVerticalScrollBar)
{
mpVerticalScrollBar->SetThumbPos(aNewTopLeft.Y());
mnVerticalPosition = aNewTopLeft.Y() / double(mpVerticalScrollBar->GetRange().Len());
}
if (mpHorizontalScrollBar)
{
mpHorizontalScrollBar->SetThumbPos(aNewTopLeft.X());
mnHorizontalPosition = aNewTopLeft.X() / double(mpHorizontalScrollBar->GetRange().Len());
}
mrSlideSorter.GetContentWindow()->SetVisibleXY(mnHorizontalPosition, mnVerticalPosition);
mrSlideSorter.GetView().InvalidatePageObjectVisibilities();
}
int ScrollBarManager::GetVerticalScrollBarWidth (void) const
{
if (mpVerticalScrollBar != 0 && mpVerticalScrollBar->IsVisible())
return mpVerticalScrollBar->GetSizePixel().Width();
else
return 0;
}
int ScrollBarManager::GetHorizontalScrollBarHeight (void) const
{
if (mpHorizontalScrollBar != 0 && mpHorizontalScrollBar->IsVisible())
return mpHorizontalScrollBar->GetSizePixel().Height();
else
return 0;
}
void ScrollBarManager::CalcAutoScrollOffset (const Point& rMouseWindowPosition)
{
SharedSdWindow pWindow (mrSlideSorter.GetContentWindow());
int nDx = 0;
int nDy = 0;
Size aWindowSize = pWindow->GetOutputSizePixel();
Rectangle aWindowArea (pWindow->GetPosPixel(), aWindowSize);
Rectangle aViewPixelArea (
pWindow->LogicToPixel(mrSlideSorter.GetView().GetModelArea()));
if (aWindowSize.Width() > maScrollBorder.Width() * 3
&& mpHorizontalScrollBar != 0
&& mpHorizontalScrollBar->IsVisible())
{
if (rMouseWindowPosition.X() < maScrollBorder.Width()
&& aWindowArea.Left() > aViewPixelArea.Left())
{
nDx = -1 + (int)(mnHorizontalScrollFactor
* (rMouseWindowPosition.X() - maScrollBorder.Width()));
}
if (rMouseWindowPosition.X() >= (aWindowSize.Width() - maScrollBorder.Width())
&& aWindowArea.Right() < aViewPixelArea.Right())
{
nDx = 1 + (int)(mnHorizontalScrollFactor
* (rMouseWindowPosition.X() - aWindowSize.Width()
+ maScrollBorder.Width()));
}
}
if (aWindowSize.Height() > maScrollBorder.Height() * 3
&& aWindowSize.Height() < aViewPixelArea.GetHeight())
{
if (rMouseWindowPosition.Y() < maScrollBorder.Height()
&& aWindowArea.Top() > aViewPixelArea.Top())
{
nDy = -1 + (int)(mnVerticalScrollFactor
* (rMouseWindowPosition.Y() - maScrollBorder.Height()));
}
if (rMouseWindowPosition.Y() >= (aWindowSize.Height() - maScrollBorder.Height())
&& aWindowArea.Bottom() < aViewPixelArea.Bottom())
{
nDy = 1 + (int)(mnVerticalScrollFactor
* (rMouseWindowPosition.Y() - aWindowSize.Height()
+ maScrollBorder.Height()));
}
}
maAutoScrollOffset = Size(nDx,nDy);
}
bool ScrollBarManager::AutoScroll (
const Point& rMouseWindowPosition,
const ::boost::function<void(void)>& rAutoScrollFunctor)
{
maAutoScrollFunctor = rAutoScrollFunctor;
CalcAutoScrollOffset(rMouseWindowPosition);
bool bResult (true);
if ( ! mbIsAutoScrollActive)
bResult = RepeatAutoScroll();
return bResult;
}
void ScrollBarManager::StopAutoScroll (void)
{
maAutoScrollTimer.Stop();
mbIsAutoScrollActive = false;
}
bool ScrollBarManager::RepeatAutoScroll (void)
{
if (maAutoScrollOffset != Size(0,0))
{
if (mrSlideSorter.GetViewShell() != NULL)
{
mrSlideSorter.GetViewShell()->Scroll(
maAutoScrollOffset.Width(),
maAutoScrollOffset.Height());
mrSlideSorter.GetView().InvalidatePageObjectVisibilities();
if (maAutoScrollFunctor)
maAutoScrollFunctor();
mbIsAutoScrollActive = true;
maAutoScrollTimer.Start();
return true;
}
}
clearAutoScrollFunctor();
mbIsAutoScrollActive = false;
return false;
}
void ScrollBarManager::clearAutoScrollFunctor()
{
maAutoScrollFunctor = ::boost::function<void(void)>();
}
IMPL_LINK_NOARG(ScrollBarManager, AutoScrollTimeoutHandler)
{
RepeatAutoScroll();
return 0;
}
void ScrollBarManager::Scroll(
const Orientation eOrientation,
const Unit eUnit,
const sal_Int32 nDistance)
{
bool bIsVertical (false);
switch (eOrientation)
{
case Orientation_Horizontal: bIsVertical = false; break;
case Orientation_Vertical: bIsVertical = true; break;
default:
OSL_ASSERT(eOrientation==Orientation_Horizontal || eOrientation==Orientation_Vertical);
return;
}
Point aNewTopLeft (
mpHorizontalScrollBar ? mpHorizontalScrollBar->GetThumbPos() : 0,
mpVerticalScrollBar ? mpVerticalScrollBar->GetThumbPos() : 0);
switch (eUnit)
{
case Unit_Pixel:
if (bIsVertical)
aNewTopLeft.Y() += nDistance;
else
aNewTopLeft.X() += nDistance;
break;
case Unit_Slide:
{
view::Layouter& rLayouter (mrSlideSorter.GetView().GetLayouter());
// Calculate estimate of new location.
if (bIsVertical)
aNewTopLeft.Y() += nDistance * rLayouter.GetPageObjectSize().Height();
else
aNewTopLeft.X() += nDistance * rLayouter.GetPageObjectSize().Width();
// Adapt location to show whole slides.
if (bIsVertical)
if (nDistance > 0)
{
const sal_Int32 nIndex (rLayouter.GetIndexAtPoint(
Point(aNewTopLeft.X(), aNewTopLeft.Y()+mpVerticalScrollBar->GetVisibleSize()),
true));
aNewTopLeft.Y() = rLayouter.GetPageObjectBox(nIndex,true).Bottom()
- mpVerticalScrollBar->GetVisibleSize();
}
else
{
const sal_Int32 nIndex (rLayouter.GetIndexAtPoint(
Point(aNewTopLeft.X(), aNewTopLeft.Y()),
true));
aNewTopLeft.Y() = rLayouter.GetPageObjectBox(nIndex,true).Top();
}
else
if (nDistance > 0)
{
const sal_Int32 nIndex (rLayouter.GetIndexAtPoint(
Point(aNewTopLeft.X()+mpVerticalScrollBar->GetVisibleSize(), aNewTopLeft.Y()),
true));
aNewTopLeft.X() = rLayouter.GetPageObjectBox(nIndex,true).Right()
- mpVerticalScrollBar->GetVisibleSize();
}
else
{
const sal_Int32 nIndex (rLayouter.GetIndexAtPoint(
Point(aNewTopLeft.X(), aNewTopLeft.Y()),
true));
aNewTopLeft.X() = rLayouter.GetPageObjectBox(nIndex,true).Left();
}
}
}
mrSlideSorter.GetController().GetVisibleAreaManager().DeactivateCurrentSlideTracking();
SetTopLeft(aNewTopLeft);
}
} } } // end of namespace ::sd::slidesorter::controller
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|