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 : }
62 : }
63 0 : break;
64 :
65 : case SID_CURRENTTAB:
66 0 : if ( pItem )
67 : {
68 0 : const SfxUInt16Item* pTabItem = PTR_CAST(SfxUInt16Item, pItem);
69 :
70 : OSL_ENSURE( pTabItem, "SfxUInt16Item expected!" );
71 :
72 : // Tabelle fuer Basic ist 1-basiert
73 0 : if ( pTabItem && pTabItem->GetValue() )
74 : {
75 0 : SCTAB nTab = pTabItem->GetValue() - 1;
76 :
77 0 : rNavigatorDlg.UpdateTable( &nTab );
78 0 : rNavigatorDlg.UpdateColumn();
79 0 : rNavigatorDlg.UpdateRow();
80 : }
81 : }
82 0 : break;
83 :
84 : case SID_CURRENTDOC:
85 :
86 : // gar nix mehr, wird ueber SFX_HINT_DOCCHANGED erledigt
87 :
88 0 : break;
89 :
90 : case SID_SELECT_SCENARIO:
91 0 : rNavigatorDlg.aWndScenarios->NotifyState( pItem );
92 0 : break;
93 :
94 : default:
95 0 : break;
96 : }
97 156 : }
98 :
99 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|