kima2/src/gui/settingsdialog.h

27 lines
462 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:
Ui::SettingsDialog ui_;
2018-08-07 08:31:43 +02:00
Marketplace* market_{};
2018-07-30 13:40:58 +02:00
};
2019-10-10 08:09:16 +02:00
#endif