shift-shell/containments/homescreens/halcyon/homescreen.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
529 B
C++
Raw Normal View History

// 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"
#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;
K_PLUGIN_CLASS(HomeScreen)
2022-06-18 19:42:29 +00:00
#include "homescreen.moc"