8 #ifndef UI_TRANSACTIONDESCDIALOG_H
9 #define UI_TRANSACTIONDESCDIALOG_H
11 #include <QtCore/QVariant>
12 #include <QtGui/QAction>
13 #include <QtGui/QApplication>
14 #include <QtGui/QButtonGroup>
15 #include <QtGui/QDialog>
16 #include <QtGui/QDialogButtonBox>
17 #include <QtGui/QHeaderView>
18 #include <QtGui/QTextEdit>
19 #include <QtGui/QVBoxLayout>
32 if (TransactionDescDialog->objectName().isEmpty())
33 TransactionDescDialog->setObjectName(QString::fromUtf8(
"TransactionDescDialog"));
34 TransactionDescDialog->resize(620, 250);
35 verticalLayout =
new QVBoxLayout(TransactionDescDialog);
36 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
37 detailText =
new QTextEdit(TransactionDescDialog);
38 detailText->setObjectName(QString::fromUtf8(
"detailText"));
39 detailText->setReadOnly(
true);
41 verticalLayout->addWidget(detailText);
43 buttonBox =
new QDialogButtonBox(TransactionDescDialog);
44 buttonBox->setObjectName(QString::fromUtf8(
"buttonBox"));
45 buttonBox->setOrientation(Qt::Horizontal);
46 buttonBox->setStandardButtons(QDialogButtonBox::Close);
48 verticalLayout->addWidget(buttonBox);
52 QObject::connect(buttonBox, SIGNAL(accepted()), TransactionDescDialog, SLOT(accept()));
53 QObject::connect(buttonBox, SIGNAL(rejected()), TransactionDescDialog, SLOT(reject()));
55 QMetaObject::connectSlotsByName(TransactionDescDialog);
60 TransactionDescDialog->setWindowTitle(QApplication::translate(
"TransactionDescDialog",
"Transaction details", 0, QApplication::UnicodeUTF8));
62 detailText->setToolTip(QApplication::translate(
"TransactionDescDialog",
"This pane shows a detailed description of the transaction", 0, QApplication::UnicodeUTF8));
63 #endif // QT_NO_TOOLTIP
74 #endif // UI_TRANSACTIONDESCDIALOG_H
QVBoxLayout * verticalLayout
Dialog showing transaction details.
QDialogButtonBox * buttonBox
void setupUi(QDialog *TransactionDescDialog)
void retranslateUi(QDialog *TransactionDescDialog)