File: soundconf.h

package info (click to toggle)
qterm 1%3A0.5.11-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,880 kB
  • ctags: 3,028
  • sloc: cpp: 40,833; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (2)
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