add all (unpopulated) dialogs

This commit is contained in:
Wladimir J. van der Laan
2011-05-08 22:23:31 +02:00
parent 4d27c96033
commit 1355cfe131
17 changed files with 169 additions and 211 deletions

View File

@@ -1,5 +1,5 @@
#ifndef H_BITCOINGUI
#define H_BITCOINGUI
#ifndef BITCOINGUI_H
#define BITCOINGUI_H
#include <QMainWindow>
@@ -7,14 +7,14 @@ class BitcoinGUI : public QMainWindow
{
Q_OBJECT
public:
BitcoinGUI(QWidget *parent = 0);
explicit BitcoinGUI(QWidget *parent = 0);
/* Transaction table tab indices */
enum {
ALL_TRANSACTIONS = 0,
SENT_RECEIVED = 1,
SENT = 2,
RECEIVED = 3
AllTransactions = 0,
SentReceived = 1,
Sent = 2,
Received = 3
} TabIndex;
private slots:
void currentChanged(int tab);