Files
GUI/src/forms/TabFormWidget.h

25 lines
441 B
C
Raw Normal View History

2021-10-09 16:38:34 +08:00
#ifndef TABFORMWIDGET_H
#define TABFORMWIDGET_H
#include <QWidget>
namespace Ui {
class TabFormWidget;
}
class QHBoxLayout;
2021-10-09 16:38:34 +08:00
class TabFormWidget : public QWidget
{
Q_OBJECT
public:
explicit TabFormWidget(QWidget *parent = nullptr);
~TabFormWidget();
protected:
Ui::TabFormWidget *ui;
void addVerticalLine(QHBoxLayout *layout);
2023-08-21 11:21:35 +08:00
void insertVerticalLine(int index, QHBoxLayout *layout);
2021-10-09 16:38:34 +08:00
};
#endif // TABFORMWIDGET_H