shift-shell/quicksettings/nightcolor/nightcolorplugin.cpp
2022-01-04 12:12:46 -05:00

23 lines
563 B
C++

/*
* SPDX-FileCopyrightText: 2022 by Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "nightcolorplugin.h"
#include <QQmlContext>
#include <QQuickItem>
#include "nightcolorutil.h"
void NightColorPlugin::registerTypes(const char *uri)
{
Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.plasma.quicksetting.nightcolor"));
qmlRegisterSingletonType<NightColorUtil>(uri, 1, 0, "NightColorUtil", [](QQmlEngine *, QJSEngine *) {
return new NightColorUtil;
});
}
//#include "moc_nightcolorplugin.cpp"