Bitcoin Core 28.99.0
P2P Digital Currency
transactionoverviewwidget.h
Go to the documentation of this file.
1// Copyright (c) 2021-2022 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
6#define BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
7
8#include <QListView>
9#include <QSize>
10
11QT_BEGIN_NAMESPACE
12class QShowEvent;
13class QWidget;
14QT_END_NAMESPACE
15
16class TransactionOverviewWidget : public QListView
17{
18 Q_OBJECT
19
20public:
21 explicit TransactionOverviewWidget(QWidget* parent = nullptr);
22 QSize sizeHint() const override;
23
24protected:
25 void showEvent(QShowEvent* event) override;
26};
27
28#endif // BITCOIN_QT_TRANSACTIONOVERVIEWWIDGET_H
void showEvent(QShowEvent *event) override
TransactionOverviewWidget(QWidget *parent=nullptr)