You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2020 Michail Vourlakos <mvourlakos@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lattecontainmentplugin.h"
|
|
|
|
|
|
|
|
// local
|
|
|
|
#include "layoutmanager.h"
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
// Qt
|
|
|
|
#include <QtQml>
|
|
|
|
|
|
|
|
void LatteContainmentPlugin::registerTypes(const char *uri)
|
|
|
|
{
|
|
|
|
Q_ASSERT(uri == QLatin1String("org.kde.latte.private.containment"));
|
|
|
|
qmlRegisterUncreatableType<Latte::Containment::Types>(uri, 0, 1, "Types", "Latte Containment Types uncreatable");
|
|
|
|
qmlRegisterType<Latte::Containment::LayoutManager>(uri, 0, 1, "LayoutManager");
|
|
|
|
}
|
|
|
|
|