LCOV - code coverage report
Current view: top level - sc/source/ui/navipi - navcitem.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 31 3.2 %
Date: 2014-11-03 Functions: 2 4 50.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 <svl/intitem.hxx>
      21             : #include <svl/stritem.hxx>
      22             : 
      23             : #include "navcitem.hxx"
      24             : #include "global.hxx"
      25             : #include "navipi.hxx"
      26             : #include "sc.hrc"
      27             : 
      28             : // STATIC DATA -----------------------------------------------------------
      29             : 
      30           0 : ScNavigatorControllerItem::ScNavigatorControllerItem( sal_uInt16          nIdP,
      31             :                                                       ScNavigatorDlg& rDlg,
      32             :                                                       SfxBindings&    rBindings )
      33             :     :   SfxControllerItem   ( nIdP, rBindings ),
      34           0 :         rNavigatorDlg       ( rDlg )
      35             : {
      36           0 : }
      37             : 
      38           0 : void ScNavigatorControllerItem::StateChanged( sal_uInt16 /* nSID */, SfxItemState /* eState */,
      39             :                                                           const SfxPoolItem* pItem )
      40             : {
      41           0 :     switch( GetId() )
      42             :     {
      43             :         case SID_CURRENTCELL:
      44           0 :             if ( pItem )
      45             :             {
      46           0 :                 const SfxStringItem* pCellPosItem = PTR_CAST(SfxStringItem, pItem);
      47             : 
      48             :                 OSL_ENSURE( pCellPosItem, "SfxStringItem expected!" );
      49             : 
      50           0 :                 if ( pCellPosItem )
      51             :                 {
      52           0 :                     OUString  aAddress( pCellPosItem->GetValue() );
      53           0 :                     ScAddress aScAddress;
      54           0 :                     aScAddress.Parse( aAddress );
      55             : 
      56           0 :                     SCCOL nCol = aScAddress.Col()+1;
      57           0 :                     SCROW nRow = aScAddress.Row()+1;
      58             : 
      59           0 :                     rNavigatorDlg.UpdateColumn( &nCol );
      60           0 :                     rNavigatorDlg.UpdateRow   ( &nRow );
      61           0 :                     rNavigatorDlg.CursorPosChanged();
      62             :                 }
      63             :             }
      64           0 :             break;
      65             : 
      66             :         case SID_CURRENTTAB:
      67           0 :             if ( pItem )
      68             :             {
      69           0 :                 const SfxUInt16Item* pTabItem = PTR_CAST(SfxUInt16Item, pItem);
      70             : 
      71             :                 OSL_ENSURE( pTabItem, "SfxUInt16Item expected!" );
      72             : 
      73             :                 //  Tabelle fuer Basic ist 1-basiert
      74           0 :                 if ( pTabItem && pTabItem->GetValue() )
      75             :                 {
      76           0 :                     SCTAB nTab = pTabItem->GetValue() - 1;
      77             : 
      78           0 :                     rNavigatorDlg.UpdateTable( &nTab );
      79           0 :                     rNavigatorDlg.UpdateColumn();
      80           0 :                     rNavigatorDlg.UpdateRow();
      81           0 :                     rNavigatorDlg.CursorPosChanged();
      82             :                 }
      83             :             }
      84           0 :             break;
      85             : 
      86             :         case SID_CURRENTDOC:
      87             : 
      88             :             //  gar nix mehr, wird ueber SFX_HINT_DOCCHANGED erledigt
      89             : 
      90           0 :             break;
      91             : 
      92             :         case SID_SELECT_SCENARIO:
      93           0 :             rNavigatorDlg.aWndScenarios.NotifyState( pItem );
      94           0 :             break;
      95             : 
      96             :         default:
      97           0 :             break;
      98             :     }
      99         228 : }
     100             : 
     101             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10