9826f619e4
2007/01/05 15:05:33 cl 1.6.32.1: #i43124# fixed replacing of slides in custom shows
101 lines
3 KiB
C++
101 lines
3 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: cusshow.hxx,v $
|
|
*
|
|
* $Revision: 1.7 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2007-01-23 08:53:08 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _SD_CUSSHOW_HXX
|
|
#define _SD_CUSSHOW_HXX
|
|
|
|
#ifndef _LIST_HXX //autogen
|
|
#include <tools/list.hxx>
|
|
#endif
|
|
|
|
#ifndef _STREAM_HXX //autogen
|
|
#include <tools/stream.hxx>
|
|
#endif
|
|
|
|
#ifndef _STRING_HXX //autogen
|
|
#include <tools/string.hxx>
|
|
#endif
|
|
|
|
#ifndef _CPPUHELPER_WEAKREF_HXX_
|
|
#include <cppuhelper/weakref.hxx>
|
|
#endif
|
|
|
|
#ifndef INCLUDED_SDDLLAPI_H
|
|
#include "sddllapi.h"
|
|
#endif
|
|
|
|
class SdDrawDocument;
|
|
class SdPage;
|
|
|
|
/*************************************************************************
|
|
|*
|
|
|* CustomShow
|
|
|*
|
|
\************************************************************************/
|
|
class SD_DLLPUBLIC SdCustomShow : public List
|
|
{
|
|
private:
|
|
String aName;
|
|
SdDrawDocument* pDoc;
|
|
|
|
// this is a weak reference to a possible living api wrapper for this custom show
|
|
::com::sun::star::uno::WeakReference< ::com::sun::star::uno::XInterface > mxUnoCustomShow;
|
|
|
|
// forbidden and not implemented
|
|
SdCustomShow();
|
|
|
|
public:
|
|
// single argument ctors shall be explicit
|
|
explicit SdCustomShow(SdDrawDocument* pDrawDoc);
|
|
SdCustomShow(SdDrawDocument* pDrawDoc, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xShow );
|
|
|
|
virtual ~SdCustomShow();
|
|
|
|
// @@@ copy ctor, but no copy assignment? @@@
|
|
SdCustomShow( const SdCustomShow& rShow );
|
|
|
|
void SetName(const String& rName) { aName = rName; }
|
|
String GetName() const { return aName; }
|
|
|
|
SdDrawDocument* GetDoc() const { return pDoc; }
|
|
|
|
void ReplacePage( const SdPage* pOldPage, const SdPage* pNewPage );
|
|
void RemovePage( const SdPage* pPage );
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > getUnoCustomShow();
|
|
};
|
|
|
|
#endif // _SD_CUSSHOW_HXX
|
|
|