transaction details dialog on doubleclick
This commit is contained in:
25
gui/include/transactiondescdialog.h
Normal file
25
gui/include/transactiondescdialog.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef TRANSACTIONDESCDIALOG_H
|
||||
#define TRANSACTIONDESCDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class TransactionDescDialog;
|
||||
}
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QModelIndex;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
class TransactionDescDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
|
||||
~TransactionDescDialog();
|
||||
|
||||
private:
|
||||
Ui::TransactionDescDialog *ui;
|
||||
};
|
||||
|
||||
#endif // TRANSACTIONDESCDIALOG_H
|
||||
Reference in New Issue
Block a user