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{
25 Q_OBJECT
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
Wrapper for new stuff widgets.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Dec 21 2024 17:01:13 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.