Files
GUI/src/AccountTableForm.h

25 lines
445 B
C
Raw Normal View History

2021-12-08 15:10:56 +08:00
//
// Created by Krad on 2021/12/8.
//
#ifndef GUI_ACCOUNTTABLEFORM_H
#define GUI_ACCOUNTTABLEFORM_H
#include <QWidget>
class QTableView;
class QPushButton;
class QVBoxLayout;
class SelectDialog;
class AccountTableForm: public QWidget {
Q_OBJECT
public:
explicit AccountTableForm(QWidget* parent = nullptr);
~AccountTableForm();
private:
QVBoxLayout* layout = nullptr;
int currentRow = -1;
2021-12-08 15:10:56 +08:00
};
#endif //GUI_ACCOUNTTABLEFORM_H