00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_HTTPDOWNLOADER_H
00011 #define UI_HTTPDOWNLOADER_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QHeaderView>
00019 #include <QtGui/QLabel>
00020 #include <QtGui/QProgressBar>
00021 #include <QtGui/QPushButton>
00022 #include <QtGui/QVBoxLayout>
00023
00024 QT_BEGIN_NAMESPACE
00025
00026 class Ui_HttpDownloader
00027 {
00028 public:
00029 QVBoxLayout *verticalLayout;
00030 QLabel *Titlelabel;
00031 QLabel *FileNamelabel;
00032 QProgressBar *progressBar;
00033 QPushButton *CancelpushButton;
00034
00035 void setupUi(QDialog *HttpDownloader)
00036 {
00037 if (HttpDownloader->objectName().isEmpty())
00038 HttpDownloader->setObjectName(QString::fromUtf8("HttpDownloader"));
00039 HttpDownloader->resize(400, 109);
00040 QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
00041 sizePolicy.setHorizontalStretch(0);
00042 sizePolicy.setVerticalStretch(0);
00043 sizePolicy.setHeightForWidth(HttpDownloader->sizePolicy().hasHeightForWidth());
00044 HttpDownloader->setSizePolicy(sizePolicy);
00045 HttpDownloader->setMinimumSize(QSize(400, 109));
00046 HttpDownloader->setMaximumSize(QSize(400, 109));
00047 verticalLayout = new QVBoxLayout(HttpDownloader);
00048 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
00049 Titlelabel = new QLabel(HttpDownloader);
00050 Titlelabel->setObjectName(QString::fromUtf8("Titlelabel"));
00051
00052 verticalLayout->addWidget(Titlelabel);
00053
00054 FileNamelabel = new QLabel(HttpDownloader);
00055 FileNamelabel->setObjectName(QString::fromUtf8("FileNamelabel"));
00056
00057 verticalLayout->addWidget(FileNamelabel);
00058
00059 progressBar = new QProgressBar(HttpDownloader);
00060 progressBar->setObjectName(QString::fromUtf8("progressBar"));
00061 progressBar->setValue(0);
00062
00063 verticalLayout->addWidget(progressBar);
00064
00065 CancelpushButton = new QPushButton(HttpDownloader);
00066 CancelpushButton->setObjectName(QString::fromUtf8("CancelpushButton"));
00067
00068 verticalLayout->addWidget(CancelpushButton);
00069
00070
00071 retranslateUi(HttpDownloader);
00072
00073 QMetaObject::connectSlotsByName(HttpDownloader);
00074 }
00075
00076 void retranslateUi(QDialog *HttpDownloader)
00077 {
00078 HttpDownloader->setWindowTitle(QApplication::translate("HttpDownloader", "Dialog", 0, QApplication::UnicodeUTF8));
00079 Titlelabel->setText(QApplication::translate("HttpDownloader", "Downloading file...", 0, QApplication::UnicodeUTF8));
00080 FileNamelabel->setText(QApplication::translate("HttpDownloader", "file", 0, QApplication::UnicodeUTF8));
00081 CancelpushButton->setText(QApplication::translate("HttpDownloader", "Cancel", 0, QApplication::UnicodeUTF8));
00082 Q_UNUSED(HttpDownloader);
00083 }
00084
00085 };
00086
00087 namespace Ui {
00088 class HttpDownloader: public Ui_HttpDownloader {};
00089 }
00090
00091 QT_END_NAMESPACE
00092
00093 #endif // UI_HTTPDOWNLOADER_H