LCOV - code coverage report
Current view: top level - libreoffice/sc/source/ui/dbgui - csvcontrol.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 142 0.0 %
Date: 2012-12-27 Functions: 0 39 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             : #include "csvcontrol.hxx"
      21             : #include <vcl/svapp.hxx>
      22             : #include "AccessibleCsvControl.hxx"
      23             : 
      24             : 
      25             : // ============================================================================
      26             : 
      27           0 : ScCsvLayoutData::ScCsvLayoutData() :
      28             :     mnPosCount( 1 ),
      29             :     mnPosOffset( 0 ),
      30             :     mnWinWidth( 1 ),
      31             :     mnHdrWidth( 0 ),
      32             :     mnCharWidth( 1 ),
      33             :     mnLineCount( 1 ),
      34             :     mnLineOffset( 0 ),
      35             :     mnWinHeight( 1 ),
      36             :     mnHdrHeight( 0 ),
      37             :     mnLineHeight( 1 ),
      38             :     mnPosCursor( CSV_POS_INVALID ),
      39             :     mnColCursor( 0 ),
      40             :     mnNoRepaint( 0 ),
      41           0 :     mbAppRTL( !!Application::GetSettings().GetLayoutRTL() )
      42             : {
      43           0 : }
      44             : 
      45           0 : ScCsvDiff ScCsvLayoutData::GetDiff( const ScCsvLayoutData& rData ) const
      46             : {
      47           0 :     ScCsvDiff nRet = CSV_DIFF_EQUAL;
      48           0 :     if( mnPosCount != rData.mnPosCount )        nRet |= CSV_DIFF_POSCOUNT;
      49           0 :     if( mnPosOffset != rData.mnPosOffset )      nRet |= CSV_DIFF_POSOFFSET;
      50           0 :     if( mnHdrWidth != rData.mnHdrWidth )        nRet |= CSV_DIFF_HDRWIDTH;
      51           0 :     if( mnCharWidth != rData.mnCharWidth )      nRet |= CSV_DIFF_CHARWIDTH;
      52           0 :     if( mnLineCount != rData.mnLineCount )      nRet |= CSV_DIFF_LINECOUNT;
      53           0 :     if( mnLineOffset != rData.mnLineOffset )    nRet |= CSV_DIFF_LINEOFFSET;
      54           0 :     if( mnHdrHeight != rData.mnHdrHeight )      nRet |= CSV_DIFF_HDRHEIGHT;
      55           0 :     if( mnLineHeight != rData.mnLineHeight )    nRet |= CSV_DIFF_LINEHEIGHT;
      56           0 :     if( mnPosCursor != rData.mnPosCursor )      nRet |= CSV_DIFF_RULERCURSOR;
      57           0 :     if( mnColCursor != rData.mnColCursor )      nRet |= CSV_DIFF_GRIDCURSOR;
      58           0 :     return nRet;
      59             : }
      60             : 
      61             : 
      62             : // ============================================================================
      63             : 
      64           0 : ScCsvControl::ScCsvControl( ScCsvControl& rParent ) :
      65             :     Control( &rParent, WB_TABSTOP | WB_NODIALOGCONTROL ),
      66           0 :     mrData( rParent.GetLayoutData() ),
      67             :     mpAccessible( NULL ),
      68           0 :     mbValidGfx( false )
      69             : {
      70           0 : }
      71             : 
      72           0 : ScCsvControl::ScCsvControl( Window* pParent, const ScCsvLayoutData& rData, const ResId& rResId ) :
      73             :     Control( pParent, rResId ),
      74             :     mrData( rData ),
      75             :     mpAccessible( NULL ),
      76           0 :     mbValidGfx( false )
      77             : {
      78           0 : }
      79             : 
      80           0 : ScCsvControl::~ScCsvControl()
      81             : {
      82           0 :     if( mpAccessible )
      83           0 :         mpAccessible->dispose();
      84           0 : }
      85             : 
      86             : 
      87             : // event handling -------------------------------------------------------------
      88             : 
      89           0 : void ScCsvControl::GetFocus()
      90             : {
      91           0 :     Control::GetFocus();
      92           0 :     AccSendFocusEvent( true );
      93           0 : }
      94             : 
      95           0 : void ScCsvControl::LoseFocus()
      96             : {
      97           0 :     Control::LoseFocus();
      98           0 :     AccSendFocusEvent( false );
      99           0 : }
     100             : 
     101           0 : void ScCsvControl::AccSendFocusEvent( bool bFocused )
     102             : {
     103           0 :     if( mpAccessible )
     104           0 :         mpAccessible->SendFocusEvent( bFocused );
     105           0 : }
     106             : 
     107           0 : void ScCsvControl::AccSendCaretEvent()
     108             : {
     109           0 :     if( mpAccessible )
     110           0 :         mpAccessible->SendCaretEvent();
     111           0 : }
     112             : 
     113           0 : void ScCsvControl::AccSendVisibleEvent()
     114             : {
     115           0 :     if( mpAccessible )
     116           0 :         mpAccessible->SendVisibleEvent();
     117           0 : }
     118             : 
     119           0 : void ScCsvControl::AccSendSelectionEvent()
     120             : {
     121           0 :     if( mpAccessible )
     122           0 :         mpAccessible->SendSelectionEvent();
     123           0 : }
     124             : 
     125           0 : void ScCsvControl::AccSendTableUpdateEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn, bool bAllRows )
     126             : {
     127           0 :     if( mpAccessible )
     128           0 :         mpAccessible->SendTableUpdateEvent( nFirstColumn, nLastColumn, bAllRows );
     129           0 : }
     130             : 
     131           0 : void ScCsvControl::AccSendInsertColumnEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn )
     132             : {
     133           0 :     if( mpAccessible )
     134           0 :         mpAccessible->SendInsertColumnEvent( nFirstColumn, nLastColumn );
     135           0 : }
     136             : 
     137           0 : void ScCsvControl::AccSendRemoveColumnEvent( sal_uInt32 nFirstColumn, sal_uInt32 nLastColumn )
     138             : {
     139           0 :     if( mpAccessible )
     140           0 :         mpAccessible->SendRemoveColumnEvent( nFirstColumn, nLastColumn );
     141           0 : }
     142             : 
     143             : 
     144             : // repaint helpers ------------------------------------------------------------
     145             : 
     146           0 : void ScCsvControl::Repaint( bool bInvalidate )
     147             : {
     148           0 :     if( bInvalidate )
     149           0 :         InvalidateGfx();
     150           0 :     if( !IsNoRepaint() )
     151           0 :         Execute( CSVCMD_REPAINT );
     152           0 : }
     153             : 
     154           0 : void ScCsvControl::DisableRepaint()
     155             : {
     156           0 :     ++mrData.mnNoRepaint;
     157           0 : }
     158             : 
     159           0 : void ScCsvControl::EnableRepaint( bool bInvalidate )
     160             : {
     161             :     OSL_ENSURE( IsNoRepaint(), "ScCsvControl::EnableRepaint - invalid call" );
     162           0 :     --mrData.mnNoRepaint;
     163           0 :     Repaint( bInvalidate );
     164           0 : }
     165             : 
     166             : 
     167             : // command handling -----------------------------------------------------------
     168             : 
     169           0 : void ScCsvControl::Execute( ScCsvCmdType eType, sal_Int32 nParam1, sal_Int32 nParam2 )
     170             : {
     171           0 :     maCmd.Set( eType, nParam1, nParam2 );
     172           0 :     maCmdHdl.Call( this );
     173           0 : }
     174             : 
     175             : 
     176             : // layout helpers -------------------------------------------------------------
     177             : 
     178           0 : sal_Int32 ScCsvControl::GetVisPosCount() const
     179             : {
     180           0 :     return (mrData.mnWinWidth - GetHdrWidth()) / GetCharWidth();
     181             : }
     182             : 
     183           0 : sal_Int32 ScCsvControl::GetMaxPosOffset() const
     184             : {
     185           0 :     return Max( GetPosCount() - GetVisPosCount() + 2L, 0L );
     186             : }
     187             : 
     188           0 : bool ScCsvControl::IsValidSplitPos( sal_Int32 nPos ) const
     189             : {
     190           0 :     return (0 < nPos) && (nPos < GetPosCount() );
     191             : }
     192             : 
     193           0 : bool ScCsvControl::IsVisibleSplitPos( sal_Int32 nPos ) const
     194             : {
     195           0 :     return IsValidSplitPos( nPos ) && (GetFirstVisPos() <= nPos) && (nPos <= GetLastVisPos());
     196             : }
     197             : 
     198           0 : sal_Int32 ScCsvControl::GetHdrX() const
     199             : {
     200           0 :     return IsRTL() ? (mrData.mnWinWidth - GetHdrWidth()) : 0;
     201             : }
     202             : 
     203           0 : sal_Int32 ScCsvControl::GetFirstX() const
     204             : {
     205           0 :     return IsRTL() ? 0 : GetHdrWidth();
     206             : }
     207             : 
     208           0 : sal_Int32 ScCsvControl::GetLastX() const
     209             : {
     210           0 :     return mrData.mnWinWidth - (IsRTL() ? GetHdrWidth() : 0) - 1;
     211             : }
     212             : 
     213           0 : sal_Int32 ScCsvControl::GetX( sal_Int32 nPos ) const
     214             : {
     215           0 :     return GetFirstX() + (nPos - GetFirstVisPos()) * GetCharWidth();
     216             : }
     217             : 
     218           0 : sal_Int32 ScCsvControl::GetPosFromX( sal_Int32 nX ) const
     219             : {
     220           0 :     return (nX - GetFirstX() + GetCharWidth() / 2) / GetCharWidth() + GetFirstVisPos();
     221             : }
     222             : 
     223           0 : sal_Int32 ScCsvControl::GetVisLineCount() const
     224             : {
     225           0 :     return (mrData.mnWinHeight - GetHdrHeight() - 2) / GetLineHeight() + 1;
     226             : }
     227             : 
     228           0 : sal_Int32 ScCsvControl::GetLastVisLine() const
     229             : {
     230           0 :     return Min( GetFirstVisLine() + GetVisLineCount(), GetLineCount() ) - 1;
     231             : }
     232             : 
     233           0 : sal_Int32 ScCsvControl::GetMaxLineOffset() const
     234             : {
     235           0 :     return Max( GetLineCount() - GetVisLineCount() + 1L, 0L );
     236             : }
     237             : 
     238           0 : bool ScCsvControl::IsValidLine( sal_Int32 nLine ) const
     239             : {
     240           0 :     return (0 <= nLine) && (nLine < GetLineCount());
     241             : }
     242             : 
     243           0 : bool ScCsvControl::IsVisibleLine( sal_Int32 nLine ) const
     244             : {
     245           0 :     return IsValidLine( nLine ) && (GetFirstVisLine() <= nLine) && (nLine <= GetLastVisLine());
     246             : }
     247             : 
     248           0 : sal_Int32 ScCsvControl::GetY( sal_Int32 nLine ) const
     249             : {
     250           0 :     return GetHdrHeight() + (nLine - GetFirstVisLine()) * GetLineHeight();
     251             : }
     252             : 
     253           0 : sal_Int32 ScCsvControl::GetLineFromY( sal_Int32 nY ) const
     254             : {
     255           0 :     return (nY - GetHdrHeight()) / GetLineHeight() + GetFirstVisLine();
     256             : }
     257             : 
     258             : 
     259             : // static helpers -------------------------------------------------------------
     260             : 
     261           0 : void ScCsvControl::ImplInvertRect( OutputDevice& rOutDev, const Rectangle& rRect )
     262             : {
     263           0 :     rOutDev.Push( PUSH_LINECOLOR | PUSH_FILLCOLOR | PUSH_RASTEROP );
     264           0 :     rOutDev.SetLineColor( Color( COL_BLACK ) );
     265           0 :     rOutDev.SetFillColor( Color( COL_BLACK ) );
     266           0 :     rOutDev.SetRasterOp( ROP_INVERT );
     267           0 :     rOutDev.DrawRect( rRect );
     268           0 :     rOutDev.Pop();
     269           0 : }
     270             : 
     271           0 : ScMoveMode ScCsvControl::GetHorzDirection( sal_uInt16 nCode, bool bHomeEnd )
     272             : {
     273           0 :     switch( nCode )
     274             :     {
     275           0 :         case KEY_LEFT:  return MOVE_PREV;
     276           0 :         case KEY_RIGHT: return MOVE_NEXT;
     277             :     }
     278           0 :     if( bHomeEnd ) switch( nCode )
     279             :     {
     280           0 :         case KEY_HOME:  return MOVE_FIRST;
     281           0 :         case KEY_END:   return MOVE_LAST;
     282             :     }
     283           0 :     return MOVE_NONE;
     284             : }
     285             : 
     286           0 : ScMoveMode ScCsvControl::GetVertDirection( sal_uInt16 nCode, bool bHomeEnd )
     287             : {
     288           0 :     switch( nCode )
     289             :     {
     290           0 :         case KEY_UP:        return MOVE_PREV;
     291           0 :         case KEY_DOWN:      return MOVE_NEXT;
     292           0 :         case KEY_PAGEUP:    return MOVE_PREVPAGE;
     293           0 :         case KEY_PAGEDOWN:  return MOVE_NEXTPAGE;
     294             :     }
     295           0 :     if( bHomeEnd ) switch( nCode )
     296             :     {
     297           0 :         case KEY_HOME:      return MOVE_FIRST;
     298           0 :         case KEY_END:       return MOVE_LAST;
     299             :     }
     300           0 :     return MOVE_NONE;
     301             : }
     302             : 
     303             : 
     304             : // accessibility --------------------------------------------------------------
     305             : 
     306           0 : ScCsvControl::XAccessibleRef ScCsvControl::CreateAccessible()
     307             : {
     308           0 :     mpAccessible = ImplCreateAccessible();
     309           0 :     mxAccessible = mpAccessible;
     310           0 :     return mxAccessible;
     311             : }
     312             : 
     313             : 
     314             : // ============================================================================
     315             : 
     316             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10