Line data Source code
1 : /********************************************************************************
2 : ** Form generated from reading UI file 'transactiondescdialog.ui'
3 : **
4 : ** Created by: Qt User Interface Compiler version 4.8.6
5 : **
6 : ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 : ********************************************************************************/
8 :
9 : #ifndef UI_TRANSACTIONDESCDIALOG_H
10 : #define UI_TRANSACTIONDESCDIALOG_H
11 :
12 : #include <QtCore/QVariant>
13 : #include <QtGui/QAction>
14 : #include <QtGui/QApplication>
15 : #include <QtGui/QButtonGroup>
16 : #include <QtGui/QDialog>
17 : #include <QtGui/QDialogButtonBox>
18 : #include <QtGui/QHeaderView>
19 : #include <QtGui/QTextEdit>
20 : #include <QtGui/QVBoxLayout>
21 :
22 : QT_BEGIN_NAMESPACE
23 :
24 : class Ui_TransactionDescDialog
25 : {
26 : public:
27 : QVBoxLayout *verticalLayout;
28 : QTextEdit *detailText;
29 : QDialogButtonBox *buttonBox;
30 :
31 0 : void setupUi(QDialog *TransactionDescDialog)
32 : {
33 0 : if (TransactionDescDialog->objectName().isEmpty())
34 0 : TransactionDescDialog->setObjectName(QString::fromUtf8("TransactionDescDialog"));
35 0 : TransactionDescDialog->resize(620, 250);
36 0 : verticalLayout = new QVBoxLayout(TransactionDescDialog);
37 0 : verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
38 0 : detailText = new QTextEdit(TransactionDescDialog);
39 0 : detailText->setObjectName(QString::fromUtf8("detailText"));
40 0 : detailText->setReadOnly(true);
41 :
42 0 : verticalLayout->addWidget(detailText);
43 :
44 0 : buttonBox = new QDialogButtonBox(TransactionDescDialog);
45 0 : buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
46 0 : buttonBox->setOrientation(Qt::Horizontal);
47 0 : buttonBox->setStandardButtons(QDialogButtonBox::Close);
48 :
49 0 : verticalLayout->addWidget(buttonBox);
50 :
51 :
52 0 : retranslateUi(TransactionDescDialog);
53 0 : QObject::connect(buttonBox, SIGNAL(accepted()), TransactionDescDialog, SLOT(accept()));
54 0 : QObject::connect(buttonBox, SIGNAL(rejected()), TransactionDescDialog, SLOT(reject()));
55 :
56 0 : QMetaObject::connectSlotsByName(TransactionDescDialog);
57 0 : } // setupUi
58 :
59 0 : void retranslateUi(QDialog *TransactionDescDialog)
60 : {
61 0 : TransactionDescDialog->setWindowTitle(QApplication::translate("TransactionDescDialog", "Transaction details", 0, QApplication::UnicodeUTF8));
62 : #ifndef QT_NO_TOOLTIP
63 0 : detailText->setToolTip(QApplication::translate("TransactionDescDialog", "This pane shows a detailed description of the transaction", 0, QApplication::UnicodeUTF8));
64 : #endif // QT_NO_TOOLTIP
65 0 : } // retranslateUi
66 :
67 : };
68 :
69 : namespace Ui {
70 : class TransactionDescDialog: public Ui_TransactionDescDialog {};
71 : } // namespace Ui
72 :
73 : QT_END_NAMESPACE
74 :
75 : #endif // UI_TRANSACTIONDESCDIALOG_H
|