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 2 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, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
21 * @file UpKpr1Slide.cpp
22 * @brief KPresenter 1 presentation slide.
23 * @author James Hogan <james@albanarts.com>
26 #include "UpKpr1Slide.h"
27 #include "UpKpr1Presentation.h"
29 #include <QTemporaryFile>
32 * Constructors + destructor
35 /// Primary constructor.
36 UpKpr1Slide::UpKpr1Slide(UpKpr1Presentation
* presentation
, const UpKpr1SlideDcop
& dcop
, int index
)
37 : UpSlide(presentation
)
38 , m_presentation(presentation
)
48 UpKpr1Slide::~UpKpr1Slide()
56 QString
UpKpr1Slide::title()
60 m_title
= m_dcop
.title();
65 QString
UpKpr1Slide::outline()
67 if (m_outline
.isNull())
69 m_outline
= m_dcop
.textObjectsContents().join("\n");
74 QPixmap
UpKpr1Slide::preview()
76 if (m_preview
.isNull())
78 UpKpr1ViewDcop view
= m_presentation
->dcopView();
79 QTemporaryFile previewFile
;
84 page
.setNum(m_index
+1);
85 view
.eval(&error
, QStringList() << "exportPage(int,int,int,QString,QString,int,int)"
86 << page
// Page number
89 << previewFile
.fileName() // Filename
97 m_preview
.load(previewFile
.fileName());
98 m_preview
= m_preview
.scaledToHeight(125, Qt::SmoothTransformation
);
104 #include "UpKpr1Slide.moc"