2022-12-24 23:49:50 +00:00
|
|
|
// Copyright (c) 2021-2022 The Bitcoin Core developers
|
2021-01-03 11:27:19 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
|
|
|
|
#define BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
|
|
|
|
|
|
|
|
#include <QListView>
|
|
|
|
#include <QSize>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QShowEvent;
|
|
|
|
class QWidget;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
class TransactionOverviewWidget : public QListView
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-06-14 12:40:57 +02:00
|
|
|
explicit TransactionOverviewWidget(QWidget* parent = nullptr);
|
|
|
|
QSize sizeHint() const override;
|
2021-01-03 11:27:19 +02:00
|
|
|
|
|
|
|
protected:
|
2022-06-14 12:40:57 +02:00
|
|
|
void showEvent(QShowEvent* event) override;
|
2021-01-03 11:27:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
|