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
|
/*
SPDX-FileCopyrightText: 2008 David Faure <faure@kde.org>
SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include "kpartloader.h"
// app
#include "kpartloader_version.h"
// KF
#include <KAboutData>
#include <KActionCollection>
#include <KLocalizedString>
#include <KPluginFactory>
#include <KPluginMetaData>
#include <KAboutPluginDialog>
#include <KMessageBox>
// Qt
#include <QAction>
#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QIcon>
#include <QDir>
KPartLoaderWindow::KPartLoaderWindow(const QString& partLib)
: m_part(nullptr)
{
setXMLFile(QStringLiteral("kpartloaderui.rc"));
QAction * a = new QAction( QIcon::fromTheme(QStringLiteral("application-exit")), i18n("&Quit"), this );
actionCollection()->addAction( "file_quit", a );
connect(a, SIGNAL(triggered()), this, SLOT(close()));
a = actionCollection()->addAction(QStringLiteral("help_about_kpart"));
a->setText(i18n("&About KPart..."));
connect(a, SIGNAL(triggered()), this, SLOT(aboutKPart()));
auto factory = KPluginFactory::loadFactory(KPluginMetaData(partLib));
if (!factory && !partLib.contains('/')) {
qDebug() << "No part named" << partLib << "found directly, trying to load from kf6/parts/";
auto fallback = KPluginFactory::loadFactory(KPluginMetaData(QLatin1String("kf6/parts/") + partLib));
if (fallback)
factory = fallback;
}
if (factory) {
// Create the part
m_part = factory.plugin->create<KParts::ReadOnlyPart>(this, this);
} else {
KMessageBox::error(this, i18n("No part named %1 found: %2", partLib, factory.errorString));
}
if (m_part) {
setCentralWidget( m_part->widget() );
// Integrate its GUI
createGUI( m_part );
}
// Set a reasonable size
resize( 600, 350 );
}
KPartLoaderWindow::~KPartLoaderWindow()
{
}
void KPartLoaderWindow::aboutKPart()
{
KAboutPluginDialog dlg(m_part->metaData(), this);
dlg.exec();
}
int main( int argc, char **argv )
{
QApplication app(argc, argv);
KLocalizedString::setApplicationDomain(QByteArrayLiteral("kpartloader"));
KAboutData aboutData(
QStringLiteral("kpartloader"),
i18n("KPartLoader"),
QStringLiteral(KPARTLOADER_VERSION_STRING),
i18n("This is a test application for KParts."),
KAboutLicense::GPL
);
KAboutData::setApplicationData(aboutData);
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kde-frameworks"), app.windowIcon()));
QCommandLineParser parser;
aboutData.setupCommandLine(&parser);
parser.addPositionalArgument(QLatin1String("part"), i18n("Name of the part to load, e.g. dolphinpart"));
QCommandLineOption url("url", "URL to open in the KPart", "url");
parser.addOption(url);
parser.process(app);
aboutData.processCommandLine(&parser);
const QStringList args = parser.positionalArguments();
if ( args.count() == 1 )
{
KPartLoaderWindow *shell = new KPartLoaderWindow(args.at(0));
shell->show();
if (parser.isSet(url)) {
shell->part()->openUrl(QUrl::fromUserInput(parser.value(url),
QDir::currentPath(),
QUrl::AssumeLocalFile));
}
return app.exec();
}
return -1;
}
#include "moc_kpartloader.cpp"
|