-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_progresswindowbase.h
More file actions
92 lines (72 loc) · 3.02 KB
/
Copy pathui_progresswindowbase.h
File metadata and controls
92 lines (72 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/********************************************************************************
** Form generated from reading UI file 'progresswindowbase.ui'
**
** Created: Sun Mar 23 11:44:47 2014
** by: Qt User Interface Compiler version 4.8.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_PROGRESSWINDOWBASE_H
#define UI_PROGRESSWINDOWBASE_H
#include <Qt3Support/Q3Frame>
#include <Qt3Support/Q3MimeSourceFactory>
#include <Qt3Support/Q3ProgressBar>
#include <Qt3Support/Q3TextBrowser>
#include <Qt3Support/Q3TextEdit>
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QHBoxLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QPushButton>
#include <QtGui/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_progresswindowbase
{
public:
QVBoxLayout *vboxLayout;
Q3TextBrowser *logbrowser;
QHBoxLayout *hboxLayout;
Q3ProgressBar *progressbar;
QPushButton *cancelbutton;
void setupUi(QDialog *progresswindowbase)
{
if (progresswindowbase->objectName().isEmpty())
progresswindowbase->setObjectName(QString::fromUtf8("progresswindowbase"));
progresswindowbase->resize(600, 480);
vboxLayout = new QVBoxLayout(progresswindowbase);
vboxLayout->setSpacing(6);
vboxLayout->setContentsMargins(11, 11, 11, 11);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
logbrowser = new Q3TextBrowser(progresswindowbase);
logbrowser->setObjectName(QString::fromUtf8("logbrowser"));
logbrowser->setTextFormat(Qt::LogText);
vboxLayout->addWidget(logbrowser);
hboxLayout = new QHBoxLayout();
hboxLayout->setSpacing(6);
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
progressbar = new Q3ProgressBar(progresswindowbase);
progressbar->setObjectName(QString::fromUtf8("progressbar"));
progressbar->setTotalSteps(1000);
hboxLayout->addWidget(progressbar);
cancelbutton = new QPushButton(progresswindowbase);
cancelbutton->setObjectName(QString::fromUtf8("cancelbutton"));
hboxLayout->addWidget(cancelbutton);
vboxLayout->addLayout(hboxLayout);
retranslateUi(progresswindowbase);
QObject::connect(cancelbutton, SIGNAL(clicked()), progresswindowbase, SLOT(clickedcancel()));
QMetaObject::connectSlotsByName(progresswindowbase);
} // setupUi
void retranslateUi(QDialog *progresswindowbase)
{
progresswindowbase->setWindowTitle(QApplication::translate("progresswindowbase", "dvbcut", 0, QApplication::UnicodeUTF8));
cancelbutton->setText(QApplication::translate("progresswindowbase", "cancel", 0, QApplication::UnicodeUTF8));
} // retranslateUi
};
namespace Ui {
class progresswindowbase: public Ui_progresswindowbase {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_PROGRESSWINDOWBASE_H