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