kima2/src/gui/settingsdialog.h

27 lines
464 B
C
Raw Normal View History

2018-07-30 13:40:58 +02:00
#ifndef SETTINGS_DIALOG_H
#define SETTINGS_DIALOG_H
#include "ui_settingsdialog.h"
2019-10-10 08:09:16 +02:00
#include <core/marketplace.h>
2018-08-07 08:31:43 +02:00
2018-07-30 13:40:58 +02:00
#include <QDialog>
class SettingsDialog : public QDialog
{
2019-10-10 13:36:48 +02:00
Q_OBJECT
2018-07-30 13:40:58 +02:00
public:
SettingsDialog(QWidget* parent = nullptr,
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint);
public slots:
void accept() override;
private:
2022-07-07 15:37:33 +02:00
Ui::SettingsDialog m_ui;
Marketplace* m_market{};
2018-07-30 13:40:58 +02:00
};
2019-10-10 08:09:16 +02:00
#endif