⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recordservice.h

📁 基于linux的录音程序
💻 H
字号:
#ifndef RECORD_SERVICE#define RECORD_SERVICE#include <qmainwindow.h>#include <qtoolbutton.h>#include <qpushbutton.h>#include <qlabel.h>#include <qlayout.h>class MediaRecorder;class RecordService : public QMainWindow{	Q_OBJECTpublic:	RecordService( QWidget *parent = 0, const char *name = 0 ,WFlags f1=0 );	~RecordService();private slots:	void manClicked();	void womanClicked();	void boyClicked();private:	MediaRecorder *record;	QVBoxLayout *Layout;	QHBoxLayout *Layout1;	QHBoxLayout *Layout2;	QHBoxLayout *manLayout;	QHBoxLayout *womanLayout;	QHBoxLayout *boyLayout;	QToolButton *manButton;	QToolButton *womanButton;	QToolButton *boyButton;	QPushButton *quitButton;	QLabel *tipLabel;	QLabel *nameLabel;	QLabel *numLabel;	QLabel *manLabel;	QLabel *manrecordnumLabel;	QLabel *womanLabel;	QLabel *womanrecordnumLabel;	QLabel *boyLabel;	QLabel *boyrecordnumLabel;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -