LCOV - code coverage report
Current view: top level - libreoffice/vcl/source/window - scrwnd.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 200 0.0 %
Date: 2012-12-27 Functions: 0 15 0.0 %
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             : 
      21             : #include <limits.h>
      22             : #include <tools/time.hxx>
      23             : #include <tools/debug.hxx>
      24             : 
      25             : #include <svids.hrc>
      26             : #include <svdata.hxx>
      27             : #include <scrwnd.hxx>
      28             : 
      29             : #include <vcl/timer.hxx>
      30             : #include <vcl/event.hxx>
      31             : 
      32             : #include <math.h>
      33             : #include <limits.h>
      34             : 
      35             : // -----------
      36             : // - Defines -
      37             : // -----------
      38             : 
      39             : #define WHEEL_WIDTH     25
      40             : #define WHEEL_RADIUS    ((WHEEL_WIDTH) >> 1 )
      41             : #define MAX_TIME        300
      42             : #define MIN_TIME        20
      43             : #define DEF_TIMEOUT     50
      44             : 
      45             : // -------------------
      46             : // - ImplWheelWindow -
      47             : // -------------------
      48             : 
      49           0 : ImplWheelWindow::ImplWheelWindow( Window* pParent ) :
      50             :             FloatingWindow  ( pParent, 0 ),
      51             :             mnRepaintTime   ( 1UL ),
      52             :             mnTimeout       ( DEF_TIMEOUT ),
      53             :             mnWheelMode     ( WHEELMODE_NONE ),
      54             :             mnActDist       ( 0UL ),
      55             :             mnActDeltaX     ( 0L ),
      56           0 :             mnActDeltaY     ( 0L )
      57             : {
      58             :     // we need a parent
      59             :     DBG_ASSERT( pParent, "ImplWheelWindow::ImplWheelWindow(): Parent not set!" );
      60             : 
      61           0 :     const Size      aSize( pParent->GetOutputSizePixel() );
      62           0 :     const sal_uInt16    nFlags = ImplGetSVData()->maWinData.mnAutoScrollFlags;
      63           0 :     const sal_Bool      bHorz = ( nFlags & AUTOSCROLL_HORZ ) != 0;
      64           0 :     const sal_Bool      bVert = ( nFlags & AUTOSCROLL_VERT ) != 0;
      65             : 
      66             :     // calculate maximum speed distance
      67           0 :     mnMaxWidth = (sal_uLong) ( 0.4 * hypot( (double) aSize.Width(), aSize.Height() ) );
      68             : 
      69             :     // create wheel window
      70           0 :     SetTitleType( FLOATWIN_TITLE_NONE );
      71           0 :     ImplCreateImageList();
      72           0 :     ResMgr* pResMgr = ImplGetResMgr();
      73           0 :     Bitmap aBmp;
      74           0 :     if( pResMgr )
      75           0 :         aBmp = Bitmap( ResId( SV_RESID_BITMAP_SCROLLMSK, *pResMgr ) );
      76           0 :     ImplSetRegion( aBmp );
      77             : 
      78             :     // set wheel mode
      79           0 :     if( bHorz && bVert )
      80           0 :         ImplSetWheelMode( WHEELMODE_VH );
      81           0 :     else if( bHorz )
      82           0 :         ImplSetWheelMode( WHEELMODE_H );
      83             :     else
      84           0 :         ImplSetWheelMode( WHEELMODE_V );
      85             : 
      86             :     // init timer
      87           0 :     mpTimer = new Timer;
      88           0 :     mpTimer->SetTimeoutHdl( LINK( this, ImplWheelWindow, ImplScrollHdl ) );
      89           0 :     mpTimer->SetTimeout( mnTimeout );
      90           0 :     mpTimer->Start();
      91             : 
      92           0 :     CaptureMouse();
      93           0 : }
      94             : 
      95             : // ------------------------------------------------------------------------
      96             : 
      97           0 : ImplWheelWindow::~ImplWheelWindow()
      98             : {
      99           0 :     ImplStop();
     100           0 :     delete mpTimer;
     101           0 : }
     102             : 
     103             : // ------------------------------------------------------------------------
     104             : 
     105           0 : void ImplWheelWindow::ImplStop()
     106             : {
     107           0 :     ReleaseMouse();
     108           0 :     mpTimer->Stop();
     109           0 :     Show(sal_False);
     110           0 : }
     111             : 
     112             : // ------------------------------------------------------------------------
     113             : 
     114           0 : void ImplWheelWindow::ImplSetRegion( const Bitmap& rRegionBmp )
     115             : {
     116           0 :     Point           aPos( GetPointerPosPixel() );
     117           0 :     const Size      aSize( rRegionBmp.GetSizePixel() );
     118           0 :     Point           aPoint;
     119           0 :     const Rectangle aRect( aPoint, aSize );
     120             : 
     121           0 :     maCenter = maLastMousePos = aPos;
     122           0 :     aPos.X() -= aSize.Width() >> 1;
     123           0 :     aPos.Y() -= aSize.Height() >> 1;
     124             : 
     125           0 :     SetPosSizePixel( aPos, aSize );
     126           0 :     SetWindowRegionPixel( rRegionBmp.CreateRegion( COL_BLACK, aRect ) );
     127           0 : }
     128             : 
     129             : // ------------------------------------------------------------------------
     130             : 
     131           0 : void ImplWheelWindow::ImplCreateImageList()
     132             : {
     133           0 :     ResMgr* pResMgr = ImplGetResMgr();
     134           0 :     if( pResMgr )
     135             :         maImgList.InsertFromHorizontalBitmap
     136           0 :             ( ResId( SV_RESID_BITMAP_SCROLLBMP, *pResMgr ), 6, NULL );
     137           0 : }
     138             : 
     139             : // ------------------------------------------------------------------------
     140             : 
     141           0 : void ImplWheelWindow::ImplSetWheelMode( sal_uLong nWheelMode )
     142             : {
     143           0 :     if( nWheelMode != mnWheelMode )
     144             :     {
     145           0 :         mnWheelMode = nWheelMode;
     146             : 
     147           0 :         if( WHEELMODE_NONE == mnWheelMode )
     148             :         {
     149           0 :             if( IsVisible() )
     150           0 :                 Hide();
     151             :         }
     152             :         else
     153             :         {
     154           0 :             if( !IsVisible() )
     155           0 :                 Show();
     156             : 
     157           0 :             ImplDrawWheel();
     158             :         }
     159             :     }
     160           0 : }
     161             : 
     162             : // ------------------------------------------------------------------------
     163             : 
     164           0 : void ImplWheelWindow::ImplDrawWheel()
     165             : {
     166             :     sal_uInt16 nId;
     167             : 
     168           0 :     switch( mnWheelMode )
     169             :     {
     170           0 :         case( WHEELMODE_VH ):       nId = 1; break;
     171           0 :         case( WHEELMODE_V    ):     nId = 2; break;
     172           0 :         case( WHEELMODE_H    ):     nId = 3; break;
     173           0 :         case( WHEELMODE_SCROLL_VH ):nId = 4; break;
     174           0 :         case( WHEELMODE_SCROLL_V ): nId = 5; break;
     175           0 :         case( WHEELMODE_SCROLL_H ): nId = 6; break;
     176           0 :         default:                    nId = 0; break;
     177             :     }
     178             : 
     179           0 :     if( nId )
     180           0 :         DrawImage( Point(), maImgList.GetImage( nId ) );
     181           0 : }
     182             : 
     183             : // ------------------------------------------------------------------------
     184             : 
     185           0 : void ImplWheelWindow::ImplRecalcScrollValues()
     186             : {
     187           0 :     if( mnActDist < WHEEL_RADIUS )
     188             :     {
     189           0 :         mnActDeltaX = mnActDeltaY = 0L;
     190           0 :         mnTimeout = DEF_TIMEOUT;
     191             :     }
     192             :     else
     193             :     {
     194             :         sal_uLong nCurTime;
     195             : 
     196             :         // calc current time
     197           0 :         if( mnMaxWidth )
     198             :         {
     199           0 :             const double fExp = ( (double) mnActDist / mnMaxWidth ) * log10( (double) MAX_TIME / MIN_TIME );
     200           0 :             nCurTime = (sal_uLong) ( MAX_TIME / pow( 10., fExp ) );
     201             :         }
     202             :         else
     203           0 :             nCurTime = MAX_TIME;
     204             : 
     205           0 :         if( !nCurTime )
     206           0 :             nCurTime = 1UL;
     207             : 
     208           0 :         if( mnRepaintTime <= nCurTime )
     209           0 :             mnTimeout = nCurTime - mnRepaintTime;
     210             :         else
     211             :         {
     212           0 :             long nMult = mnRepaintTime / nCurTime;
     213             : 
     214           0 :             if( !( mnRepaintTime % nCurTime ) )
     215           0 :                 mnTimeout = 0UL;
     216             :             else
     217           0 :                 mnTimeout = ++nMult * nCurTime - mnRepaintTime;
     218             : 
     219           0 :             double fValX = (double) mnActDeltaX * nMult;
     220           0 :             double fValY = (double) mnActDeltaY * nMult;
     221             : 
     222           0 :             if( fValX > LONG_MAX )
     223           0 :                 mnActDeltaX = LONG_MAX;
     224           0 :             else if( fValX < LONG_MIN )
     225           0 :                 mnActDeltaX = LONG_MIN;
     226             :             else
     227           0 :                 mnActDeltaX = (long) fValX;
     228             : 
     229           0 :             if( fValY > LONG_MAX )
     230           0 :                 mnActDeltaY = LONG_MAX;
     231           0 :             else if( fValY < LONG_MIN )
     232           0 :                 mnActDeltaY = LONG_MIN;
     233             :             else
     234           0 :                 mnActDeltaY = (long) fValY;
     235             :         }
     236             :     }
     237           0 : }
     238             : 
     239             : // ------------------------------------------------------------------------
     240             : 
     241           0 : PointerStyle ImplWheelWindow::ImplGetMousePointer( long nDistX, long nDistY )
     242             : {
     243             :     PointerStyle    eStyle;
     244           0 :     const sal_uInt16    nFlags = ImplGetSVData()->maWinData.mnAutoScrollFlags;
     245           0 :     const sal_Bool      bHorz = ( nFlags & AUTOSCROLL_HORZ ) != 0;
     246           0 :     const sal_Bool      bVert = ( nFlags & AUTOSCROLL_VERT ) != 0;
     247             : 
     248           0 :     if( bHorz || bVert )
     249             :     {
     250           0 :         if( mnActDist < WHEEL_RADIUS )
     251             :         {
     252           0 :             if( bHorz && bVert )
     253           0 :                 eStyle = POINTER_AUTOSCROLL_NSWE;
     254           0 :             else if( bHorz )
     255           0 :                 eStyle = POINTER_AUTOSCROLL_WE;
     256             :             else
     257           0 :                 eStyle = POINTER_AUTOSCROLL_NS;
     258             :         }
     259             :         else
     260             :         {
     261           0 :             double fAngle = atan2( (double) -nDistY, nDistX ) / F_PI180;
     262             : 
     263           0 :             if( fAngle < 0.0 )
     264           0 :                 fAngle += 360.;
     265             : 
     266           0 :             if( bHorz && bVert )
     267             :             {
     268           0 :                 if( fAngle >= 22.5 && fAngle <= 67.5 )
     269           0 :                     eStyle = POINTER_AUTOSCROLL_NE;
     270           0 :                 else if( fAngle >= 67.5 && fAngle <= 112.5 )
     271           0 :                     eStyle = POINTER_AUTOSCROLL_N;
     272           0 :                 else if( fAngle >= 112.5 && fAngle <= 157.5 )
     273           0 :                     eStyle = POINTER_AUTOSCROLL_NW;
     274           0 :                 else if( fAngle >= 157.5 && fAngle <= 202.5 )
     275           0 :                     eStyle = POINTER_AUTOSCROLL_W;
     276           0 :                 else if( fAngle >= 202.5 && fAngle <= 247.5 )
     277           0 :                     eStyle = POINTER_AUTOSCROLL_SW;
     278           0 :                 else if( fAngle >= 247.5 && fAngle <= 292.5 )
     279           0 :                     eStyle = POINTER_AUTOSCROLL_S;
     280           0 :                 else if( fAngle >= 292.5 && fAngle <= 337.5 )
     281           0 :                     eStyle = POINTER_AUTOSCROLL_SE;
     282             :                 else
     283           0 :                     eStyle = POINTER_AUTOSCROLL_E;
     284             :             }
     285           0 :             else if( bHorz )
     286             :             {
     287           0 :                 if( fAngle >= 270. || fAngle <= 90. )
     288           0 :                     eStyle = POINTER_AUTOSCROLL_E;
     289             :                 else
     290           0 :                     eStyle = POINTER_AUTOSCROLL_W;
     291             :             }
     292             :             else
     293             :             {
     294           0 :                 if( fAngle >= 0. && fAngle <= 180. )
     295           0 :                     eStyle = POINTER_AUTOSCROLL_N;
     296             :                 else
     297           0 :                     eStyle = POINTER_AUTOSCROLL_S;
     298             :             }
     299           0 :         }
     300             :     }
     301             :     else
     302           0 :         eStyle = POINTER_ARROW;
     303             : 
     304           0 :     return eStyle;
     305             : }
     306             : 
     307             : // ------------------------------------------------------------------------
     308             : 
     309           0 : void ImplWheelWindow::Paint( const Rectangle& )
     310             : {
     311           0 :     ImplDrawWheel();
     312           0 : }
     313             : 
     314             : // ------------------------------------------------------------------------
     315             : 
     316           0 : void ImplWheelWindow::MouseMove( const MouseEvent& rMEvt )
     317             : {
     318           0 :     FloatingWindow::MouseMove( rMEvt );
     319             : 
     320           0 :     const Point aMousePos( OutputToScreenPixel( rMEvt.GetPosPixel() ) );
     321           0 :     const long  nDistX = aMousePos.X() - maCenter.X();
     322           0 :     const long  nDistY = aMousePos.Y() - maCenter.Y();
     323             : 
     324           0 :     mnActDist = (sal_uLong) hypot( (double) nDistX, nDistY );
     325             : 
     326           0 :     const PointerStyle  eActStyle = ImplGetMousePointer( nDistX, nDistY );
     327           0 :     const sal_uInt16        nFlags = ImplGetSVData()->maWinData.mnAutoScrollFlags;
     328           0 :     const sal_Bool          bHorz = ( nFlags & AUTOSCROLL_HORZ ) != 0;
     329           0 :     const sal_Bool          bVert = ( nFlags & AUTOSCROLL_VERT ) != 0;
     330           0 :     const sal_Bool          bOuter = mnActDist > WHEEL_RADIUS;
     331             : 
     332           0 :     if( bOuter && ( maLastMousePos != aMousePos ) )
     333             :     {
     334           0 :         switch( eActStyle )
     335             :         {
     336           0 :             case( POINTER_AUTOSCROLL_N ):   mnActDeltaX = +0L, mnActDeltaY = +1L; break;
     337           0 :             case( POINTER_AUTOSCROLL_S ):   mnActDeltaX = +0L, mnActDeltaY = -1L; break;
     338           0 :             case( POINTER_AUTOSCROLL_W ):   mnActDeltaX = +1L, mnActDeltaY = +0L; break;
     339           0 :             case( POINTER_AUTOSCROLL_E ):   mnActDeltaX = -1L, mnActDeltaY = +0L; break;
     340           0 :             case( POINTER_AUTOSCROLL_NW ):  mnActDeltaX = +1L, mnActDeltaY = +1L; break;
     341           0 :             case( POINTER_AUTOSCROLL_NE ):  mnActDeltaX = -1L, mnActDeltaY = +1L; break;
     342           0 :             case( POINTER_AUTOSCROLL_SW ):  mnActDeltaX = +1L, mnActDeltaY = -1L; break;
     343           0 :             case( POINTER_AUTOSCROLL_SE ):  mnActDeltaX = -1L, mnActDeltaY = -1L; break;
     344             : 
     345             :             default:
     346           0 :             break;
     347             :         }
     348             :     }
     349             : 
     350           0 :     ImplRecalcScrollValues();
     351           0 :     maLastMousePos = aMousePos;
     352           0 :     SetPointer( eActStyle );
     353             : 
     354           0 :     if( bHorz && bVert )
     355           0 :         ImplSetWheelMode( bOuter ? WHEELMODE_SCROLL_VH : WHEELMODE_VH );
     356           0 :     else if( bHorz )
     357           0 :         ImplSetWheelMode( bOuter ? WHEELMODE_SCROLL_H : WHEELMODE_H );
     358             :     else
     359           0 :         ImplSetWheelMode( bOuter ? WHEELMODE_SCROLL_V : WHEELMODE_V );
     360           0 : }
     361             : 
     362             : // ------------------------------------------------------------------------
     363             : 
     364           0 : void ImplWheelWindow::MouseButtonUp( const MouseEvent& rMEvt )
     365             : {
     366           0 :     if( mnActDist > WHEEL_RADIUS )
     367           0 :         GetParent()->EndAutoScroll();
     368             :     else
     369           0 :         FloatingWindow::MouseButtonUp( rMEvt );
     370           0 : }
     371             : 
     372             : // ------------------------------------------------------------------------
     373             : 
     374           0 : IMPL_LINK_NOARG(ImplWheelWindow, ImplScrollHdl)
     375             : {
     376           0 :     if ( mnActDeltaX || mnActDeltaY )
     377             :     {
     378           0 :         Window*             pWindow = GetParent();
     379           0 :         const Point         aMousePos( pWindow->OutputToScreenPixel( pWindow->GetPointerPosPixel() ) );
     380           0 :         Point               aCmdMousePos( pWindow->ImplFrameToOutput( aMousePos ) );
     381           0 :         CommandScrollData   aScrollData( mnActDeltaX, mnActDeltaY );
     382           0 :         CommandEvent        aCEvt( aCmdMousePos, COMMAND_AUTOSCROLL, sal_True, &aScrollData );
     383           0 :         NotifyEvent         aNCmdEvt( EVENT_COMMAND, pWindow, &aCEvt );
     384             : 
     385           0 :         if ( !ImplCallPreNotify( aNCmdEvt ) )
     386             :         {
     387           0 :             const sal_uLong nTime = Time::GetSystemTicks();
     388           0 :             ImplDelData aDel( this );
     389           0 :             pWindow->Command( aCEvt );
     390           0 :             if( aDel.IsDead() )
     391           0 :                 return 0;
     392           0 :             mnRepaintTime = Max( Time::GetSystemTicks() - nTime, (sal_uLong)1 );
     393           0 :             ImplRecalcScrollValues();
     394             :         }
     395             :     }
     396             : 
     397           0 :     if ( mnTimeout != mpTimer->GetTimeout() )
     398           0 :         mpTimer->SetTimeout( mnTimeout );
     399           0 :     mpTimer->Start();
     400             : 
     401           0 :     return 0L;
     402             : }
     403             : 
     404             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10