plasma-framework/declarativeimports/plasmacomponents/plasmacomponentsplugin.cpp

117 lines
3.4 KiB
C++
Raw Normal View History

2011-09-13 21:21:29 +02:00
/*
* Copyright 2011 by Marco Martin <mart@kde.org>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "plasmacomponentsplugin.h"
#include <QtDeclarative/qdeclarative.h>
#include <QtDeclarative/QDeclarativeEngine>
2012-01-09 11:41:28 +01:00
#include <QtDeclarative/QDeclarativeContext>
#include <QtDeclarative/QDeclarativeItem>
2011-09-13 21:21:29 +02:00
#include "qrangemodel.h"
#include <KSharedConfig>
2012-01-09 12:41:21 +01:00
#include <KDebug>
#include "enums.h"
#include "qmenu.h"
#include "qmenuitem.h"
2011-11-03 18:23:26 +01:00
#include "kdialogproxy.h"
2012-01-09 12:41:21 +01:00
#include "fullscreendialog.h"
2012-02-28 14:49:20 +01:00
#include "fullscreensheet.h"
2012-01-09 11:41:28 +01:00
Q_EXPORT_PLUGIN2(plasmacomponentsplugin, PlasmaComponentsPlugin)
class BKSingleton
{
public:
EngineBookKeeping self;
};
K_GLOBAL_STATIC(BKSingleton, privateBKSelf)
EngineBookKeeping::EngineBookKeeping()
{
}
EngineBookKeeping *EngineBookKeeping::self()
{
return &privateBKSelf->self;
}
2012-01-09 11:41:28 +01:00
QDeclarativeEngine *EngineBookKeeping::engineFor(QObject *item) const
2012-01-09 12:41:21 +01:00
{return m_engines.values().first();
2012-01-09 11:41:28 +01:00
foreach (QDeclarativeEngine *engine, m_engines) {
QObject *root = engine->rootContext()->contextObject();
QObject *candidate = item;
while (candidate) {
if (candidate == root) {
return engine;
}
candidate = candidate->parent();
}
}
return 0;
}
2012-01-09 11:41:28 +01:00
void EngineBookKeeping::insertEngine(QDeclarativeEngine *engine)
2012-01-09 11:12:05 +01:00
{
2012-01-09 11:41:28 +01:00
m_engines.insert(engine);
2012-01-09 11:12:05 +01:00
}
2012-01-09 11:12:05 +01:00
void PlasmaComponentsPlugin::initializeEngine(QDeclarativeEngine *engine, const char *uri)
{
QDeclarativeExtensionPlugin::initializeEngine(engine, uri);
2012-01-09 11:41:28 +01:00
EngineBookKeeping::self()->insertEngine(engine);
2012-01-09 11:12:05 +01:00
}
2011-09-13 21:21:29 +02:00
void PlasmaComponentsPlugin::registerTypes(const char *uri)
{
Q_ASSERT(uri == QLatin1String("org.kde.plasma.components"));
2011-11-10 15:52:26 +01:00
QString componentsPlatform = getenv("KDE_PLASMA_COMPONENTS_PLATFORM");
if (componentsPlatform.isEmpty()) {
KConfigGroup cg(KSharedConfig::openConfig("kdeclarativerc"), "Components-platform");
componentsPlatform = cg.readEntry("name", "desktop");
}
2012-01-09 13:20:57 +01:00
//platform specific c++ components
if (componentsPlatform == "desktop") {
qmlRegisterType<KDialogProxy>(uri, 0, 1, "QueryDialog");
2011-11-08 23:00:38 +01:00
qmlRegisterType<QMenuProxy>(uri, 0, 1, "Menu");
qmlRegisterType<QMenuItem>(uri, 0, 1, "MenuItem");
//on touch systems the dialog is fullscreen, c++ needed to do that
2012-01-09 13:20:57 +01:00
} else {
qmlRegisterType<FullScreenDialog>(uri, 0, 1, "Dialog");
2012-02-28 14:49:20 +01:00
qmlRegisterType<FullScreenSheet>(uri, 0, 1, "Sheet");
}
2011-11-03 18:23:26 +01:00
2011-09-13 21:21:29 +02:00
qmlRegisterType<Plasma::QRangeModel>(uri, 0, 1, "RangeModel");
qmlRegisterUncreatableType<DialogStatus>(uri, 0, 1, "DialogStatus", "");
2011-10-27 22:52:16 +02:00
qmlRegisterUncreatableType<PageOrientation>(uri, 0, 1, "PageOrientation", "");
qmlRegisterUncreatableType<PageStatus>(uri, 0, 1, "PageStatus", "");
2011-09-13 21:21:29 +02:00
}
#include "plasmacomponentsplugin.moc"