aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mainwindow.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-02-18 21:44:39 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-02-18 21:44:39 +0000
commit09d1eb079182e06e01cc9bea8bf9410e40a189c2 (patch)
treeba6228fb3e81cd38e41fcc32e0d89246b357c5f8 /src/ui/mainwindow.cpp
parent390cf22010e4f10be06010bbaff1dcf388f88c3c (diff)
downloadqmmp-09d1eb079182e06e01cc9bea8bf9410e40a189c2.tar.gz
qmmp-09d1eb079182e06e01cc9bea8bf9410e40a189c2.tar.bz2
qmmp-09d1eb079182e06e01cc9bea8bf9410e40a189c2.zip
improved text scroller, added numerical values for balance and volume
(Closes issue 415) git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2057 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/mainwindow.cpp')
-rw-r--r--src/ui/mainwindow.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp
index 36f9999a4..d2d68f943 100644
--- a/src/ui/mainwindow.cpp
+++ b/src/ui/mainwindow.cpp
@@ -35,7 +35,6 @@
#include <qmmpui/playlistmodel.h>
#include <qmmpui/playlistmanager.h>
#include <qmmpui/mediaplayer.h>
-#include "textscroller.h"
#include "mainwindow.h"
#include "skin.h"
#include "playlist.h"
@@ -120,7 +119,6 @@ MainWindow::MainWindow(const QStringList& args, BuiltinCommandLineOption* option
connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(showState(Qmmp::State)));
connect(m_core, SIGNAL(elapsedChanged(qint64)),m_playlist, SLOT(setTime(qint64)));
connect(m_core, SIGNAL(metaDataChanged()),SLOT(showMetaData()));
- connect(m_core, SIGNAL(bufferingProgress(int)), TextScroller::getPointer(), SLOT(setProgress(int)));
connect(m_generalHandler, SIGNAL(toggleVisibilityCalled()), SLOT(toggleVisibility()));
connect(m_generalHandler, SIGNAL(exitCalled()), SLOT(close()));
@@ -203,8 +201,6 @@ void MainWindow::showState(Qmmp::State state)
case Qmmp::Playing:
if (m_pl_manager->currentPlayList()->currentItem())
m_equalizer->loadPreset(m_pl_manager->currentPlayList()->currentItem()->url().section("/",-1));
- if (m_playlist->listWidget())
- m_playlist->listWidget()->updateList(); //removes progress message from TextScroller
break;
case Qmmp::Paused:
break;
@@ -235,7 +231,6 @@ void MainWindow::showMetaData()
{
m_playlist->currentItem()->updateMetaData(m_core->metaData());
m_playlist->updateList();
- TextScroller::getPointer()->setText(m_playlist->currentItem()->text());
setWindowTitle(m_playlist->currentItem()->text());
}
}
@@ -496,7 +491,6 @@ void MainWindow::updateSettings()
{
readSettings();
m_playlist->readSettings();
- TextScroller::getPointer()->readSettings();
m_visMenu->updateActions();
m_skin->reloadSkin();
Dock::instance()->updateDock();