This repository was archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogresswidget.cpp
More file actions
187 lines (171 loc) · 5.71 KB
/
progresswidget.cpp
File metadata and controls
187 lines (171 loc) · 5.71 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
Copyright (c) 2009, ImageShack Corp.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the ImageShack nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "progresswidget.h"
#include "ui_progresswidget.h"
#include <QPlastiqueStyle>
#include <QMessageBox>
#include <QMainWindow>
#include <QSettings>
#include <QDebug>
#include "pausedialog.h"
ProgressWidget::ProgressWidget(QWidget *parent) :
QStackedWidget(parent),
m_ui(new Ui::ProgressWidget)
{
setParent(parent);
m_ui->setupUi(this);
#ifdef Q_OS_WIN
m_ui->progressBar->setStyle(new QPlastiqueStyle());
m_ui->progressBar_2->setStyle(new QPlastiqueStyle());
m_ui->progressBar_3->setStyle(new QPlastiqueStyle());
#endif
QFont font = QApplication::font();
setFont(font);
#ifndef Q_OS_MACX
// On mac this font is small, but it is too big on windows default style
// and linux's Ozone (most popular Qt style).
font.setPointSize(8);
m_ui->ETA->setFont(font);
#endif
paused = false;
}
void ProgressWidget::setMedias(MediaListModel* model)
{
medias = model;
}
ProgressWidget::~ProgressWidget()
{
delete m_ui;
}
void ProgressWidget::changeEvent(QEvent *e)
{
QStackedWidget::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
m_ui->retranslateUi(this);
break;
default:
break;
}
}
void ProgressWidget::uploadClicked()
{
emit upload();
}
void ProgressWidget::cancelClicked()
{
emit cancel();
paused = false;
m_ui->pause->setText(tr("Pause"));
m_ui->pause->setIcon(QIcon(":/images/images/pause.png"));
}
void ProgressWidget::setProgress(int total, int current)
{
if (current == 100)
{
m_ui->progressBar_2->setFormat(tr("Waiting for links..."));
}
else
{
m_ui->progressBar_2->setFormat(QApplication::translate("ProgressWidget",
"Current: %p%",
0,
QApplication::UnicodeUTF8));
}
m_ui->progressBar->setValue(total);
m_ui->progressBar_2->setValue(current);
}
void ProgressWidget::setMediaLoadProgress(int current, int total)
{
int tmp = current<total?current+1:total;
QString format = tr("Loading files: %1 of %2").arg(tmp).arg(total);
m_ui->progressBar_3->setFormat(format);
m_ui->progressBar_3->setMaximum(total);
m_ui->progressBar_3->setValue(current);
}
void ProgressWidget::setUploadEnabled(bool value)
{
m_ui->upload->setEnabled(value);
}
void ProgressWidget::updateETA(int secs)
{
if (secs == -100)
{
m_ui->ETA->setText(tr("Time left:")+" "+ tr("paused..."));
return;
}
int hours = secs/60/60;
int minutes = (secs - hours*60*60)/60;
int seconds = secs - (hours*60*60) - minutes*60;
if (seconds>30) minutes++;
if (minutes>59) { hours++; minutes -= 60; }
QString text = tr("Time left:");
if (minutes < 0) minutes = 0;
if (hours < 0) hours = 0;
if (seconds < 0) seconds = 0;
if (hours) text.append(tr(" %n hrs.", 0, hours));
if (minutes) text.append(tr(" %n min.", 0, minutes));
//if (seconds) text.append(tr(" %n sec.", 0, seconds));
if(!hours && !minutes && seconds) text.append(tr(" less than 1 min."));
if(!hours && !minutes && !seconds) text.append(tr(" almost done..."));
m_ui->ETA->setText(text);
}
void ProgressWidget::setCurrentIndex(int idx)
{
QStackedWidget::setCurrentIndex(idx);
if (idx == 1)
{
paused = false;
m_ui->pause->setText(tr("Pause"));
m_ui->pause->setIcon(QIcon(":/images/images/pause.png"));
m_ui->ETA->setText(tr("Time left: estimating..."));
}
}
void ProgressWidget::pauseClicked()
{
if (!paused)
{
QSettings sets;
bool skip = sets.value("hidePauseWarning", QVariant(false)).toBool();
if (!skip) if (medias->hasVideo()) skip = true;
if (!skip)
{
QDialog *ask = new PauseDialog(this);
int code = ask->exec();
if (code != QDialog::Accepted) return;
}
m_ui->pause->setText(tr("Resume"));
m_ui->pause->setIcon(QIcon(":/images/images/resume.png"));
paused = true;
emit pause(true);
}
else
{
emit pause(false);
paused = false;
m_ui->pause->setText(tr("Pause"));
m_ui->pause->setIcon(QIcon(":/images/images/pause.png"));
}
}