stagewidget.h
来自「本人这两天在linux下用qt作的益智小游戏」· C头文件 代码 · 共 24 行
H
24 行
#ifndef STAGEWIDGET_H#define STAGEWIDGET_H//widget for choosing stage#include<qwidget.h>#include<qcombobox.h>#include<qpushbutton.h>#include<qlabel.h>class StageWidget:public QWidget{ Q_OBJECTpublic: StageWidget(); QComboBox *combobox; QPushButton *b1,*b2; QLabel *label;signals: void getVal(int); public slots: void respond();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?