1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #include "scribus150formatimpl.h"
8 //#include "scribus150formatimpl.moc"
9 #include "scribuscore.h"
10 
11 #include <QString>
12 #include <QMessageBox>
13 
14 // Initialize members here, if any
Scribus150FormatImpl()15 Scribus150FormatImpl::Scribus150FormatImpl() : QObject(nullptr)
16 {
17 }
18 
19 // This method is connected to the "import page" entry in the UI
20 // For now, we just call back into Scribus
run(const QString &)21 bool Scribus150FormatImpl::run(const QString & )
22 {
23 	ScCore->primaryMainWindow()->slotPageImport();
24 	return true;
25 }
26