when clicking a transaction on the overview page, send the user to the transactions...
[novacoin.git] / src / qt / overviewpage.h
index 2abddf1..4b4cc92 100644 (file)
@@ -3,6 +3,10 @@
 
 #include <QWidget>
 
+QT_BEGIN_NAMESPACE
+class QModelIndex;
+QT_END_NAMESPACE
+
 namespace Ui {
     class OverviewPage;
 }
@@ -23,6 +27,9 @@ public slots:
     void setBalance(qint64 balance, qint64 unconfirmedBalance);
     void setNumTransactions(int count);
 
+signals:
+    void transactionClicked(const QModelIndex &index);
+
 private:
     Ui::OverviewPage *ui;
     WalletModel *model;