1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 3 of the License, or *
8 * (at your option) any later version. *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
19 #ifndef _UpOoimpPresentation_h_
20 #define _UpOoimpPresentation_h_
23 * @file UpOoimpPresentation.h
24 * @brief OpenOffice.org Impress presentation.
25 * @author James Hogan <james@albanarts.com>
28 #include "UpPresentation.h"
30 #include <com/sun/star/uno/Reference.h>
31 #include <com/sun/star/uno/XInterface.hpp>
35 using namespace com::sun::star
;
37 /// OpenOffice.org Impress presentation.
38 class UpOoimpPresentation
: public UpPresentation
44 * Constructors + destructor
47 /// Primary constructor.
48 UpOoimpPresentation(uno::XInterface
* interface
, QObject
* parent
= 0);
51 virtual ~UpOoimpPresentation();
63 virtual int numSlides();
65 virtual UpSlide
* getSlide(int);
73 /// An interface to the document.
74 uno::Reference
<uno::XInterface
> m_interface
;
80 #endif // _UpOoimpPresentation_h_