LCOV - code coverage report
Current view: top level - sc/source/ui/dbgui - csvruler.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 388 0.3 %
Date: 2014-11-03 Functions: 2 45 4.4 %
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 "csvruler.hxx"
      21             : #include "AccessibleCsvControl.hxx"
      22             : 
      23             : #include <optutil.hxx>
      24             : #include <com/sun/star/uno/Any.hxx>
      25             : #include <com/sun/star/uno/Sequence.hxx>
      26             : #include <comphelper/string.hxx>
      27             : #include <vcl/settings.hxx>
      28             : #include "miscuno.hxx"
      29             : 
      30             : using namespace com::sun::star::uno;
      31             : 
      32             : #define SEP_PATH            "Office.Calc/Dialogs/CSVImport"
      33             : #define FIXED_WIDTH_LIST    "FixedWidthList"
      34             : 
      35           0 : static void load_FixedWidthList(ScCsvSplits &aSplits)
      36             : {
      37           0 :     OUString sSplits;
      38           0 :     OUString sFixedWidthLists;
      39             : 
      40           0 :     Sequence<Any>aValues;
      41             :     const Any *pProperties;
      42           0 :     Sequence<OUString> aNames(1);
      43           0 :     OUString* pNames = aNames.getArray();
      44           0 :     ScLinkConfigItem aItem( OUString( SEP_PATH ) );
      45             : 
      46           0 :     pNames[0] = OUString( FIXED_WIDTH_LIST );
      47           0 :     aValues = aItem.GetProperties( aNames );
      48           0 :     pProperties = aValues.getConstArray();
      49             : 
      50           0 :     if( pProperties[0].hasValue() )
      51             :     {
      52           0 :         aSplits.Clear();
      53           0 :         pProperties[0] >>= sFixedWidthLists;
      54             : 
      55           0 :         sSplits = sFixedWidthLists;
      56             : 
      57             :         // String ends with a semi-colon so there is no 'int' after the last one.
      58           0 :         sal_Int32 n = comphelper::string::getTokenCount(sSplits, ';') - 1;
      59           0 :         for (sal_Int32 i = 0; i < n; ++i)
      60           0 :             aSplits.Insert( sSplits.getToken(i, ';').toInt32() );
      61           0 :     }
      62           0 : }
      63           0 : static void save_FixedWidthList(ScCsvSplits aSplits)
      64             : {
      65           0 :     OUStringBuffer sSplits;
      66             :     // Create a semi-colon separated string to save the splits
      67           0 :     sal_uInt32 n = aSplits.Count();
      68           0 :     for (sal_uInt32 i = 0; i < n; ++i)
      69             :     {
      70           0 :         sSplits.append( OUString::number( aSplits[i] ) );
      71           0 :         sSplits.append(";");
      72             :     }
      73             : 
      74           0 :     OUString sFixedWidthLists = sSplits.makeStringAndClear();
      75           0 :     Sequence<Any> aValues;
      76             :     Any *pProperties;
      77           0 :     Sequence<OUString> aNames(1);
      78           0 :     OUString* pNames = aNames.getArray();
      79           0 :     ScLinkConfigItem aItem( OUString( SEP_PATH ) );
      80             : 
      81           0 :     pNames[0] = OUString( FIXED_WIDTH_LIST );
      82           0 :     aValues = aItem.GetProperties( aNames );
      83           0 :     pProperties = aValues.getArray();
      84           0 :     pProperties[0] <<= sFixedWidthLists;
      85             : 
      86           0 :     aItem.PutProperties(aNames, aValues);
      87           0 : }
      88             : 
      89           0 : ScCsvRuler::ScCsvRuler( ScCsvControl& rParent ) :
      90             :     ScCsvControl( rParent ),
      91           0 :     mnPosCursorLast( 1 )
      92             : {
      93           0 :     EnableRTL( false ); // RTL
      94           0 :     InitColors();
      95           0 :     InitSizeData();
      96           0 :     maBackgrDev.SetFont( GetFont() );
      97           0 :     maRulerDev.SetFont( GetFont() );
      98             : 
      99           0 :     load_FixedWidthList( maSplits );
     100           0 : }
     101             : 
     102           0 : ScCsvRuler::~ScCsvRuler()
     103             : {
     104           0 :     save_FixedWidthList( maSplits );
     105           0 : }
     106             : 
     107             : // common ruler handling ------------------------------------------------------
     108             : 
     109           0 : void ScCsvRuler::setPosSizePixel(
     110             :         long nX, long nY, long nWidth, long nHeight, sal_uInt16 nFlags )
     111             : {
     112           0 :     if( nFlags & WINDOW_POSSIZE_HEIGHT )
     113           0 :         nHeight = GetTextHeight() + mnSplitSize + 2;
     114           0 :     ScCsvControl::setPosSizePixel( nX, nY, nWidth, nHeight, nFlags );
     115           0 : }
     116             : 
     117           0 : void ScCsvRuler::ApplyLayout( const ScCsvLayoutData& rOldData )
     118             : {
     119           0 :     ScCsvDiff nDiff = GetLayoutData().GetDiff( rOldData ) & (CSV_DIFF_HORIZONTAL | CSV_DIFF_RULERCURSOR);
     120           0 :     if( nDiff == CSV_DIFF_EQUAL ) return;
     121             : 
     122           0 :     DisableRepaint();
     123           0 :     if( nDiff & CSV_DIFF_HORIZONTAL )
     124             :     {
     125           0 :         InitSizeData();
     126           0 :         if( GetRulerCursorPos() >= GetPosCount() )
     127           0 :             MoveCursor( GetPosCount() - 1 );
     128             :     }
     129           0 :     if( nDiff & CSV_DIFF_RULERCURSOR )
     130             :     {
     131           0 :         ImplInvertCursor( rOldData.mnPosCursor );
     132           0 :         ImplInvertCursor( GetRulerCursorPos() );
     133             :     }
     134           0 :     EnableRepaint();
     135             : 
     136           0 :     if( nDiff & CSV_DIFF_POSOFFSET )
     137           0 :         AccSendVisibleEvent();
     138             : }
     139             : 
     140           0 : void ScCsvRuler::InitColors()
     141             : {
     142           0 :     const StyleSettings& rSett = GetSettings().GetStyleSettings();
     143           0 :     maBackColor = rSett.GetFaceColor();
     144           0 :     maActiveColor = rSett.GetWindowColor();
     145           0 :     maTextColor = rSett.GetLabelTextColor();
     146           0 :     maSplitColor = maBackColor.IsDark() ? maTextColor : Color( COL_LIGHTRED );
     147           0 :     InvalidateGfx();
     148           0 : }
     149             : 
     150           0 : void ScCsvRuler::InitSizeData()
     151             : {
     152           0 :     maWinSize = GetSizePixel();
     153             : 
     154           0 :     mnSplitSize = (GetCharWidth() * 3 / 5) | 1; // make an odd number
     155             : 
     156           0 :     sal_Int32 nActiveWidth = std::min( GetWidth() - GetHdrWidth(), GetPosCount() * GetCharWidth() );
     157           0 :     sal_Int32 nActiveHeight = GetTextHeight();
     158             : 
     159           0 :     maActiveRect.SetPos( Point( GetFirstX(), (GetHeight() - nActiveHeight - 1) / 2 ) );
     160           0 :     maActiveRect.SetSize( Size( nActiveWidth, nActiveHeight ) );
     161             : 
     162           0 :     maBackgrDev.SetOutputSizePixel( maWinSize );
     163           0 :     maRulerDev.SetOutputSizePixel( maWinSize );
     164             : 
     165           0 :     InvalidateGfx();
     166           0 : }
     167             : 
     168           0 : void ScCsvRuler::MoveCursor( sal_Int32 nPos, bool bScroll )
     169             : {
     170           0 :     DisableRepaint();
     171           0 :     if( bScroll )
     172           0 :         Execute( CSVCMD_MAKEPOSVISIBLE, nPos );
     173           0 :     Execute( CSVCMD_MOVERULERCURSOR, IsVisibleSplitPos( nPos ) ? nPos : CSV_POS_INVALID );
     174           0 :     EnableRepaint();
     175           0 :     AccSendCaretEvent();
     176           0 : }
     177             : 
     178           0 : void ScCsvRuler::MoveCursorRel( ScMoveMode eDir )
     179             : {
     180           0 :     if( GetRulerCursorPos() != CSV_POS_INVALID )
     181             :     {
     182           0 :         switch( eDir )
     183             :         {
     184             :             case MOVE_FIRST:
     185           0 :                 MoveCursor( 1 );
     186           0 :             break;
     187             :             case MOVE_LAST:
     188           0 :                 MoveCursor( GetPosCount() - 1 );
     189           0 :             break;
     190             :             case MOVE_PREV:
     191           0 :                 if( GetRulerCursorPos() > 1 )
     192           0 :                     MoveCursor( GetRulerCursorPos() - 1 );
     193           0 :             break;
     194             :             case MOVE_NEXT:
     195           0 :                 if( GetRulerCursorPos() < GetPosCount() - 1 )
     196           0 :                     MoveCursor( GetRulerCursorPos() + 1 );
     197           0 :             break;
     198             :             default:
     199             :             {
     200             :                 // added to avoid warnings
     201             :             }
     202             :         }
     203             :     }
     204           0 : }
     205             : 
     206           0 : void ScCsvRuler::MoveCursorToSplit( ScMoveMode eDir )
     207             : {
     208           0 :     if( GetRulerCursorPos() != CSV_POS_INVALID )
     209             :     {
     210           0 :         sal_uInt32 nIndex = CSV_VEC_NOTFOUND;
     211           0 :         switch( eDir )
     212             :         {
     213           0 :             case MOVE_FIRST:    nIndex = maSplits.LowerBound( 0 );                          break;
     214           0 :             case MOVE_LAST:     nIndex = maSplits.UpperBound( GetPosCount() );              break;
     215           0 :             case MOVE_PREV:     nIndex = maSplits.UpperBound( GetRulerCursorPos() - 1 );    break;
     216           0 :             case MOVE_NEXT:     nIndex = maSplits.LowerBound( GetRulerCursorPos() + 1 );    break;
     217             :             default:
     218             :             {
     219             :                 // added to avoid warnings
     220             :             }
     221             :         }
     222           0 :         sal_Int32 nPos = maSplits[ nIndex ];
     223           0 :         if( nPos != CSV_POS_INVALID )
     224           0 :             MoveCursor( nPos );
     225             :     }
     226           0 : }
     227             : 
     228           0 : void ScCsvRuler::ScrollVertRel( ScMoveMode eDir )
     229             : {
     230           0 :     sal_Int32 nLine = GetFirstVisLine();
     231           0 :     switch( eDir )
     232             :     {
     233           0 :         case MOVE_PREV:     --nLine;                        break;
     234           0 :         case MOVE_NEXT:     ++nLine;                        break;
     235           0 :         case MOVE_PREVPAGE: nLine -= GetVisLineCount() - 1; break;
     236           0 :         case MOVE_NEXTPAGE: nLine += GetVisLineCount() - 1; break;
     237             :         default:
     238             :         {
     239             :             // added to avoid warnings
     240             :         }
     241             :     }
     242           0 :     Execute( CSVCMD_SETLINEOFFSET, nLine );
     243           0 : }
     244             : 
     245             : // split handling -------------------------------------------------------------
     246             : 
     247           0 : sal_Int32 ScCsvRuler::GetNoScrollPos( sal_Int32 nPos ) const
     248             : {
     249           0 :     sal_Int32 nNewPos = nPos;
     250           0 :     if( nNewPos != CSV_POS_INVALID )
     251             :     {
     252           0 :         if( nNewPos < GetFirstVisPos() + CSV_SCROLL_DIST )
     253             :         {
     254           0 :             sal_Int32 nScroll = (GetFirstVisPos() > 0) ? CSV_SCROLL_DIST : 0;
     255           0 :             nNewPos = std::max( nPos, GetFirstVisPos() + nScroll );
     256             :         }
     257           0 :         else if( nNewPos > GetLastVisPos() - CSV_SCROLL_DIST - 1L )
     258             :         {
     259           0 :             sal_Int32 nScroll = (GetFirstVisPos() < GetMaxPosOffset()) ? CSV_SCROLL_DIST : 0;
     260           0 :             nNewPos = std::min( nNewPos, GetLastVisPos() - nScroll - sal_Int32( 1 ) );
     261             :         }
     262             :     }
     263           0 :     return nNewPos;
     264             : }
     265             : 
     266           0 : void ScCsvRuler::InsertSplit( sal_Int32 nPos )
     267             : {
     268           0 :     if( maSplits.Insert( nPos ) )
     269             :     {
     270           0 :         ImplDrawSplit( nPos );
     271           0 :         Repaint();
     272             :     }
     273           0 : }
     274             : 
     275           0 : void ScCsvRuler::RemoveSplit( sal_Int32 nPos )
     276             : {
     277           0 :     if( maSplits.Remove( nPos ) )
     278             :     {
     279           0 :         ImplEraseSplit( nPos );
     280           0 :         Repaint();
     281             :     }
     282           0 : }
     283             : 
     284           0 : void ScCsvRuler::MoveSplit( sal_Int32 nPos, sal_Int32 nNewPos )
     285             : {
     286           0 :     bool bRemove = maSplits.Remove( nPos );
     287           0 :     bool bInsert = maSplits.Insert( nNewPos );
     288           0 :     if( bRemove || bInsert )
     289             :     {
     290           0 :         ImplEraseSplit( nPos );
     291           0 :         ImplDrawSplit( nNewPos );
     292           0 :         Repaint();
     293             :     }
     294           0 : }
     295             : 
     296           0 : void ScCsvRuler::RemoveAllSplits()
     297             : {
     298           0 :     maSplits.Clear();
     299           0 :     Repaint( true );
     300           0 : }
     301             : 
     302           0 : sal_Int32 ScCsvRuler::FindEmptyPos( sal_Int32 nPos, ScMoveMode eDir ) const
     303             : {
     304           0 :     sal_Int32 nNewPos = nPos;
     305           0 :     if( nNewPos != CSV_POS_INVALID )
     306             :     {
     307           0 :         switch( eDir )
     308             :         {
     309             :             case MOVE_FIRST:
     310           0 :                 nNewPos = std::min( nPos, FindEmptyPos( 0, MOVE_NEXT ) );
     311           0 :             break;
     312             :             case MOVE_LAST:
     313           0 :                 nNewPos = std::max( nPos, FindEmptyPos( GetPosCount(), MOVE_PREV ) );
     314           0 :             break;
     315             :             case MOVE_PREV:
     316           0 :                 while( HasSplit( --nNewPos ) ) ;
     317           0 :             break;
     318             :             case MOVE_NEXT:
     319           0 :                 while( HasSplit( ++nNewPos ) ) ;
     320           0 :             break;
     321             :             default:
     322             :             {
     323             :                 // added to avoid warnings
     324             :             }
     325             :         }
     326             :     }
     327           0 :     return IsValidSplitPos( nNewPos ) ? nNewPos : CSV_POS_INVALID;
     328             : }
     329             : 
     330           0 : void ScCsvRuler::MoveCurrSplit( sal_Int32 nNewPos )
     331             : {
     332           0 :     DisableRepaint();
     333           0 :     Execute( CSVCMD_MOVESPLIT, GetRulerCursorPos(), nNewPos );
     334           0 :     MoveCursor( nNewPos );
     335           0 :     EnableRepaint();
     336           0 : }
     337             : 
     338           0 : void ScCsvRuler::MoveCurrSplitRel( ScMoveMode eDir )
     339             : {
     340           0 :     if( HasSplit( GetRulerCursorPos() ) )
     341             :     {
     342           0 :         sal_Int32 nNewPos = FindEmptyPos( GetRulerCursorPos(), eDir );
     343           0 :         if( nNewPos != CSV_POS_INVALID )
     344           0 :             MoveCurrSplit( nNewPos );
     345             :     }
     346           0 : }
     347             : 
     348             : // event handling -------------------------------------------------------------
     349             : 
     350           0 : void ScCsvRuler::Resize()
     351             : {
     352           0 :     ScCsvControl::Resize();
     353           0 :     InitSizeData();
     354           0 :     Repaint();
     355           0 : }
     356             : 
     357           0 : void ScCsvRuler::GetFocus()
     358             : {
     359           0 :     ScCsvControl::GetFocus();
     360           0 :     DisableRepaint();
     361           0 :     if( GetRulerCursorPos() == CSV_POS_INVALID )
     362           0 :         MoveCursor( GetNoScrollPos( mnPosCursorLast ) );
     363           0 :     EnableRepaint();
     364           0 : }
     365             : 
     366           0 : void ScCsvRuler::LoseFocus()
     367             : {
     368           0 :     ScCsvControl::LoseFocus();
     369           0 :     mnPosCursorLast = GetRulerCursorPos();
     370           0 :     MoveCursor( CSV_POS_INVALID );
     371           0 : }
     372             : 
     373           0 : void ScCsvRuler::DataChanged( const DataChangedEvent& rDCEvt )
     374             : {
     375           0 :     if( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && (rDCEvt.GetFlags() & SETTINGS_STYLE) )
     376             :     {
     377           0 :         InitColors();
     378           0 :         Repaint();
     379             :     }
     380           0 :     ScCsvControl::DataChanged( rDCEvt );
     381           0 : }
     382             : 
     383           0 : void ScCsvRuler::MouseButtonDown( const MouseEvent& rMEvt )
     384             : {
     385           0 :     DisableRepaint();
     386           0 :     if( !HasFocus() )
     387           0 :         GrabFocus();
     388           0 :     if( rMEvt.IsLeft() )
     389             :     {
     390           0 :         sal_Int32 nPos = GetPosFromX( rMEvt.GetPosPixel().X() );
     391           0 :         if( IsVisibleSplitPos( nPos ) )
     392           0 :             StartMouseTracking( nPos );
     393           0 :         ImplSetMousePointer( nPos );
     394             :     }
     395           0 :     EnableRepaint();
     396           0 : }
     397             : 
     398           0 : void ScCsvRuler::MouseMove( const MouseEvent& rMEvt )
     399             : {
     400           0 :     if( !rMEvt.IsModifierChanged() )
     401             :     {
     402           0 :         sal_Int32 nPos = GetPosFromX( rMEvt.GetPosPixel().X() );
     403           0 :         if( IsTracking() )
     404             :         {
     405             :             // on mouse tracking: keep position valid
     406           0 :             nPos = std::max( std::min( nPos, GetPosCount() - sal_Int32( 1 ) ), sal_Int32( 1 ) );
     407           0 :             MoveMouseTracking( nPos );
     408             :         }
     409             :         else
     410             :         {
     411           0 :             Point aPoint;
     412           0 :             Rectangle aRect( aPoint, maWinSize );
     413           0 :             if( !IsVisibleSplitPos( nPos ) || !aRect.IsInside( rMEvt.GetPosPixel() ) )
     414             :                 // if focused, keep old cursor position for key input
     415           0 :                 nPos = HasFocus() ? GetRulerCursorPos() : CSV_POS_INVALID;
     416           0 :             MoveCursor( nPos, false );
     417             :         }
     418           0 :         ImplSetMousePointer( nPos );
     419             :     }
     420           0 : }
     421             : 
     422           0 : void ScCsvRuler::Tracking( const TrackingEvent& rTEvt )
     423             : {
     424           0 :     if( rTEvt.IsTrackingEnded() || rTEvt.IsTrackingRepeat() )
     425           0 :         MouseMove( rTEvt.GetMouseEvent() );
     426           0 :     if( rTEvt.IsTrackingEnded() )
     427           0 :         EndMouseTracking( !rTEvt.IsTrackingCanceled() );
     428           0 : }
     429             : 
     430           0 : void ScCsvRuler::KeyInput( const KeyEvent& rKEvt )
     431             : {
     432           0 :     const vcl::KeyCode& rKCode = rKEvt.GetKeyCode();
     433           0 :     sal_uInt16 nCode = rKCode.GetCode();
     434           0 :     bool bNoMod = !rKCode.GetModifier();
     435           0 :     bool bShift = (rKCode.GetModifier() == KEY_SHIFT);
     436           0 :     bool bJump = (rKCode.GetModifier() == KEY_MOD1);
     437           0 :     bool bMove = (rKCode.GetModifier() == (KEY_MOD1 | KEY_SHIFT));
     438             : 
     439           0 :     ScMoveMode eHDir = GetHorzDirection( nCode, true );
     440           0 :     ScMoveMode eVDir = GetVertDirection( nCode, false );
     441             : 
     442           0 :     if( bNoMod )
     443             :     {
     444           0 :         if( eHDir != MOVE_NONE )
     445           0 :             MoveCursorRel( eHDir );
     446           0 :         else if( eVDir != MOVE_NONE )
     447           0 :             ScrollVertRel( eVDir );
     448           0 :         else switch( nCode )
     449             :         {
     450           0 :             case KEY_SPACE:     Execute( CSVCMD_TOGGLESPLIT, GetRulerCursorPos() ); break;
     451           0 :             case KEY_INSERT:    Execute( CSVCMD_INSERTSPLIT, GetRulerCursorPos() ); break;
     452           0 :             case KEY_DELETE:    Execute( CSVCMD_REMOVESPLIT, GetRulerCursorPos() ); break;
     453             :         }
     454             :     }
     455           0 :     else if( bJump && (eHDir != MOVE_NONE) )
     456           0 :         MoveCursorToSplit( eHDir );
     457           0 :     else if( bMove && (eHDir != MOVE_NONE) )
     458           0 :         MoveCurrSplitRel( eHDir );
     459           0 :     else if( bShift && (nCode == KEY_DELETE) )
     460           0 :         Execute( CSVCMD_REMOVEALLSPLITS );
     461             : 
     462           0 :     if( rKCode.GetGroup() != KEYGROUP_CURSOR )
     463           0 :         ScCsvControl::KeyInput( rKEvt );
     464           0 : }
     465             : 
     466           0 : void ScCsvRuler::StartMouseTracking( sal_Int32 nPos )
     467             : {
     468           0 :     mnPosMTStart = mnPosMTCurr = nPos;
     469           0 :     mbPosMTMoved = false;
     470           0 :     maOldSplits = maSplits;
     471           0 :     Execute( CSVCMD_INSERTSPLIT, nPos );
     472           0 :     if( HasSplit( nPos ) )
     473           0 :         StartTracking( STARTTRACK_BUTTONREPEAT );
     474           0 : }
     475             : 
     476           0 : void ScCsvRuler::MoveMouseTracking( sal_Int32 nPos )
     477             : {
     478           0 :     if( mnPosMTCurr != nPos )
     479             :     {
     480           0 :         DisableRepaint();
     481           0 :         MoveCursor( nPos );
     482           0 :         if( (mnPosMTCurr != mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) )
     483           0 :             Execute( CSVCMD_INSERTSPLIT, nPos );
     484             :         else
     485           0 :             Execute( CSVCMD_MOVESPLIT, mnPosMTCurr, nPos );
     486           0 :         mnPosMTCurr = nPos;
     487           0 :         mbPosMTMoved = true;
     488           0 :         EnableRepaint();
     489             :     }
     490           0 : }
     491             : 
     492           0 : void ScCsvRuler::EndMouseTracking( bool bApply )
     493             : {
     494           0 :     if( bApply )    // tracking finished successfully
     495             :     {
     496             :         // remove on simple click on an existing split
     497           0 :         if( (mnPosMTCurr == mnPosMTStart) && maOldSplits.HasSplit( mnPosMTCurr ) && !mbPosMTMoved )
     498           0 :             Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
     499             :     }
     500             :     else            // tracking cancelled
     501             :     {
     502           0 :         MoveCursor( mnPosMTStart );
     503             :         // move split to origin
     504           0 :         if( maOldSplits.HasSplit( mnPosMTStart ) )
     505           0 :             MoveMouseTracking( mnPosMTStart );
     506             :         // remove temporarily inserted split
     507           0 :         else if( !maOldSplits.HasSplit( mnPosMTCurr ) )
     508           0 :             Execute( CSVCMD_REMOVESPLIT, mnPosMTCurr );
     509             :     }
     510           0 :     mnPosMTStart = CSV_POS_INVALID;
     511           0 : }
     512             : 
     513             : // painting -------------------------------------------------------------------
     514             : 
     515           0 : void ScCsvRuler::Paint( const Rectangle& )
     516             : {
     517           0 :     Repaint();
     518           0 : }
     519             : 
     520           0 : void ScCsvRuler::ImplRedraw()
     521             : {
     522           0 :     if( IsVisible() )
     523             :     {
     524           0 :         if( !IsValidGfx() )
     525             :         {
     526           0 :             ValidateGfx();
     527           0 :             ImplDrawBackgrDev();
     528           0 :             ImplDrawRulerDev();
     529             :         }
     530           0 :         DrawOutDev( Point(), maWinSize, Point(), maWinSize, maRulerDev );
     531           0 :         ImplDrawTrackingRect();
     532             :     }
     533           0 : }
     534             : 
     535           0 : void ScCsvRuler::ImplDrawArea( sal_Int32 nPosX, sal_Int32 nWidth )
     536             : {
     537           0 :     maBackgrDev.SetLineColor();
     538           0 :     Rectangle aRect( Point( nPosX, 0 ), Size( nWidth, GetHeight() ) );
     539           0 :     maBackgrDev.SetFillColor( maBackColor );
     540           0 :     maBackgrDev.DrawRect( aRect );
     541             : 
     542           0 :     aRect = maActiveRect;
     543           0 :     aRect.Left() = std::max( GetFirstX(), nPosX );
     544           0 :     aRect.Right() = std::min( std::min( GetX( GetPosCount() ), GetLastX() ), nPosX + nWidth - sal_Int32( 1 ) );
     545           0 :     if( aRect.Left() <= aRect.Right() )
     546             :     {
     547           0 :         maBackgrDev.SetFillColor( maActiveColor );
     548           0 :         maBackgrDev.DrawRect( aRect );
     549             :     }
     550             : 
     551           0 :     maBackgrDev.SetLineColor( maTextColor );
     552           0 :     sal_Int32 nY = GetHeight() - 1;
     553           0 :     maBackgrDev.DrawLine( Point( nPosX, nY ), Point( nPosX + nWidth - 1, nY ) );
     554           0 : }
     555             : 
     556           0 : void ScCsvRuler::ImplDrawBackgrDev()
     557             : {
     558           0 :     ImplDrawArea( 0, GetWidth() );
     559             : 
     560             :     // scale
     561           0 :     maBackgrDev.SetLineColor( maTextColor );
     562           0 :     maBackgrDev.SetFillColor();
     563             :     sal_Int32 nPos;
     564             : 
     565           0 :     sal_Int32 nFirstPos = std::max( GetPosFromX( 0 ) - (sal_Int32)(1L), (sal_Int32)(0L) );
     566           0 :     sal_Int32 nLastPos = GetPosFromX( GetWidth() );
     567           0 :     sal_Int32 nY = (maActiveRect.Top() + maActiveRect.Bottom()) / 2;
     568           0 :     for( nPos = nFirstPos; nPos <= nLastPos; ++nPos )
     569             :     {
     570           0 :         sal_Int32 nX = GetX( nPos );
     571           0 :         if( nPos % 5 )
     572           0 :             maBackgrDev.DrawPixel( Point( nX, nY ) );
     573             :         else
     574           0 :             maBackgrDev.DrawLine( Point( nX, nY - 1 ), Point( nX, nY + 1 ) );
     575             :     }
     576             : 
     577             :     // texts
     578           0 :     maBackgrDev.SetTextColor( maTextColor );
     579           0 :     maBackgrDev.SetTextFillColor();
     580           0 :     for( nPos = ((nFirstPos + 9) / 10) * 10; nPos <= nLastPos; nPos += 10 )
     581             :     {
     582           0 :         OUString aText( OUString::number( nPos ) );
     583           0 :         sal_Int32 nTextWidth = maBackgrDev.GetTextWidth( aText );
     584           0 :         sal_Int32 nTextX = GetX( nPos ) - nTextWidth / 2;
     585           0 :         ImplDrawArea( nTextX - 1, nTextWidth + 2 );
     586           0 :         maBackgrDev.DrawText( Point( nTextX, maActiveRect.Top() ), aText );
     587           0 :     }
     588           0 : }
     589             : 
     590           0 : void ScCsvRuler::ImplDrawSplit( sal_Int32 nPos )
     591             : {
     592           0 :     if( IsVisibleSplitPos( nPos ) )
     593             :     {
     594           0 :         Point aPos( GetX( nPos ) - mnSplitSize / 2, GetHeight() - mnSplitSize - 2 );
     595           0 :         Size aSize( mnSplitSize, mnSplitSize );
     596           0 :         maRulerDev.SetLineColor( maTextColor );
     597           0 :         maRulerDev.SetFillColor( maSplitColor );
     598           0 :         maRulerDev.DrawEllipse( Rectangle( aPos, aSize ) );
     599           0 :         maRulerDev.DrawPixel( Point( GetX( nPos ), GetHeight() - 2 ) );
     600             :     }
     601           0 : }
     602             : 
     603           0 : void ScCsvRuler::ImplEraseSplit( sal_Int32 nPos )
     604             : {
     605           0 :     if( IsVisibleSplitPos( nPos ) )
     606             :     {
     607           0 :         ImplInvertCursor( GetRulerCursorPos() );
     608           0 :         Point aPos( GetX( nPos ) - mnSplitSize / 2, 0 );
     609           0 :         Size aSize( mnSplitSize, GetHeight() );
     610           0 :         maRulerDev.DrawOutDev( aPos, aSize, aPos, aSize, maBackgrDev );
     611           0 :         ImplInvertCursor( GetRulerCursorPos() );
     612             :     }
     613           0 : }
     614             : 
     615           0 : void ScCsvRuler::ImplDrawRulerDev()
     616             : {
     617           0 :     maRulerDev.DrawOutDev( Point(), maWinSize, Point(), maWinSize, maBackgrDev );
     618           0 :     ImplInvertCursor( GetRulerCursorPos() );
     619             : 
     620           0 :     sal_uInt32 nFirst = maSplits.LowerBound( GetFirstVisPos() );
     621           0 :     sal_uInt32 nLast = maSplits.UpperBound( GetLastVisPos() );
     622           0 :     if( (nFirst != CSV_VEC_NOTFOUND) && (nLast != CSV_VEC_NOTFOUND) )
     623           0 :         for( sal_uInt32 nIndex = nFirst; nIndex <= nLast; ++nIndex )
     624           0 :             ImplDrawSplit( GetSplitPos( nIndex ) );
     625           0 : }
     626             : 
     627           0 : void ScCsvRuler::ImplInvertCursor( sal_Int32 nPos )
     628             : {
     629           0 :     if( IsVisibleSplitPos( nPos ) )
     630             :     {
     631           0 :         ImplInvertRect( maRulerDev, Rectangle( Point( GetX( nPos ) - 1, 0 ), Size( 3, GetHeight() - 1 ) ) );
     632           0 :         if( HasSplit( nPos ) )
     633           0 :             ImplDrawSplit( nPos );
     634             :     }
     635           0 : }
     636             : 
     637           0 : void ScCsvRuler::ImplDrawTrackingRect()
     638             : {
     639           0 :     if( HasFocus() )
     640           0 :         InvertTracking( Rectangle( 0, 0, GetWidth() - 1, GetHeight() - 2 ),
     641           0 :             SHOWTRACK_SMALL | SHOWTRACK_WINDOW );
     642           0 : }
     643             : 
     644           0 : void ScCsvRuler::ImplSetMousePointer( sal_Int32 nPos )
     645             : {
     646           0 :     SetPointer( Pointer( HasSplit( nPos ) ? POINTER_HSPLIT : POINTER_ARROW ) );
     647           0 : }
     648             : 
     649             : // accessibility ==============================================================
     650             : 
     651           0 : ScAccessibleCsvControl* ScCsvRuler::ImplCreateAccessible()
     652             : {
     653           0 :     return new ScAccessibleCsvRuler( *this );
     654         228 : }
     655             : 
     656             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10