9 #ifndef UI_TRANSACTIONDESCDIALOG_H
10 #define UI_TRANSACTIONDESCDIALOG_H
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QHeaderView>
19 #include <QtWidgets/QTextEdit>
20 #include <QtWidgets/QVBoxLayout>
33 if (TransactionDescDialog->objectName().isEmpty())
34 TransactionDescDialog->setObjectName(QStringLiteral(
"TransactionDescDialog"));
35 TransactionDescDialog->resize(620, 250);
36 verticalLayout =
new QVBoxLayout(TransactionDescDialog);
37 verticalLayout->setObjectName(QStringLiteral(
"verticalLayout"));
38 detailText =
new QTextEdit(TransactionDescDialog);
39 detailText->setObjectName(QStringLiteral(
"detailText"));
40 detailText->setReadOnly(
true);
42 verticalLayout->addWidget(detailText);
44 buttonBox =
new QDialogButtonBox(TransactionDescDialog);
45 buttonBox->setObjectName(QStringLiteral(
"buttonBox"));
46 buttonBox->setOrientation(Qt::Horizontal);
47 buttonBox->setStandardButtons(QDialogButtonBox::Close);
49 verticalLayout->addWidget(buttonBox);
53 QObject::connect(buttonBox, SIGNAL(accepted()), TransactionDescDialog, SLOT(accept()));
54 QObject::connect(buttonBox, SIGNAL(rejected()), TransactionDescDialog, SLOT(reject()));
56 QMetaObject::connectSlotsByName(TransactionDescDialog);
61 TransactionDescDialog->setWindowTitle(QApplication::translate(
"TransactionDescDialog",
"Transaction details", 0));
63 detailText->setToolTip(QApplication::translate(
"TransactionDescDialog",
"This pane shows a detailed description of the transaction", 0));
64 #endif // QT_NO_TOOLTIP
75 #endif // UI_TRANSACTIONDESCDIALOG_H
QVBoxLayout * verticalLayout
Dialog showing transaction details.
QDialogButtonBox * buttonBox
void setupUi(QDialog *TransactionDescDialog)
void retranslateUi(QDialog *TransactionDescDialog)