2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2011-2020 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-16 13:37:31 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_COINCONTROLTREEWIDGET_H
|
|
|
|
#define BITCOIN_QT_COINCONTROLTREEWIDGET_H
|
2013-08-12 11:03:03 -04:00
|
|
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QTreeWidget>
|
|
|
|
|
2013-11-16 13:37:31 -03:00
|
|
|
class CoinControlTreeWidget : public QTreeWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-08-12 11:03:03 -04:00
|
|
|
|
|
|
|
public:
|
2018-07-30 06:37:09 -04:00
|
|
|
explicit CoinControlTreeWidget(QWidget *parent = nullptr);
|
2013-08-12 11:03:03 -04:00
|
|
|
|
|
|
|
protected:
|
2020-03-14 03:49:59 -03:00
|
|
|
virtual void keyPressEvent(QKeyEvent *event) override;
|
2013-08-12 11:03:03 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_COINCONTROLTREEWIDGET_H
|