e4ff2fe61a89d671f5b0889ce87925e6fe90bc52
[novacoin.git] / BitcoinGUI.h
1 #ifndef H_BITCOINGUI
2 #define H_BITCOINGUI
3
4 #include <QMainWindow>
5
6 class BitcoinGUI : public QMainWindow
7 {
8     Q_OBJECT
9 public:
10     BitcoinGUI(QWidget *parent = 0);
11     
12     /* Transaction table tab indices */
13     enum {
14         ALL_TRANSACTIONS = 0,
15         SENT_RECEIVED = 1,
16         SENT = 2,
17         RECEIVED = 3
18     } TabIndex;
19 private slots:
20     void currentChanged(int tab);
21 };
22
23 #endif