2011-05-08 22:23:31 +02:00
|
|
|
#ifndef BITCOINGUI_H
|
|
|
|
#define BITCOINGUI_H
|
2011-05-07 22:13:39 +02:00
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
class BitcoinGUI : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-05-08 22:23:31 +02:00
|
|
|
explicit BitcoinGUI(QWidget *parent = 0);
|
2011-05-07 22:13:39 +02:00
|
|
|
|
|
|
|
/* Transaction table tab indices */
|
|
|
|
enum {
|
2011-05-08 22:23:31 +02:00
|
|
|
AllTransactions = 0,
|
|
|
|
SentReceived = 1,
|
|
|
|
Sent = 2,
|
|
|
|
Received = 3
|
2011-05-07 22:13:39 +02:00
|
|
|
} TabIndex;
|
|
|
|
private slots:
|
|
|
|
void currentChanged(int tab);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|