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.
19 lines
318 B
C++
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);
|
|
};
|