Kirigami-addons

settings/private/helper.h
1// SPDX-FileCopyrightText: 2024 Carl Schwan <carl@carlschwan.eu>
2// SPDX-License-Identifier: LGPL-2.1-or-later
3
4#pragma once
5
6#include <QObject>
7#include <QtQml/qqmlregistration.h>
8
9/// \internal This is private API, do not use.
10class Helper : public QObject
11{
13 QML_ELEMENT
14 QML_SINGLETON
15
16 Q_PROPERTY(QString styleName READ styleName CONSTANT);
17
18public:
19 explicit Helper(QObject *parent = nullptr);
20
21 QString styleName() const;
22};
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:54:39 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.