]> git.sur5r.net Git - minitube/blobdiff - src/loadingwidget.h
Imported Upstream version 2.5.1
[minitube] / src / loadingwidget.h
index 77a3b1dfce1bea6c507572c603863014f97c3376..21f0f19d8e6f884d538c7073629dc0fa3bbcbf8c 100644 (file)
@@ -1,7 +1,30 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #ifndef LOADINGWIDGET_H
 #define LOADINGWIDGET_H
 
 #include <QtGui>
+#if QT_VERSION >= 0x050000
+#include <QtWidgets>
+#endif
 #include "video.h"
 
 class LoadingWidget : public QWidget {
@@ -11,7 +34,7 @@ class LoadingWidget : public QWidget {
 public:
     LoadingWidget(QWidget *parent);
     void setVideo(Video *video);
-    void setError(QString message);
+    void setError(const QString &message);
     void clear();
 
 public slots:
@@ -20,9 +43,8 @@ public slots:
 private:
     QLabel *titleLabel;
     QLabel *descriptionLabel;
-    // TODO uncomment the whole progress bar feature
-    // when the Phonon backends will correctly emit bufferStatus(int)
-    // QProgressBar *progressBar;
+    QProgressBar *progressBar;
+    QTime startTime;
 
 };