2018-04-19 18:46:08 +08:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
#include "qqtframe.h"
|
|
|
|
#include "qqtwavaudiomanager.h"
|
|
|
|
#include "qqtaudiomanager.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow ( QWidget* parent = 0 );
|
|
|
|
~MainWindow();
|
|
|
|
|
2018-04-30 12:19:35 +08:00
|
|
|
public slots:
|
|
|
|
void on_play_frame();
|
|
|
|
|
2018-04-19 18:46:08 +08:00
|
|
|
private slots:
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::MainWindow* ui;
|
|
|
|
|
|
|
|
QQtWavAudioManager wavManager;
|
|
|
|
QQtAudioManager audManager;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|