mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-10 22:49:47 -08:00
17 lines
338 B
C++
17 lines
338 B
C++
#ifndef COINCONTROLTREEWIDGET_H
|
|
#define COINCONTROLTREEWIDGET_H
|
|
|
|
#include <QKeyEvent>
|
|
#include <QTreeWidget>
|
|
|
|
class CoinControlTreeWidget : public QTreeWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CoinControlTreeWidget(QWidget *parent = 0);
|
|
|
|
protected:
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
|
};
|
|
|
|
#endif // COINCONTROLTREEWIDGET_H
|