recordservice.h
来自「基于linux的录音程序」· C头文件 代码 · 共 49 行
H
49 行
#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 + =
减小字号Ctrl + -
显示快捷键?