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 34 35
|
#ifndef SOUNDCONF_H
#define SOUNDCONF_H
#include "ui_soundconf.h"
namespace QTerm
{
class Sound;
class soundConf : public QDialog
{
Q_OBJECT
public:
soundConf( QWidget* parent = 0, Qt::WFlags fl = 0 );
~soundConf();
void loadSetting();
void saveSetting();
public slots:
void onSelectFile();
void onSelectProg();
void onPlayMethod( int id );
void onTestPlay();
protected slots:
void accept();
private:
Sound * m_pSound;
Ui::soundConf ui;
QButtonGroup bgMethod;
};
} // namespace QTerm
#endif // SOUNDCONF_H
|