twister-core/BitcoinGUI.h

24 lines
400 B
C
Raw Normal View History

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