/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: cusshow.hxx,v $ * * $Revision: 1.5 $ * * last change: $Author: rt $ $Date: 2005-09-09 02:53:38 $ * * 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 #endif #ifndef _STREAM_HXX //autogen #include #endif #ifndef _STRING_HXX //autogen #include #endif #ifndef _CPPUHELPER_WEAKREF_HXX_ #include #endif #ifndef INCLUDED_SDDLLAPI_H #include "sddllapi.h" #endif class SdDrawDocument; /************************************************************************* |* |* 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; } //BFS02 friend SvStream& operator << (SvStream& rOut, const SdCustomShow& rCustomShow); //BFS02 friend SvStream& operator >> (SvStream& rIn, SdCustomShow& rCustomShow); ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > getUnoCustomShow(); }; #endif // _SD_CUSSHOW_HXX