0
|
1 |
/********************************************************************************
|
|
2 |
** Form generated from reading UI file 'history.ui'
|
|
3 |
**
|
|
4 |
** Created: Fri Sep 4 10:17:13 2009
|
|
5 |
** by: Qt User Interface Compiler version 4.6.0
|
|
6 |
**
|
|
7 |
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
8 |
********************************************************************************/
|
|
9 |
|
|
10 |
#ifndef HISTORY_H
|
|
11 |
#define HISTORY_H
|
|
12 |
|
|
13 |
#include <QtCore/QVariant>
|
|
14 |
#include <QtGui/QAction>
|
|
15 |
#include <QtGui/QApplication>
|
|
16 |
#include <QtGui/QButtonGroup>
|
|
17 |
#include <QtGui/QDialog>
|
|
18 |
#include <QtGui/QDialogButtonBox>
|
|
19 |
#include <QtGui/QGridLayout>
|
|
20 |
#include <QtGui/QHBoxLayout>
|
|
21 |
#include <QtGui/QHeaderView>
|
|
22 |
#include <QtGui/QPushButton>
|
|
23 |
#include <QtGui/QSpacerItem>
|
|
24 |
#include "edittreeview.h"
|
|
25 |
#include "searchlineedit.h"
|
|
26 |
|
|
27 |
QT_BEGIN_NAMESPACE
|
|
28 |
|
|
29 |
class Ui_HistoryDialog
|
|
30 |
{
|
|
31 |
public:
|
|
32 |
QGridLayout *gridLayout;
|
|
33 |
QSpacerItem *spacerItem;
|
|
34 |
SearchLineEdit *search;
|
|
35 |
EditTreeView *tree;
|
|
36 |
QHBoxLayout *hboxLayout;
|
|
37 |
QPushButton *removeButton;
|
|
38 |
QPushButton *removeAllButton;
|
|
39 |
QSpacerItem *spacerItem1;
|
|
40 |
QDialogButtonBox *buttonBox;
|
|
41 |
|
|
42 |
void setupUi(QDialog *HistoryDialog)
|
|
43 |
{
|
|
44 |
if (HistoryDialog->objectName().isEmpty())
|
|
45 |
HistoryDialog->setObjectName(QString::fromUtf8("HistoryDialog"));
|
|
46 |
HistoryDialog->resize(758, 450);
|
|
47 |
gridLayout = new QGridLayout(HistoryDialog);
|
|
48 |
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
49 |
spacerItem = new QSpacerItem(252, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
50 |
|
|
51 |
gridLayout->addItem(spacerItem, 0, 0, 1, 1);
|
|
52 |
|
|
53 |
search = new SearchLineEdit(HistoryDialog);
|
|
54 |
search->setObjectName(QString::fromUtf8("search"));
|
|
55 |
|
|
56 |
gridLayout->addWidget(search, 0, 1, 1, 1);
|
|
57 |
|
|
58 |
tree = new EditTreeView(HistoryDialog);
|
|
59 |
tree->setObjectName(QString::fromUtf8("tree"));
|
|
60 |
|
|
61 |
gridLayout->addWidget(tree, 1, 0, 1, 2);
|
|
62 |
|
|
63 |
hboxLayout = new QHBoxLayout();
|
|
64 |
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
|
|
65 |
removeButton = new QPushButton(HistoryDialog);
|
|
66 |
removeButton->setObjectName(QString::fromUtf8("removeButton"));
|
|
67 |
|
|
68 |
hboxLayout->addWidget(removeButton);
|
|
69 |
|
|
70 |
removeAllButton = new QPushButton(HistoryDialog);
|
|
71 |
removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
|
|
72 |
|
|
73 |
hboxLayout->addWidget(removeAllButton);
|
|
74 |
|
|
75 |
spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
76 |
|
|
77 |
hboxLayout->addItem(spacerItem1);
|
|
78 |
|
|
79 |
buttonBox = new QDialogButtonBox(HistoryDialog);
|
|
80 |
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
|
|
81 |
buttonBox->setStandardButtons(QDialogButtonBox::Ok);
|
|
82 |
|
|
83 |
hboxLayout->addWidget(buttonBox);
|
|
84 |
|
|
85 |
|
|
86 |
gridLayout->addLayout(hboxLayout, 2, 0, 1, 2);
|
|
87 |
|
|
88 |
|
|
89 |
retranslateUi(HistoryDialog);
|
|
90 |
QObject::connect(buttonBox, SIGNAL(accepted()), HistoryDialog, SLOT(accept()));
|
|
91 |
|
|
92 |
QMetaObject::connectSlotsByName(HistoryDialog);
|
|
93 |
} // setupUi
|
|
94 |
|
|
95 |
void retranslateUi(QDialog *HistoryDialog)
|
|
96 |
{
|
|
97 |
HistoryDialog->setWindowTitle(QApplication::translate("HistoryDialog", "History", 0, QApplication::UnicodeUTF8));
|
|
98 |
removeButton->setText(QApplication::translate("HistoryDialog", "&Remove", 0, QApplication::UnicodeUTF8));
|
|
99 |
removeAllButton->setText(QApplication::translate("HistoryDialog", "Remove &All", 0, QApplication::UnicodeUTF8));
|
|
100 |
} // retranslateUi
|
|
101 |
|
|
102 |
};
|
|
103 |
|
|
104 |
namespace Ui {
|
|
105 |
class HistoryDialog: public Ui_HistoryDialog {};
|
|
106 |
} // namespace Ui
|
|
107 |
|
|
108 |
QT_END_NAMESPACE
|
|
109 |
|
|
110 |
#endif // HISTORY_H
|