tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / navipi / navcitem.cxx
blob871fbd445e9bad6ab802e217310d8be97010d32c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <svl/intitem.hxx>
21 #include <svl/stritem.hxx>
22 #include <osl/diagnose.h>
24 #include <navcitem.hxx>
25 #include <navipi.hxx>
26 #include <viewdata.hxx>
27 #include <sc.hrc>
29 ScNavigatorControllerItem::ScNavigatorControllerItem( sal_uInt16 nIdP,
30 ScNavigatorDlg& rDlg,
31 SfxBindings& rBindings )
32 : SfxControllerItem ( nIdP, rBindings ),
33 rNavigatorDlg ( rDlg )
37 void ScNavigatorControllerItem::StateChangedAtToolBoxControl( sal_uInt16 /* nSID */, SfxItemState /* eState */,
38 const SfxPoolItem* pItem )
40 switch( GetId() )
42 case SID_CURRENTCELL:
43 if ( pItem )
45 ScViewData* pViewData = rNavigatorDlg.GetViewData();
46 const SfxStringItem* pCellPosItem = dynamic_cast<const SfxStringItem*>( pItem );
48 OSL_ENSURE( pCellPosItem, "SfxStringItem expected!" );
50 if (pCellPosItem && pViewData)
52 const OUString& aAddress( pCellPosItem->GetValue() );
53 ScAddress aScAddress;
54 aScAddress.Parse(aAddress, pViewData->GetDocument());
56 SCCOL nCol = aScAddress.Col()+1;
57 SCROW nRow = aScAddress.Row()+1;
59 rNavigatorDlg.UpdateColumn( &nCol );
60 rNavigatorDlg.UpdateRow ( &nRow );
63 break;
65 case SID_CURRENTTAB:
66 if ( pItem )
68 const SfxUInt16Item* pTabItem = dynamic_cast< const SfxUInt16Item *>( pItem );
70 OSL_ENSURE( pTabItem, "SfxUInt16Item expected!" );
72 // table for Basic is 1-based
73 if ( pTabItem && pTabItem->GetValue() )
75 SCTAB nTab = pTabItem->GetValue() - 1;
77 rNavigatorDlg.UpdateTable( &nTab );
78 rNavigatorDlg.UpdateColumn();
79 rNavigatorDlg.UpdateRow();
82 break;
84 case SID_CURRENTDOC:
86 // nothing is done via SfxHintId::DocChanged
88 break;
90 case SID_SELECT_SCENARIO:
91 rNavigatorDlg.m_xWndScenarios->NotifyState(pItem);
92 break;
94 default:
95 break;
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */