Files
GUI/src/forms/TabFormWidget.h
2023-08-21 11:21:35 +08:00

25 lines
441 B
C++

#ifndef TABFORMWIDGET_H
#define TABFORMWIDGET_H
#include <QWidget>
namespace Ui {
class TabFormWidget;
}
class QHBoxLayout;
class TabFormWidget : public QWidget
{
Q_OBJECT
public:
explicit TabFormWidget(QWidget *parent = nullptr);
~TabFormWidget();
protected:
Ui::TabFormWidget *ui;
void addVerticalLine(QHBoxLayout *layout);
void insertVerticalLine(int index, QHBoxLayout *layout);
};
#endif // TABFORMWIDGET_H