Last change
on this file since 801 was 801, checked in by s10k, 12 years ago |
Vago: tried to fix the main directory in mac. I don't want to get the
bundle one.
|
File size:
837 bytes
|
Rev | Line | |
---|
[771] | 1 | #ifndef SOUNDPAGE2_H
|
---|
| 2 | #define SOUNDPAGE2_H
|
---|
| 3 |
|
---|
| 4 | #include <QWizardPage>
|
---|
| 5 |
|
---|
| 6 | #include "util.h"
|
---|
| 7 | #include "droptablewidget.h"
|
---|
| 8 |
|
---|
| 9 | namespace Ui {
|
---|
| 10 | class soundpage2;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | class SoundPage2 : public QWizardPage
|
---|
| 14 | {
|
---|
| 15 | Q_OBJECT
|
---|
| 16 |
|
---|
| 17 | public:
|
---|
| 18 | DropTableWidget *soundTable;
|
---|
| 19 |
|
---|
[801] | 20 | explicit SoundPage2(QString appLocation, QWidget *parent = 0);
|
---|
[771] | 21 | ~SoundPage2();
|
---|
| 22 |
|
---|
| 23 | private 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 |
|
---|
| 36 | private:
|
---|
| 37 | Ui::soundpage2 *ui;
|
---|
| 38 | static const QStringList allowedFiles;
|
---|
[801] | 39 | QString codecLocalHelpFile;
|
---|
[771] | 40 |
|
---|
| 41 | bool validatePage();
|
---|
| 42 | };
|
---|
| 43 |
|
---|
| 44 | #endif // SOUNDPAGE2_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.