Alkimia API

alknewstuffwidget.h
1/*
2 SPDX-FileCopyrightText: 2024 Ralf Habacker ralf.habacker @freenet.de
3
4 This file is part of libalkimia.
5
6 SPDX-License-Identifier: LGPL-2.1-or-later
7*/
8
9#ifndef ALKNEWSTUFFWIDGET_H
10#define ALKNEWSTUFFWIDGET_H
11
12#include <alkimia/alk_export.h>
13
14#include <QList>
15#include <QObject>
16#include <QStringList>
17
18/**
19 * Wrapper for new stuff widgets
20 *
21 * @author Ralf Habacker
22 */
23class ALK_NO_EXPORT AlkNewStuffWidget : public QObject
24{
26public:
27 explicit AlkNewStuffWidget(QObject *parent = nullptr);
28 bool init(const QString &configFile);
29 bool showInstallDialog(QWidget *parent = nullptr);
30
31private:
32 class Private;
33 Private *const d;
34};
35
36#endif // ALKNEWSTUFFWIDGET_H
QObject(QObject *parent)
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Thu Jan 23 2025 18:59:03 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.