483f03f4ad
2005/11/29 14:04:46 af 1.5.74.1: #i57552# Changed base class to DrawSubController.
62 lines
2 KiB
C++
62 lines
2 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: SdUnoPresView.hxx,v $
|
|
*
|
|
* $Revision: 1.6 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2006-03-21 17:26:14 $
|
|
*
|
|
* 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_UNO_PRES_VIEW_HXX
|
|
#define SD_UNO_PRES_VIEW_HXX
|
|
|
|
#include "SdUnoDrawView.hxx"
|
|
|
|
namespace sd {
|
|
|
|
/** The sub controller for the slide show (or preview?) It formerly reduced
|
|
the property set inherited from SdUnoDrawView to just 'CurrentPage'.
|
|
Now that we have to always support the whole set, we can as well try to
|
|
do that as best as we can. Therefore the inherited functionality is
|
|
provided as is.
|
|
*/
|
|
class SdUnoPresView
|
|
: public SdUnoDrawView
|
|
{
|
|
public:
|
|
SdUnoPresView (
|
|
DrawController& rController,
|
|
DrawViewShell& rViewShell,
|
|
View& rView) throw();
|
|
virtual ~SdUnoPresView (void) throw();
|
|
};
|
|
|
|
} // end of namespace sd
|
|
|
|
#endif
|