dogecoin/src/qt/coincontroltreewidget.h

23 lines
568 B
C
Raw Normal View History

2014-01-05 21:03:23 +01:00
// Copyright (c) 2011-2014 The Bitcoin Core developers
2014-12-13 05:09:33 +01:00
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-11-03 16:16:40 +01:00
#ifndef BITCOIN_QT_COINCONTROLTREEWIDGET_H
#define BITCOIN_QT_COINCONTROLTREEWIDGET_H
2013-08-12 17:03:03 +02:00
#include <QKeyEvent>
#include <QTreeWidget>
class CoinControlTreeWidget : public QTreeWidget
{
Q_OBJECT
2013-08-12 17:03:03 +02:00
public:
explicit CoinControlTreeWidget(QWidget *parent = 0);
protected:
virtual void keyPressEvent(QKeyEvent *event);
2013-08-12 17:03:03 +02:00
};
2014-11-03 16:16:40 +01:00
#endif // BITCOIN_QT_COINCONTROLTREEWIDGET_H