Krita Source Code Documentation
Loading...
Searching...
No Matches
KisDonationManagementWidget.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: GPL-3.0-or-later
3 */
4#ifndef __KISDONATIONMANAGEMENTWIDGET_H_
5#define __KISDONATIONMANAGEMENTWIDGET_H_
6
7#include <QWidget>
8
9#include "kritaui_export.h"
10#include "ui_KisDonationManagementWidget.h"
11#include <KisSupporterProduct.h>
12
13class KisDonationManagementWidget : public QWidget, public Ui::KisDonationManagementWidget
14{
15 Q_OBJECT
16public:
17 explicit KisDonationManagementWidget(const KisSupporterProduct &product, QWidget *parent = nullptr);
18
19Q_SIGNALS:
21
22private Q_SLOTS:
24 void slotPurchase();
25
26private:
28};
29
30#endif
KisDonationManagementWidget(const KisSupporterProduct &product, QWidget *parent=nullptr)