2022-06-08 22:09:35 +00:00
|
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
2022-06-18 19:42:29 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
#include "homescreen.h"
|
|
|
|
|
|
2022-10-12 21:01:03 +00:00
|
|
|
#include <KIO/ApplicationLauncherJob>
|
2022-06-18 19:42:29 +00:00
|
|
|
#include <KWindowSystem>
|
|
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QQuickItem>
|
|
|
|
|
#include <QtQml>
|
|
|
|
|
|
|
|
|
|
HomeScreen::HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
|
|
|
: Plasma::Containment{parent, data, args}
|
|
|
|
|
{
|
|
|
|
|
setHasConfigurationInterface(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HomeScreen::~HomeScreen() = default;
|
|
|
|
|
|
2023-09-13 22:18:45 +00:00
|
|
|
K_PLUGIN_CLASS(HomeScreen)
|
2022-06-18 19:42:29 +00:00
|
|
|
|
|
|
|
|
#include "homescreen.moc"
|