KQuickCharts

ChartsControlsPlugin.h
1/*
2 * This file is part of KQuickCharts
3 * SPDX-FileCopyrightText: 2019 Arjen Hiemstra <ahiemstra@heimr.nl>
4 *
5 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
6 */
7
8#ifndef CHARTSCONTROLSPLUGIN_H
9#define CHARTSCONTROLSPLUGIN_H
10
11#include <QQmlExtensionPlugin>
12
13class ChartsControlsPlugin : public QQmlExtensionPlugin
14{
16 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
17
18public:
19 explicit ChartsControlsPlugin(QObject *parent = nullptr);
20 void registerTypes(const char *uri) override;
21
22private:
23 QUrl componentUrl(const QString &fileName);
24 QString m_styleName;
25};
26
27#endif // CHARTSCONTROLSPLUGIN_H
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:57 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.