You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
425 B
C++

#ifndef GSPLOTLAYOUT_H
#define GSPLOTLAYOUT_H
#include "gs_headers.h"
#define MAX_ROW_COUNT 2
class GSPlotLayout : public QVBoxLayout
{
Q_OBJECT
public:
explicit GSPlotLayout(QWidget* parent = nullptr);
virtual void addWidget(QWidget* widget);
~GSPlotLayout();
private:
QVector<QPointer<QHBoxLayout>> LayoutBank;
void AddRow(QHBoxLayout* layout);
};
#endif // GSPLOTLAYOUT_H