]> git.sur5r.net Git - minitube/commitdiff
Random cleanup
authorFlavio Tordini <flavio.tordini@gmail.com>
Tue, 20 Apr 2010 14:10:38 +0000 (16:10 +0200)
committerFlavio Tordini <flavio.tordini@gmail.com>
Tue, 20 Apr 2010 14:10:38 +0000 (16:10 +0200)
src/MediaView.cpp
src/MediaView.h
src/loadingwidget.cpp

index 2e2d8bcabbf2f6f9365519ff547effbf0efb2bd8..2b096eaba928c74d90b4e89bc103cd8fd0c68273 100644 (file)
@@ -81,7 +81,6 @@ MediaView::MediaView(QWidget *parent) : QWidget(parent) {
     videoAreaWidget = new VideoAreaWidget(this);
     videoAreaWidget->setMinimumSize(320,240);
 
-
 #ifdef Q_WS_MAC
     // mouse autohide does not work on the Mac (no mouseMoveEvent)
     videoWidget = new Phonon::VideoWidget(this);
@@ -114,6 +113,7 @@ MediaView::MediaView(QWidget *parent) : QWidget(parent) {
     workaroundTimer->setInterval(3000);
     connect(workaroundTimer, SIGNAL(timeout()), SLOT(timerPlay()));
 
+    // TODO Enable this on touch devices
     // FlickCharm *flickCharm = new FlickCharm(this);
     // flickCharm->activateOn(listView);
 
@@ -133,7 +133,6 @@ void MediaView::initialize() {
 void MediaView::setMediaObject(Phonon::MediaObject *mediaObject) {
     this->mediaObject = mediaObject;
     Phonon::createPath(this->mediaObject, videoWidget);
-    // connect(mediaObject, SIGNAL(aboutToFinish()), this, SLOT(aboutToFinish()));
     connect(mediaObject, SIGNAL(finished()), this, SLOT(skip()));
     connect(mediaObject, SIGNAL(stateChanged(Phonon::State, Phonon::State)),
             this, SLOT(stateChanged(Phonon::State, Phonon::State)));
@@ -241,12 +240,6 @@ void MediaView::stop() {
     workaroundTimer->stop();
     errorTimer->stop();
     listView->selectionModel()->clearSelection();
-
-    // turn off HD indicator
-    bool ret = QMetaObject::invokeMethod(parent()->parent(), "hdIndicator", Qt::DirectConnection, Q_ARG(bool, false));
-    if (!ret) qDebug() << "hdIndicator invokeMethod failed";
-    QAction *hdAct = The::globalActions()->value("hd");
-    hdAct->setToolTip("");
 }
 
 void MediaView::activeRowChanged(int row) {
@@ -296,17 +289,6 @@ void MediaView::gotStreamUrl(QUrl streamUrl) {
         QModelIndex index = listModel->index(row, 0, QModelIndex());
         listView->scrollTo(index, QAbstractItemView::EnsureVisible);
     }
-
-    // HD indicator
-
-    // get the Video that sent the signal
-    Video *video = static_cast<Video *>(sender());
-    if (!video) {
-        qDebug() << "Cannot get sender";
-        return;
-    }
-    bool ret = QMetaObject::invokeMethod(parent()->parent(), "hdIndicator", Qt::DirectConnection, Q_ARG(bool, video->isHd()));
-    if (!ret) qDebug() << "hdIndicator invokeMethod failed";
 }
 
 void MediaView::itemActivated(const QModelIndex &index) {
@@ -316,22 +298,10 @@ void MediaView::itemActivated(const QModelIndex &index) {
     else listModel->searchMore();
 }
 
-void MediaView::aboutToFinish() {
-    /*
-    int nextRow = listModel->nextRow();
-    if (nextRow == -1) return;
-    Video* video = listModel->videoAt(nextRow);
-    QUrl streamUrl = video->streamUrl();
-    qDebug() << "Enqueing" << streamUrl;
-    mediaObject->enqueue(streamUrl);
-    */
-}
-
 void MediaView::currentSourceChanged(const Phonon::MediaSource source) {
     qDebug() << "Playing" << source.url().toString();
 }
 
-
 void MediaView::skipVideo() {
     // skippedVideo is useful for DELAYED skip operations
     // in order to be sure that we're skipping the video we wanted
index f26f22ae95bfd15312d33309b1d110fbb117e4f3..26775b624ac73e241196636a81bed50e12225666 100644 (file)
@@ -60,7 +60,6 @@ private slots:
     void handleError(QString message);
     // phonon
     void stateChanged(Phonon::State newState, Phonon::State oldState);
-    void aboutToFinish();
     void currentSourceChanged(const Phonon::MediaSource source);
     void showVideoContextMenu(QPoint point);
     // bar
index b4f8eafcb9fdebf5cd4e4384a5ebe401e9642930..ce830bad78b52d6cf4f076ea98502b952228a69f 100644 (file)
@@ -68,7 +68,7 @@ void LoadingWidget::setError(QString message) {
     // progressBar->hide();
 }
 
-void LoadingWidget::bufferStatus(int percent) {
+void LoadingWidget::bufferStatus(int /* percent */) {
     /*
     qDebug() << percent;
     progressBar->setShown(percent > 0);