aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playlistheadermodel.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-05-30 19:37:52 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-05-30 19:37:52 +0000
commita3ab27c22481b892faf0e0a64deab2199661cbe5 (patch)
tree60362a2e6e274fe66cefe3b0f4cc0effefc5a216 /src/qmmpui/playlistheadermodel.cpp
parent9305a6b6e565c6fc54ab6f13b2d130075580a64f (diff)
downloadqmmp-a3ab27c22481b892faf0e0a64deab2199661cbe5.tar.gz
qmmp-a3ab27c22481b892faf0e0a64deab2199661cbe5.tar.bz2
qmmp-a3ab27c22481b892faf0e0a64deab2199661cbe5.zip
fixed regressions
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5045 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistheadermodel.cpp')
-rw-r--r--src/qmmpui/playlistheadermodel.cpp17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/qmmpui/playlistheadermodel.cpp b/src/qmmpui/playlistheadermodel.cpp
index 80943979a..279aa501e 100644
--- a/src/qmmpui/playlistheadermodel.cpp
+++ b/src/qmmpui/playlistheadermodel.cpp
@@ -19,7 +19,9 @@
***************************************************************************/
#include <QApplication>
+#include <QMetaObject>
#include <qmmp/qmmp.h>
+#include <qmmpui/playlistmanager.h>
#include "columneditor_p.h"
#include "metadatahelper_p.h"
#include "playlistheadermodel.h"
@@ -98,9 +100,9 @@ void PlayListHeaderModel::insert(int index, const QString &name, const QString &
col.name = name;
col.pattern = pattern;
m_columns.insert(index, col);
- rebuildFormatters();
emit columnAdded(index);
emit headerChanged();
+ updatePlayLists();
}
void PlayListHeaderModel::remove(int index)
@@ -114,9 +116,9 @@ void PlayListHeaderModel::remove(int index)
if(m_columns.count() == 1)
return;
- rebuildFormatters();
emit columnRemoved(index);
emit headerChanged();
+ updatePlayLists();
}
void PlayListHeaderModel::move(int from, int to)
@@ -134,9 +136,9 @@ void PlayListHeaderModel::move(int from, int to)
}
m_columns.move(from, to);
- rebuildFormatters();
emit columnMoved(from, to);
emit headerChanged();
+ updatePlayLists();
}
void PlayListHeaderModel::execEdit(int index, QWidget *parent)
@@ -155,9 +157,9 @@ void PlayListHeaderModel::execEdit(int index, QWidget *parent)
{
m_columns[index].name = editor.name();
m_columns[index].pattern = editor.pattern();
- rebuildFormatters();
emit columnChanged(index);
emit headerChanged();
+ updatePlayLists();
}
}
@@ -202,10 +204,15 @@ const QString PlayListHeaderModel::pattern(int index) const
return m_columns[index].pattern;
}
-void PlayListHeaderModel::rebuildFormatters()
+void PlayListHeaderModel::updatePlayLists()
{
QStringList patterns;
for(int i = 0; i < m_columns.count(); ++i)
patterns.append(m_columns[i].pattern);
m_helper->setTitleFormats(patterns);
+
+ foreach(PlayListModel *model, PlayListManager::instance()->playLists())
+ {
+ QMetaObject::invokeMethod(model, "listChanged", Q_ARG(int, PlayListModel::METADATA));
+ }
}