1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/*
* UBPowerPointApplication.cpp
*
* Created on: Dec 4, 2008
* Author: Luc
*/
#include "UBPowerPointApplication_win.h"
#include "frameworks/UBFileSystemUtils.h"
#include "core/UBApplication.h"
#include "core/UBDocumentManager.h"
#include "core/UBPersistenceManager.h"
#include "UBImportVirtualPrinter.h"
#include "msppt.h"
#include "mso.h"
#include "windows.h"
UBPowerPointApplication::UBPowerPointApplication(QObject* parent)
: UBImportAdaptor(parent)
, mInit(false)
, mHasException(false)
, mSupportPpt(false)
, mSupportPptX(false)
{
// NOOP
}
UBPowerPointApplication::~UBPowerPointApplication()
{
// NOOP
}
void UBPowerPointApplication::init()
{
PowerPoint::Application ppt;
qDebug() << "PPT version :" << ppt.Version().toFloat();
mSupportPpt = !ppt.isNull();
mSupportPptX = ppt.Version().toFloat() >= 12;
mInit = true;
}
bool UBPowerPointApplication::isPowerPointInstalled()
{
if (!mInit)
{
init();
}
return mSupportPpt;
}
bool UBPowerPointApplication::supportPptx()
{
if (!mInit)
{
init();
}
return mSupportPptX;
}
bool UBPowerPointApplication::generatePdfFromPptFile(const QString& pptFile, const QString& outputDir)
{
Q_UNUSED(pptFile);
Q_UNUSED(outputDir);
return false;
}
bool UBPowerPointApplication::generateImagesFromPptFile(const QString& pptFile, const QString& outputDir, const QString& imageFormat, const QSize& imageSize)
{
mHasException = false;
PowerPoint::Application ppt;
connect(&ppt, SIGNAL(exception ( int , const QString & , const QString & , const QString & ))
, this, SLOT(exception ( int , const QString & , const QString & , const QString & )));
if (ppt.isNull())
return false;
ppt.Activate();
ppt.SetWindowState(PowerPoint::ppWindowMinimized);
UBApplication::processEvents();
int previouslyOpenPresentations = ppt.Presentations()->Count();
PowerPoint::Presentation *presentation =
ppt.Presentations()->Open(QDir::toNativeSeparators(pptFile));
int currentOpenPresentations = ppt.Presentations()->Count();
if(!presentation)
return false;
if (ppt.Version().toFloat() >= 12) // PPT 2007 is broken with high res exports : https://trac.assembla.com/uniboard/ticket/297#comment:16
{
presentation->Export(QDir::toNativeSeparators(outputDir), imageFormat);
}
else
{
presentation->Export(QDir::toNativeSeparators(outputDir), imageFormat, imageSize.width(), imageSize.height());
}
if(mHasException)
return false;
if (currentOpenPresentations != previouslyOpenPresentations)
presentation->Close();
if (ppt.Presentations()->Count() == 0)
ppt.Quit();
return true;
}
QStringList UBPowerPointApplication::supportedExtentions()
{
QStringList result;
if (UBPowerPointApplication::isPowerPointInstalled())
{
result << QStringList("ppt") << "pps";
if (UBPowerPointApplication::supportPptx())
{
result << "pptx" << "pptm" << "ppsx" << "ppsm";
}
}
return result;
}
QString UBPowerPointApplication::importFileFilter()
{
if (UBPowerPointApplication::isPowerPointInstalled())
{
if (UBPowerPointApplication::supportPptx())
{
return "PowerPoint (*.ppt *.pptx *.pptm *.pps *.ppsx *.ppsm)";
}
else
{
return "PowerPoint (*.ppt *.pps)";
}
}
else
{
return "";
}
}
UBDocumentProxy* UBPowerPointApplication::importFile(const QFile& pFile, const QString& pGroup)
{
UBDocumentProxy* document = 0;
// print by changing default printer and use shell execute to print
LPTSTR wDefaultPrinterName = new TCHAR[255];
LPTSTR virtualPrinter = new TCHAR[255];
int i = QString("Uniboard").toWCharArray(virtualPrinter); // TODO UB 4.x make me configurable ....
virtualPrinter[i] = 0;
DWORD bufferSize = 1000;
GetDefaultPrinter(wDefaultPrinterName, &bufferSize);
UBImportVirtualPrinter::sOriginalDefaultPrintername = QString::fromWCharArray(wDefaultPrinterName);
if (!SetDefaultPrinter(virtualPrinter))
{
QMessageBox msgBox(0);
msgBox.setText(tr("Uniboard printer is not installed. Import will be done in jpg format."));
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.setDefaultButton(QMessageBox::Ok);
msgBox.exec();
QString tempLocation = UBFileSystemUtils::createTempDir();
QDir tempDir(tempLocation);
bool pptSuccess = generateImagesFromPptFile(pFile.fileName(), tempLocation, "jpg", QSize(3000, 2250));
if (pptSuccess)
{
document = UBDocumentManager::documentManager()->importDir(tempDir, pGroup);
if (document)
{
UBFileSystemUtils::deleteDir(tempLocation);
}
}
}
else
{
document = UBPersistenceManager::persistenceManager()->createDocument(pGroup);
QFileInfo sourceFileInfo(pFile);
document->setMetaData(UBSettings::documentName, sourceFileInfo.baseName());
UBPersistenceManager::persistenceManager()->persistDocumentMetadata(document);
UBImportVirtualPrinter::pendingDocument = document;
int result = (int)ShellExecute(NULL, QString("print").utf16() , pFile.fileName().utf16(), NULL, NULL, SW_HIDE);
qDebug() << "PPT shellexec print result" << result;
}
delete[] wDefaultPrinterName;
delete[] virtualPrinter;
return document;
}
bool UBPowerPointApplication::addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile)
{
bool result = false;
// print by changing default printer and use shell execute to print
LPTSTR wDefaultPrinterName = new TCHAR[255];
LPTSTR virtualPrinter = new TCHAR[255];
int i = QString("Uniboard").toWCharArray(virtualPrinter); // TODO UB 4.x make me configurable ....
virtualPrinter[i] = 0;
DWORD bufferSize = 1000;
GetDefaultPrinter(wDefaultPrinterName, &bufferSize);
UBImportVirtualPrinter::sOriginalDefaultPrintername = QString::fromWCharArray(wDefaultPrinterName);
if (!SetDefaultPrinter(virtualPrinter))
{
QMessageBox msgBox(0);
msgBox.setText(tr("Uniboard printer is not installed. Import will be done in jpg format."));
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.setDefaultButton(QMessageBox::Ok);
msgBox.exec();
QString tempLocation = UBFileSystemUtils::createTempDir();
QDir tempDir(tempLocation);
bool pptSuccess = generateImagesFromPptFile(pFile.fileName(), tempLocation, "jpg", QSize(3000, 2250));
if (pptSuccess)
{
if (UBDocumentManager::documentManager()->addImageDirToDocument(tempDir, pDocument))
{
UBFileSystemUtils::deleteDir(tempLocation);
result = true;
}
}
}
else
{
UBImportVirtualPrinter::pendingDocument = pDocument;
result = ShellExecute(NULL, QString("print").utf16() , pFile.fileName().utf16(), NULL, NULL, SW_HIDE);
}
delete[] wDefaultPrinterName;
delete[] virtualPrinter;
return result;
}
void UBPowerPointApplication::exception ( int code, const QString & source, const QString & desc, const QString & help )
{
Q_UNUSED(help);
mHasException = true;
qCritical() << source << desc << code;
}