source: s10k/Vago/soundWizard/soundpage2.h@ 1183

Last change on this file since 1183 was 1061, checked in by s10k, 8 years ago

Added Vago 1.3

File size: 837 bytes
Line 
1#ifndef SOUNDPAGE2_H
2#define SOUNDPAGE2_H
3
4#include <QWizardPage>
5#include <droptablewidget.h>
6
7#include "util.h"
8
9namespace Ui {
10class soundpage2;
11}
12
13class SoundPage2 : public QWizardPage
14{
15 Q_OBJECT
16
17public:
18 DropTableWidget *soundTable;
19
20 explicit SoundPage2(QString appLocation, QWidget *parent = 0);
21 ~SoundPage2();
22
23private slots:
24 void addResourcesSounds(DropTableWidget *myTable, QStringList resources);
25
26 void on_rbOther_toggled(bool checked);
27
28 void on_tbAddFiles_clicked();
29
30 void on_tbRemoveFiles_clicked();
31
32 void on_pbBrowserOtherLocation_clicked();
33
34 void openCodecLocalHelp();
35
36private:
37 Ui::soundpage2 *ui;
38 static const QStringList allowedFiles;
39 QString codecLocalHelpFile;
40
41 bool validatePage();
42};
43
44#endif // SOUNDPAGE2_H
Note: See TracBrowser for help on using the repository browser.