You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
515 B
C++
35 lines
515 B
C++
#ifndef SETTINGSFORM_H
|
|
#define SETTINGSFORM_H
|
|
|
|
#include <QWidget>
|
|
#include <QDialog>
|
|
|
|
#include "core_global.h"
|
|
|
|
namespace Ui {
|
|
class SettingsForm;
|
|
}
|
|
|
|
class CORESHARED_EXPORT SettingsForm : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsForm(QWidget *parent = 0);
|
|
~SettingsForm();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
|
|
|
private:
|
|
Ui::SettingsForm *ui;
|
|
|
|
// QDialog interface
|
|
public slots:
|
|
void accept() override;
|
|
};
|
|
|
|
#endif // SETTINGSFORM_H
|