26 lines
427 B
C
26 lines
427 B
C
|
#ifndef SMALLWIDGET_H
|
||
|
#define SMALLWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QSpinBox>
|
||
|
#include <QSlider> // 滑块
|
||
|
#include <QHBoxLayout> // 水平排列布局管理器
|
||
|
#include <QVBoxLayout> // 垂直排列布局管理器
|
||
|
|
||
|
class SmallWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private:
|
||
|
QSpinBox *spinBox;
|
||
|
QSlider *slider;
|
||
|
|
||
|
public:
|
||
|
explicit SmallWidget(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SMALLWIDGET_H
|