Files
RedBear-OS/local/recipes/kde/kf6-kitemmodels/source/src/qml.disabled/kdescendantsproxymodel_qml.h
T
2026-04-14 10:51:06 +01:00

30 lines
696 B
C++

/*
SPDX-FileCopyrightText: 2020 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
// This class exposes KDescendantsProxyModel in a more QML friendly way
#pragma once
#include <KDescendantsProxyModel>
#include <QObject>
#include <QPointer>
#include <qqmlregistration.h>
class KDescendantsProxyModelQml : public KDescendantsProxyModel
{
Q_OBJECT
QML_NAMED_ELEMENT(KDescendantsProxyModel)
public:
explicit KDescendantsProxyModelQml(QObject *parent = nullptr);
~KDescendantsProxyModelQml() override;
Q_INVOKABLE void expandChildren(int row);
Q_INVOKABLE void collapseChildren(int row);
Q_INVOKABLE void toggleChildren(int row);
};