Kevacoin source tree
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
400 B

#ifndef BITCOINGUI_H
#define BITCOINGUI_H
14 years ago
#include <QMainWindow>
class BitcoinGUI : public QMainWindow
{
Q_OBJECT
public:
explicit BitcoinGUI(QWidget *parent = 0);
14 years ago
/* Transaction table tab indices */
enum {
AllTransactions = 0,
SentReceived = 1,
Sent = 2,
Received = 3
14 years ago
} TabIndex;
private slots:
void currentChanged(int tab);
};
#endif