rename to qt standard

This commit is contained in:
Wladimir J. van der Laan
2011-05-12 14:44:52 +02:00
parent 8812ce7b27
commit df577886e4
25 changed files with 447 additions and 69 deletions

30
bitcoingui.h Normal file
View File

@@ -0,0 +1,30 @@
#ifndef BITCOINGUI_H
#define BITCOINGUI_H
#include <QMainWindow>
class BitcoinGUI : public QMainWindow
{
Q_OBJECT
public:
explicit BitcoinGUI(QWidget *parent = 0);
/* Transaction table tab indices */
enum {
AllTransactions = 0,
SentReceived = 1,
Sent = 2,
Received = 3
} TabIndex;
private slots:
void sendcoinsClicked();
void addressbookClicked();
void optionsClicked();
void receivingAddressesClicked();
void aboutClicked();
void newAddressClicked();
void copyClipboardClicked();
};
#endif