Added AccountWindow to display account tables linked to devices and TransactionWindow for viewing account details. Enhanced DeviceDAO and AccountDAO to support additional filtering and data retrieval functionalities.
27 lines
553 B
C++
27 lines
553 B
C++
#pragma once
|
|
#include <QMainWindow>
|
|
#include <QVBoxLayout>
|
|
#include <QStackedWidget>
|
|
#include <QTimer>
|
|
#include "db/DeviceInfo.h"
|
|
#include "widget/FlowLayout.h"
|
|
|
|
class MainWindow final : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
void loadDevices();
|
|
|
|
private:
|
|
QWidget* central;
|
|
FlowLayout* flowLayout;
|
|
QTimer* timer;
|
|
QStackedWidget* stackedWidget;
|
|
|
|
QWidget* devicePage = nullptr;
|
|
QWidget* accountPage = nullptr;
|
|
|
|
void createDevicePage();
|
|
void deleteDevicePage();
|
|
};
|