lowercase
[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 sendcoinsClicked();
21     void addressbookClicked();
22     void optionsClicked();
23     void receivingAddressesClicked();
24     void aboutClicked();
25
26     void newAddressClicked();
27     void copyClipboardClicked();
28 };
29
30 #endif