blob: 0d0f52932f912da30da0993ee77db38a1f26e96f (
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
32
33
|
#ifndef QMPCUSTOMIZEWINDOW_HPP
#define QMPCUSTOMIZEWINDOW_HPP
#include <QDialog>
namespace Ui {
class qmpCustomizeWindow;
}
class qmpCustomizeWindow : public QDialog
{
Q_OBJECT
public:
explicit qmpCustomizeWindow(QWidget *parent = 0);
~qmpCustomizeWindow();
void launch(int w);
private slots:
void on_tbAdd_clicked();
void on_tbRemove_clicked();
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::qmpCustomizeWindow *ui;
int ow;
};
#endif // QMPCUSTOMIZEWINDOW_HPP
|