initial commit

This commit is contained in:
Wladimir J. van der Laan
2011-05-07 22:13:39 +02:00
commit aaa1c3c400
11 changed files with 316 additions and 0 deletions

23
BitcoinGUI.h Normal file
View File

@@ -0,0 +1,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