1
0
forked from BRT/arc
arc/views/bank/BankListWindow.h
trnsmkot 73c62495a2 Remove CommonBirbankScript and its derived classes from the codebase
Deleted `CommonBirbankScript` and its associated derived classes (`GetLastDaysHistoryBirbankScript`, `LoginAndCheckAccountsBirbankScript`, `PayByCardBirbankScript`). Removed dependencies on these scripts, including XML parsing, account handling, and transaction workflows related to the Birbank app.
2026-03-21 17:41:05 +07:00

19 lines
318 B
C++

#pragma once
#include <QWidget>
#include <QTableWidget>
class BankListWindow final : public QWidget {
Q_OBJECT
public:
explicit BankListWindow(QWidget *parent = nullptr);
private:
QTableWidget *m_tableWidget;
void reloadTable();
void syncBanks();
void filterTable(const QString &text);
};