2013-11-16 13:37:31 -03:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2013-08-12 11:03:03 -04:00
|
|
|
#ifndef COINCONTROLTREEWIDGET_H
|
|
|
|
#define COINCONTROLTREEWIDGET_H
|
|
|
|
|
|
|
|
#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:
|
|
|
|
explicit CoinControlTreeWidget(QWidget *parent = 0);
|
|
|
|
|
|
|
|
protected:
|
2013-11-16 13:37:31 -03:00
|
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
2013-08-12 11:03:03 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COINCONTROLTREEWIDGET_H
|