mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
393 B
24 lines
393 B
#ifndef H_BITCOINGUI
|
|
#define H_BITCOINGUI
|
|
|
|
#include <QMainWindow>
|
|
|
|
class BitcoinGUI : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
BitcoinGUI(QWidget *parent = 0);
|
|
|
|
/* Transaction table tab indices */
|
|
enum {
|
|
ALL_TRANSACTIONS = 0,
|
|
SENT_RECEIVED = 1,
|
|
SENT = 2,
|
|
RECEIVED = 3
|
|
} TabIndex;
|
|
private slots:
|
|
void currentChanged(int tab);
|
|
};
|
|
|
|
#endif
|