1*5b190011SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*5b190011SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*5b190011SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*5b190011SAndrew Rist  * distributed with this work for additional information
6*5b190011SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*5b190011SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*5b190011SAndrew Rist  * "License"); you may not use this file except in compliance
9*5b190011SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*5b190011SAndrew Rist  *
11*5b190011SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*5b190011SAndrew Rist  *
13*5b190011SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*5b190011SAndrew Rist  * software distributed under the License is distributed on an
15*5b190011SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5b190011SAndrew Rist  * KIND, either express or implied.  See the License for the
17*5b190011SAndrew Rist  * specific language governing permissions and limitations
18*5b190011SAndrew Rist  * under the License.
19*5b190011SAndrew Rist  *
20*5b190011SAndrew Rist  *************************************************************/
21*5b190011SAndrew Rist 
22*5b190011SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #include "precompiled_sd.hxx"
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #include "SlideSorterModule.hxx"
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include "framework/FrameworkHelper.hxx"
29cdf0e10cSrcweir #include <com/sun/star/drawing/framework/XTabBar.hpp>
30cdf0e10cSrcweir #include <com/sun/star/drawing/framework/TabBarButton.hpp>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include "strings.hrc"
33cdf0e10cSrcweir #include "sdresid.hxx"
34cdf0e10cSrcweir 
35cdf0e10cSrcweir using namespace ::com::sun::star;
36cdf0e10cSrcweir using namespace ::com::sun::star::uno;
37cdf0e10cSrcweir using namespace ::com::sun::star::drawing::framework;
38cdf0e10cSrcweir 
39cdf0e10cSrcweir using ::rtl::OUString;
40cdf0e10cSrcweir using ::sd::framework::FrameworkHelper;
41cdf0e10cSrcweir 
42cdf0e10cSrcweir 
43cdf0e10cSrcweir namespace sd { namespace framework {
44cdf0e10cSrcweir 
45cdf0e10cSrcweir 
46cdf0e10cSrcweir //===== SlideSorterModule ==================================================
47cdf0e10cSrcweir 
SlideSorterModule(const Reference<frame::XController> & rxController,const OUString & rsLeftPaneURL)48cdf0e10cSrcweir SlideSorterModule::SlideSorterModule (
49cdf0e10cSrcweir     const Reference<frame::XController>& rxController,
50cdf0e10cSrcweir     const OUString& rsLeftPaneURL)
51cdf0e10cSrcweir     : ResourceManager(rxController,
52cdf0e10cSrcweir         FrameworkHelper::CreateResourceId(FrameworkHelper::msSlideSorterURL, rsLeftPaneURL)),
53cdf0e10cSrcweir       mxViewTabBarId(FrameworkHelper::CreateResourceId(
54cdf0e10cSrcweir           FrameworkHelper::msViewTabBarURL,
55cdf0e10cSrcweir           FrameworkHelper::msCenterPaneURL)),
56cdf0e10cSrcweir       mxControllerManager(rxController,UNO_QUERY)
57cdf0e10cSrcweir {
58cdf0e10cSrcweir     if (mxConfigurationController.is())
59cdf0e10cSrcweir     {
60cdf0e10cSrcweir         UpdateViewTabBar(NULL);
61cdf0e10cSrcweir 
62cdf0e10cSrcweir         AddActiveMainView(FrameworkHelper::msImpressViewURL);
63cdf0e10cSrcweir         AddActiveMainView(FrameworkHelper::msOutlineViewURL);
64cdf0e10cSrcweir         AddActiveMainView(FrameworkHelper::msNotesViewURL);
65cdf0e10cSrcweir 
66cdf0e10cSrcweir         AddActiveMainView(FrameworkHelper::msDrawViewURL);
67cdf0e10cSrcweir 
68cdf0e10cSrcweir         mxConfigurationController->addConfigurationChangeListener(
69cdf0e10cSrcweir             this,
70cdf0e10cSrcweir             FrameworkHelper::msResourceActivationEvent,
71cdf0e10cSrcweir             Any());
72cdf0e10cSrcweir     }
73cdf0e10cSrcweir }
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 
77cdf0e10cSrcweir 
~SlideSorterModule(void)78cdf0e10cSrcweir SlideSorterModule::~SlideSorterModule (void)
79cdf0e10cSrcweir {
80cdf0e10cSrcweir }
81cdf0e10cSrcweir 
82cdf0e10cSrcweir 
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 
notifyConfigurationChange(const ConfigurationChangeEvent & rEvent)85cdf0e10cSrcweir void SAL_CALL SlideSorterModule::notifyConfigurationChange (
86cdf0e10cSrcweir     const ConfigurationChangeEvent& rEvent)
87cdf0e10cSrcweir     throw (RuntimeException)
88cdf0e10cSrcweir {
89cdf0e10cSrcweir     if (rEvent.Type.equals(FrameworkHelper::msResourceActivationEvent))
90cdf0e10cSrcweir     {
91cdf0e10cSrcweir         if (rEvent.ResourceId->compareTo(mxViewTabBarId) == 0)
92cdf0e10cSrcweir         {
93cdf0e10cSrcweir             // Update the view tab bar because the view tab bar has just
94cdf0e10cSrcweir             // become active.
95cdf0e10cSrcweir             UpdateViewTabBar(Reference<XTabBar>(rEvent.ResourceObject,UNO_QUERY));
96cdf0e10cSrcweir         }
97cdf0e10cSrcweir         else if (rEvent.ResourceId->getResourceTypePrefix().equals(
98cdf0e10cSrcweir             FrameworkHelper::msViewURLPrefix)
99cdf0e10cSrcweir             && rEvent.ResourceId->isBoundTo(
100cdf0e10cSrcweir                 FrameworkHelper::CreateResourceId(FrameworkHelper::msCenterPaneURL),
101cdf0e10cSrcweir                 AnchorBindingMode_DIRECT))
102cdf0e10cSrcweir         {
103cdf0e10cSrcweir             // Update the view tab bar because the view in the center pane
104cdf0e10cSrcweir             // has changed.
105cdf0e10cSrcweir             UpdateViewTabBar(NULL);
106cdf0e10cSrcweir         }
107cdf0e10cSrcweir     }
108cdf0e10cSrcweir     else
109cdf0e10cSrcweir     {
110cdf0e10cSrcweir         ResourceManager::notifyConfigurationChange(rEvent);
111cdf0e10cSrcweir     }
112cdf0e10cSrcweir }
113cdf0e10cSrcweir 
114cdf0e10cSrcweir 
115cdf0e10cSrcweir 
116cdf0e10cSrcweir 
UpdateViewTabBar(const Reference<XTabBar> & rxTabBar)117cdf0e10cSrcweir void SlideSorterModule::UpdateViewTabBar (const Reference<XTabBar>& rxTabBar)
118cdf0e10cSrcweir {
119cdf0e10cSrcweir     if ( ! mxControllerManager.is())
120cdf0e10cSrcweir         return;
121cdf0e10cSrcweir 
122cdf0e10cSrcweir     Reference<XTabBar> xBar (rxTabBar);
123cdf0e10cSrcweir     if ( ! xBar.is())
124cdf0e10cSrcweir     {
125cdf0e10cSrcweir         Reference<XConfigurationController> xCC (
126cdf0e10cSrcweir             mxControllerManager->getConfigurationController());
127cdf0e10cSrcweir         if (xCC.is())
128cdf0e10cSrcweir             xBar = Reference<XTabBar>(xCC->getResource(mxViewTabBarId), UNO_QUERY);
129cdf0e10cSrcweir     }
130cdf0e10cSrcweir 
131cdf0e10cSrcweir     if (xBar.is())
132cdf0e10cSrcweir     {
133cdf0e10cSrcweir         TabBarButton aButtonA;
134cdf0e10cSrcweir         aButtonA.ResourceId = FrameworkHelper::CreateResourceId(
135cdf0e10cSrcweir             FrameworkHelper::msSlideSorterURL,
136cdf0e10cSrcweir             FrameworkHelper::msCenterPaneURL);
137cdf0e10cSrcweir         aButtonA.ButtonLabel = String(SdResId(STR_SLIDE_MODE));
138cdf0e10cSrcweir 
139cdf0e10cSrcweir         TabBarButton aButtonB;
140cdf0e10cSrcweir         aButtonB.ResourceId = FrameworkHelper::CreateResourceId(
141cdf0e10cSrcweir             FrameworkHelper::msHandoutViewURL,
142cdf0e10cSrcweir             FrameworkHelper::msCenterPaneURL);
143cdf0e10cSrcweir 
144cdf0e10cSrcweir         if ( ! xBar->hasTabBarButton(aButtonA))
145cdf0e10cSrcweir             xBar->addTabBarButtonAfter(aButtonA, aButtonB);
146cdf0e10cSrcweir     }
147cdf0e10cSrcweir }
148cdf0e10cSrcweir 
149cdf0e10cSrcweir 
150cdf0e10cSrcweir 
151cdf0e10cSrcweir } } // end of namespace sd::framework
152