0
|
1 |
/********************************************************************************
|
|
2 |
** Form generated from reading UI file 'downloads.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 DOWNLOADS_H
|
|
11 |
#define DOWNLOADS_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/QGridLayout>
|
|
19 |
#include <QtGui/QHBoxLayout>
|
|
20 |
#include <QtGui/QHeaderView>
|
|
21 |
#include <QtGui/QLabel>
|
|
22 |
#include <QtGui/QPushButton>
|
|
23 |
#include <QtGui/QSpacerItem>
|
|
24 |
#include "edittableview.h"
|
|
25 |
|
|
26 |
QT_BEGIN_NAMESPACE
|
|
27 |
|
|
28 |
class Ui_DownloadDialog
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
QGridLayout *gridLayout;
|
|
32 |
EditTableView *downloadsView;
|
|
33 |
QHBoxLayout *horizontalLayout;
|
|
34 |
QPushButton *cleanupButton;
|
|
35 |
QSpacerItem *spacerItem;
|
|
36 |
QLabel *itemCount;
|
|
37 |
QSpacerItem *horizontalSpacer;
|
|
38 |
|
|
39 |
void setupUi(QDialog *DownloadDialog)
|
|
40 |
{
|
|
41 |
if (DownloadDialog->objectName().isEmpty())
|
|
42 |
DownloadDialog->setObjectName(QString::fromUtf8("DownloadDialog"));
|
|
43 |
DownloadDialog->resize(332, 252);
|
|
44 |
gridLayout = new QGridLayout(DownloadDialog);
|
|
45 |
gridLayout->setSpacing(0);
|
|
46 |
gridLayout->setContentsMargins(0, 0, 0, 0);
|
|
47 |
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
48 |
downloadsView = new EditTableView(DownloadDialog);
|
|
49 |
downloadsView->setObjectName(QString::fromUtf8("downloadsView"));
|
|
50 |
|
|
51 |
gridLayout->addWidget(downloadsView, 0, 0, 1, 3);
|
|
52 |
|
|
53 |
horizontalLayout = new QHBoxLayout();
|
|
54 |
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
|
55 |
cleanupButton = new QPushButton(DownloadDialog);
|
|
56 |
cleanupButton->setObjectName(QString::fromUtf8("cleanupButton"));
|
|
57 |
cleanupButton->setEnabled(false);
|
|
58 |
|
|
59 |
horizontalLayout->addWidget(cleanupButton);
|
|
60 |
|
|
61 |
spacerItem = new QSpacerItem(58, 24, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
62 |
|
|
63 |
horizontalLayout->addItem(spacerItem);
|
|
64 |
|
|
65 |
|
|
66 |
gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
|
|
67 |
|
|
68 |
itemCount = new QLabel(DownloadDialog);
|
|
69 |
itemCount->setObjectName(QString::fromUtf8("itemCount"));
|
|
70 |
|
|
71 |
gridLayout->addWidget(itemCount, 1, 1, 1, 1);
|
|
72 |
|
|
73 |
horizontalSpacer = new QSpacerItem(148, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
74 |
|
|
75 |
gridLayout->addItem(horizontalSpacer, 1, 2, 1, 1);
|
|
76 |
|
|
77 |
|
|
78 |
retranslateUi(DownloadDialog);
|
|
79 |
|
|
80 |
QMetaObject::connectSlotsByName(DownloadDialog);
|
|
81 |
} // setupUi
|
|
82 |
|
|
83 |
void retranslateUi(QDialog *DownloadDialog)
|
|
84 |
{
|
|
85 |
DownloadDialog->setWindowTitle(QApplication::translate("DownloadDialog", "Downloads", 0, QApplication::UnicodeUTF8));
|
|
86 |
cleanupButton->setText(QApplication::translate("DownloadDialog", "Clean up", 0, QApplication::UnicodeUTF8));
|
|
87 |
itemCount->setText(QApplication::translate("DownloadDialog", "0 Items", 0, QApplication::UnicodeUTF8));
|
|
88 |
} // retranslateUi
|
|
89 |
|
|
90 |
};
|
|
91 |
|
|
92 |
namespace Ui {
|
|
93 |
class DownloadDialog: public Ui_DownloadDialog {};
|
|
94 |
} // namespace Ui
|
|
95 |
|
|
96 |
QT_END_NAMESPACE
|
|
97 |
|
|
98 |
#endif // DOWNLOADS_H
|