Improvements to open office presentation backend and general unipresent interface
[kworship.git] / unipresent / ooimpress / UpOoimpPresentation.h
blobf96af6ea1fd03ccfafdd5ffeaff12b69bb841738
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
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. *
9 * *
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. *
14 * *
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_
22 /**
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>
33 #include <QUrl>
35 using namespace com::sun::star;
37 /// OpenOffice.org Impress presentation.
38 class UpOoimpPresentation : public UpPresentation
40 Q_OBJECT
41 public:
44 * Constructors + destructor
47 /// Primary constructor.
48 UpOoimpPresentation(uno::XInterface* interface, QObject* parent = 0);
50 /// Destructor.
51 virtual ~UpOoimpPresentation();
54 * Main interface
57 virtual void close();
60 * Slides
63 virtual int numSlides();
65 virtual UpSlide* getSlide(int);
67 private:
70 * Variables
73 /// An interface to the document.
74 uno::Reference<uno::XInterface> m_interface;
76 /// The file's URL.
77 QUrl m_url;
80 #endif // _UpOoimpPresentation_h_