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 // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_sd.hxx"
26cdf0e10cSrcweir
27cdf0e10cSrcweir
28cdf0e10cSrcweir #include <com/sun/star/lang/XComponent.hpp>
29cdf0e10cSrcweir
30cdf0e10cSrcweir #include "sdiocmpt.hxx"
31cdf0e10cSrcweir #include "cusshow.hxx"
32cdf0e10cSrcweir #include "sdpage.hxx"
33cdf0e10cSrcweir #include "drawdoc.hxx"
34cdf0e10cSrcweir
35cdf0e10cSrcweir // #90477#
36cdf0e10cSrcweir #include <tools/tenccvt.hxx>
37cdf0e10cSrcweir
38cdf0e10cSrcweir using namespace ::com::sun::star;
39cdf0e10cSrcweir
40cdf0e10cSrcweir /*************************************************************************
41cdf0e10cSrcweir |*
42cdf0e10cSrcweir |* Ctor
43cdf0e10cSrcweir |*
44cdf0e10cSrcweir \************************************************************************/
SdCustomShow(SdDrawDocument * pDrawDoc)45cdf0e10cSrcweir SdCustomShow::SdCustomShow(SdDrawDocument* pDrawDoc)
46cdf0e10cSrcweir : List(),
47cdf0e10cSrcweir pDoc(pDrawDoc)
48cdf0e10cSrcweir {
49cdf0e10cSrcweir }
50cdf0e10cSrcweir
51cdf0e10cSrcweir /*************************************************************************
52cdf0e10cSrcweir |*
53cdf0e10cSrcweir |* Copy-Ctor
54cdf0e10cSrcweir |*
55cdf0e10cSrcweir \************************************************************************/
SdCustomShow(const SdCustomShow & rShow)56cdf0e10cSrcweir SdCustomShow::SdCustomShow( const SdCustomShow& rShow )
57cdf0e10cSrcweir : List( rShow )
58cdf0e10cSrcweir {
59cdf0e10cSrcweir aName = rShow.GetName();
60cdf0e10cSrcweir pDoc = rShow.GetDoc();
61cdf0e10cSrcweir }
62cdf0e10cSrcweir
SdCustomShow(SdDrawDocument * pDrawDoc,::com::sun::star::uno::Reference<::com::sun::star::uno::XInterface> xShow)63cdf0e10cSrcweir SdCustomShow::SdCustomShow(SdDrawDocument* pDrawDoc, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xShow )
64cdf0e10cSrcweir : List(),
65cdf0e10cSrcweir pDoc(pDrawDoc),
66cdf0e10cSrcweir mxUnoCustomShow( xShow )
67cdf0e10cSrcweir {
68cdf0e10cSrcweir }
69cdf0e10cSrcweir
70cdf0e10cSrcweir /*************************************************************************
71cdf0e10cSrcweir |*
72cdf0e10cSrcweir |* Dtor
73cdf0e10cSrcweir |*
74cdf0e10cSrcweir \************************************************************************/
~SdCustomShow()75cdf0e10cSrcweir SdCustomShow::~SdCustomShow()
76cdf0e10cSrcweir {
77cdf0e10cSrcweir uno::Reference< uno::XInterface > xShow( mxUnoCustomShow );
78cdf0e10cSrcweir uno::Reference< lang::XComponent > xComponent( xShow, uno::UNO_QUERY );
79cdf0e10cSrcweir if( xComponent.is() )
80cdf0e10cSrcweir xComponent->dispose();
81cdf0e10cSrcweir }
82cdf0e10cSrcweir
83cdf0e10cSrcweir extern uno::Reference< uno::XInterface > createUnoCustomShow( SdCustomShow* pShow );
84cdf0e10cSrcweir
getUnoCustomShow()85cdf0e10cSrcweir uno::Reference< uno::XInterface > SdCustomShow::getUnoCustomShow()
86cdf0e10cSrcweir {
87cdf0e10cSrcweir // try weak reference first
88cdf0e10cSrcweir uno::Reference< uno::XInterface > xShow( mxUnoCustomShow );
89cdf0e10cSrcweir
90cdf0e10cSrcweir if( !xShow.is() )
91cdf0e10cSrcweir {
92cdf0e10cSrcweir xShow = createUnoCustomShow( this );
93cdf0e10cSrcweir }
94cdf0e10cSrcweir
95cdf0e10cSrcweir return xShow;
96cdf0e10cSrcweir }
97cdf0e10cSrcweir
ReplacePage(const SdPage * pOldPage,const SdPage * pNewPage)98cdf0e10cSrcweir void SdCustomShow::ReplacePage( const SdPage* pOldPage, const SdPage* pNewPage )
99cdf0e10cSrcweir {
100cdf0e10cSrcweir if( !pNewPage )
101cdf0e10cSrcweir {
102cdf0e10cSrcweir RemovePage( pOldPage );
103cdf0e10cSrcweir }
104cdf0e10cSrcweir else
105cdf0e10cSrcweir {
106cdf0e10cSrcweir sal_uLong nPos;
107cdf0e10cSrcweir while( (nPos = GetPos( (void*)pOldPage )) != CONTAINER_ENTRY_NOTFOUND )
108cdf0e10cSrcweir {
109cdf0e10cSrcweir Replace( (void*)pNewPage, nPos );
110cdf0e10cSrcweir }
111cdf0e10cSrcweir }
112cdf0e10cSrcweir }
113cdf0e10cSrcweir
RemovePage(const SdPage * pPage)114cdf0e10cSrcweir void SdCustomShow::RemovePage( const SdPage* pPage )
115cdf0e10cSrcweir {
116cdf0e10cSrcweir sal_uLong nPos;
117cdf0e10cSrcweir while( (nPos = GetPos( (void*)pPage )) != CONTAINER_ENTRY_NOTFOUND )
118cdf0e10cSrcweir {
119cdf0e10cSrcweir Remove( nPos );
120cdf0e10cSrcweir }
121cdf0e10cSrcweir }
122cdf0e10cSrcweir
SetName(const String & rName)123cdf0e10cSrcweir void SdCustomShow::SetName(const String& rName)
124cdf0e10cSrcweir {
125cdf0e10cSrcweir aName = rName;
126cdf0e10cSrcweir }
127cdf0e10cSrcweir
GetName() const128cdf0e10cSrcweir String SdCustomShow::GetName() const
129cdf0e10cSrcweir {
130cdf0e10cSrcweir return aName;
131cdf0e10cSrcweir }
132cdf0e10cSrcweir
133