aboutsummaryrefslogtreecommitdiff
path: root/BitcoinGUI.h
blob: e4ff2fe61a89d671f5b0889ce87925e6fe90bc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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