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 :
31 0 : ScNavigatorControllerItem::ScNavigatorControllerItem( sal_uInt16 nIdP,
32 : ScNavigatorDlg& rDlg,
33 : SfxBindings& rBindings )
34 : : SfxControllerItem ( nIdP, rBindings ),
35 0 : rNavigatorDlg ( rDlg )
36 : {
37 0 : }
38 :
39 0 : void ScNavigatorControllerItem::StateChanged( sal_uInt16 /* nSID */, SfxItemState /* eState */,
40 : const SfxPoolItem* pItem )
41 : {
42 0 : switch( GetId() )
43 : {
44 : case SID_CURRENTCELL:
45 0 : if ( pItem )
46 : {
47 0 : const SfxStringItem* pCellPosItem = PTR_CAST(SfxStringItem, pItem);
48 :
49 : OSL_ENSURE( pCellPosItem, "SfxStringItem expected!" );
50 :
51 0 : if ( pCellPosItem )
52 : {
53 0 : OUString aAddress( pCellPosItem->GetValue() );
54 0 : ScAddress aScAddress;
55 0 : aScAddress.Parse( aAddress );
56 :
57 0 : SCCOL nCol = aScAddress.Col()+1;
58 0 : SCROW nRow = aScAddress.Row()+1;
59 :
60 0 : rNavigatorDlg.UpdateColumn( &nCol );
61 0 : rNavigatorDlg.UpdateRow ( &nRow );
62 0 : rNavigatorDlg.CursorPosChanged();
63 : }
64 : }
65 0 : break;
66 :
67 : case SID_CURRENTTAB:
68 0 : if ( pItem )
69 : {
70 0 : const SfxUInt16Item* pTabItem = PTR_CAST(SfxUInt16Item, pItem);
71 :
72 : OSL_ENSURE( pTabItem, "SfxUInt16Item expected!" );
73 :
74 : // Tabelle fuer Basic ist 1-basiert
75 0 : if ( pTabItem && pTabItem->GetValue() )
76 : {
77 0 : SCTAB nTab = pTabItem->GetValue() - 1;
78 :
79 0 : rNavigatorDlg.UpdateTable( &nTab );
80 0 : rNavigatorDlg.UpdateColumn();
81 0 : rNavigatorDlg.UpdateRow();
82 0 : rNavigatorDlg.CursorPosChanged();
83 : }
84 : }
85 0 : break;
86 :
87 : case SID_CURRENTDOC:
88 :
89 : // gar nix mehr, wird ueber SFX_HINT_DOCCHANGED erledigt
90 :
91 0 : break;
92 :
93 :
94 : case SID_SELECT_SCENARIO:
95 0 : rNavigatorDlg.aWndScenarios.NotifyState( pItem );
96 0 : break;
97 :
98 : default:
99 0 : break;
100 : }
101 0 : }
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|