shift-shell/containments/homescreens/halcyon/homescreen.cpp
2024-02-16 13:38:23 +01:00

22 lines
512 B
C++

// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "homescreen.h"
#include <KIO/ApplicationLauncherJob>
#include <KWindowSystem>
#include <QDebug>
#include <QQuickItem>
HomeScreen::HomeScreen(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
: Plasma::Containment{parent, data, args}
{
setHasConfigurationInterface(true);
}
HomeScreen::~HomeScreen() = default;
K_PLUGIN_CLASS(HomeScreen)
#include "homescreen.moc"