From ed3828f0df1bcef66b036ce1831a0aed87ed5482 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 21 Aug 2007 19:13:47 +0000 Subject: added shoutcast title update git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@119 90c681e8-e032-0410-971d-27865f9a5e38 --- src/mainwindow.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2d13f7000..36d672175 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -131,6 +131,8 @@ MainWindow::MainWindow(const QStringList& args, QWidget *parent) SLOT(showOutputState(const OutputState&))); connect(m_core, SIGNAL(decoderStateChanged(const DecoderState&)), SLOT(showDecoderState(const DecoderState&))); + connect(m_core, SIGNAL(titleChanged(const QString&)), + SLOT(changeTitle(const QString&))); connect ( m_skin, SIGNAL ( skinChanged() ), this, SLOT ( updateSkin() ) ); updateEQ(); @@ -369,6 +371,12 @@ void MainWindow::showDecoderState(const DecoderState &st) } } +void MainWindow::changeTitle(const QString &title) +{ + m_playlist->currentItem()->changeTitle(title); + m_playlist->listWidget()->updateList(); +} + void MainWindow::closeEvent ( QCloseEvent *) { writeSettings(); -- cgit v1.2.3-13-gbd6f