zcash-patched-for-explorer/BitcoinGUI.h

29 lines
554 B
C
Raw Normal View History

2011-05-08 13:23:31 -07:00
#ifndef BITCOINGUI_H
#define BITCOINGUI_H
2011-05-07 13:13:39 -07:00
#include <QMainWindow>
class BitcoinGUI : public QMainWindow
{
Q_OBJECT
public:
2011-05-08 13:23:31 -07:00
explicit BitcoinGUI(QWidget *parent = 0);
2011-05-07 13:13:39 -07:00
/* Transaction table tab indices */
enum {
2011-05-08 13:23:31 -07:00
AllTransactions = 0,
SentReceived = 1,
Sent = 2,
Received = 3
2011-05-07 13:13:39 -07:00
} TabIndex;
private slots:
2011-05-10 10:03:10 -07:00
void sendcoinsClicked();
void addressbookClicked();
void optionsClicked();
void receivingAddressesClicked();
void newAddressClicked();
void copyClipboardClicked();
2011-05-07 13:13:39 -07:00
};
#endif