xref: /AOO41X/main/sd/source/ui/sidebar/CurrentMasterPagesSelector.hxx (revision ca62e2c2083b5d0995f1245bad6c2edfb455fbec)
1*02c50d82SAndre Fischer /**************************************************************
2*02c50d82SAndre Fischer  *
3*02c50d82SAndre Fischer  * Licensed to the Apache Software Foundation (ASF) under one
4*02c50d82SAndre Fischer  * or more contributor license agreements.  See the NOTICE file
5*02c50d82SAndre Fischer  * distributed with this work for additional information
6*02c50d82SAndre Fischer  * regarding copyright ownership.  The ASF licenses this file
7*02c50d82SAndre Fischer  * to you under the Apache License, Version 2.0 (the
8*02c50d82SAndre Fischer  * "License"); you may not use this file except in compliance
9*02c50d82SAndre Fischer  * with the License.  You may obtain a copy of the License at
10*02c50d82SAndre Fischer  *
11*02c50d82SAndre Fischer  *   http://www.apache.org/licenses/LICENSE-2.0
12*02c50d82SAndre Fischer  *
13*02c50d82SAndre Fischer  * Unless required by applicable law or agreed to in writing,
14*02c50d82SAndre Fischer  * software distributed under the License is distributed on an
15*02c50d82SAndre Fischer  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*02c50d82SAndre Fischer  * KIND, either express or implied.  See the License for the
17*02c50d82SAndre Fischer  * specific language governing permissions and limitations
18*02c50d82SAndre Fischer  * under the License.
19*02c50d82SAndre Fischer  *
20*02c50d82SAndre Fischer  *************************************************************/
21*02c50d82SAndre Fischer 
22*02c50d82SAndre Fischer #ifndef SD_SIDEBAR_PANELS_CURRENT_MASTER_PAGES_SELECTOR_HXX
23*02c50d82SAndre Fischer #define SD_SIDEBAR_PANELS_CURRENT_MASTER_PAGES_SELECTOR_HXX
24*02c50d82SAndre Fischer 
25*02c50d82SAndre Fischer #include "MasterPagesSelector.hxx"
26*02c50d82SAndre Fischer #include <com/sun/star/lang/XComponent.hpp>
27*02c50d82SAndre Fischer 
28*02c50d82SAndre Fischer 
29*02c50d82SAndre Fischer namespace css = ::com::sun::star;
30*02c50d82SAndre Fischer namespace cssu = ::com::sun::star::uno;
31*02c50d82SAndre Fischer 
32*02c50d82SAndre Fischer 
33*02c50d82SAndre Fischer namespace sd { namespace tools { class EventMultiplexerEvent; } }
34*02c50d82SAndre Fischer 
35*02c50d82SAndre Fischer 
36*02c50d82SAndre Fischer namespace sd { namespace sidebar {
37*02c50d82SAndre Fischer 
38*02c50d82SAndre Fischer 
39*02c50d82SAndre Fischer /** Show the master pages currently used by a SdDrawDocument.
40*02c50d82SAndre Fischer */
41*02c50d82SAndre Fischer class CurrentMasterPagesSelector
42*02c50d82SAndre Fischer     : public MasterPagesSelector,
43*02c50d82SAndre Fischer       public SfxListener
44*02c50d82SAndre Fischer {
45*02c50d82SAndre Fischer public:
46*02c50d82SAndre Fischer     static MasterPagesSelector* Create (
47*02c50d82SAndre Fischer         ::Window* pParent,
48*02c50d82SAndre Fischer         ViewShellBase& rViewShellBase,
49*02c50d82SAndre Fischer         const cssu::Reference<css::ui::XSidebar>& rxSidebar);
50*02c50d82SAndre Fischer 
51*02c50d82SAndre Fischer     /** Set the selection so that the master page is selected that is
52*02c50d82SAndre Fischer         used by the currently selected page of the document in the
53*02c50d82SAndre Fischer         center pane.
54*02c50d82SAndre Fischer     */
55*02c50d82SAndre Fischer     virtual void UpdateSelection (void);
56*02c50d82SAndre Fischer 
57*02c50d82SAndre Fischer     /** Copy all master pages that are to be shown into the given list.
58*02c50d82SAndre Fischer     */
59*02c50d82SAndre Fischer     virtual void Fill (ItemList& rItemList);
60*02c50d82SAndre Fischer 
61*02c50d82SAndre Fischer 	using MasterPagesSelector::Fill;
62*02c50d82SAndre Fischer 
63*02c50d82SAndre Fischer protected:
64*02c50d82SAndre Fischer     virtual ResId GetContextMenuResId (void) const;
65*02c50d82SAndre Fischer 
66*02c50d82SAndre Fischer     virtual void ProcessPopupMenu (Menu& rMenu);
67*02c50d82SAndre Fischer     virtual void ExecuteCommand (const sal_Int32 nCommandId);
68*02c50d82SAndre Fischer 
69*02c50d82SAndre Fischer private:
70*02c50d82SAndre Fischer     cssu::Reference<css::lang::XComponent> mxListener;
71*02c50d82SAndre Fischer 
72*02c50d82SAndre Fischer     CurrentMasterPagesSelector (
73*02c50d82SAndre Fischer         ::Window* pParent,
74*02c50d82SAndre Fischer         SdDrawDocument& rDocument,
75*02c50d82SAndre Fischer         ViewShellBase& rBase,
76*02c50d82SAndre Fischer         const ::boost::shared_ptr<MasterPageContainer>& rpContainer,
77*02c50d82SAndre Fischer         const cssu::Reference<css::ui::XSidebar>& rxSidebar);
78*02c50d82SAndre Fischer     virtual ~CurrentMasterPagesSelector (void);
79*02c50d82SAndre Fischer 
80*02c50d82SAndre Fischer     virtual void LateInit (void);
81*02c50d82SAndre Fischer 
82*02c50d82SAndre Fischer     DECL_LINK(EventMultiplexerListener,sd::tools::EventMultiplexerEvent*);
83*02c50d82SAndre Fischer     void Notify (SfxBroadcaster&, const SfxHint& rHint);
84*02c50d82SAndre Fischer };
85*02c50d82SAndre Fischer 
86*02c50d82SAndre Fischer } } // end of namespace sd::sidebar
87*02c50d82SAndre Fischer 
88*02c50d82SAndre Fischer #endif
89