blob: 0b5f88661611ff6916a5078254db25456924afc7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef QMPSETTINGSWINDOW_H
#define QMPSETTINGSWINDOW_H
#include <QDialog>
#include <QCloseEvent>
namespace Ui {
class qmpSettingsWindow;
}
class qmpSettingsWindow:public QDialog
{
Q_OBJECT
public:
explicit qmpSettingsWindow(QWidget *parent=0);
~qmpSettingsWindow();
void closeEvent(QCloseEvent *event);
signals:
void dialogClosing();
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::qmpSettingsWindow *ui;
};
#endif // QMPSETTINGSWINDOW_H
|