Files
GUI/src/forms/settings/AccountTableForm.h

27 lines
377 B
C
Raw Normal View History

2021-12-08 15:10:56 +08:00
//
// Created by Krad on 2021/12/8.
//
2022-06-14 18:04:44 +08:00
#ifndef ACCOUNTTABLEFORM_H
#define ACCOUNTTABLEFORM_H
2021-12-08 15:10:56 +08:00
#include <QWidget>
2022-06-14 18:04:44 +08:00
2021-12-08 15:10:56 +08:00
class QVBoxLayout;
2022-06-14 18:04:44 +08:00
class AccountTableForm : public QWidget
{
Q_OBJECT
2021-12-08 15:10:56 +08:00
public:
2022-06-14 18:04:44 +08:00
explicit AccountTableForm(QWidget* aParent = nullptr);
2021-12-08 15:10:56 +08:00
~AccountTableForm();
2022-06-14 18:04:44 +08:00
2021-12-08 15:10:56 +08:00
private:
2022-06-14 18:04:44 +08:00
QVBoxLayout* mLayout;
int mCurrentRow;
2021-12-08 15:10:56 +08:00
};
#endif //GUI_ACCOUNTTABLEFORM_H