2011-06-10 09:05:51 -04:00
|
|
|
#ifndef TRANSACTIONDESCDIALOG_H
|
|
|
|
#define TRANSACTIONDESCDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class TransactionDescDialog;
|
|
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QModelIndex;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Dialog showing transaction details. */
|
2011-06-10 09:05:51 -04:00
|
|
|
class TransactionDescDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
|
|
|
|
~TransactionDescDialog();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::TransactionDescDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TRANSACTIONDESCDIALOG_H
|