aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 10:46:29 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 10:46:29 +0000
commit954146ff9b69591f0cf3895e96922bb55ad88502 (patch)
treeb495690d6ed2a6b5251fd1e8a428b550354a0cba /src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
parent2b286b3f3713a224839b9444579046556b608c58 (diff)
downloadqmmp-954146ff9b69591f0cf3895e96922bb55ad88502.tar.gz
qmmp-954146ff9b69591f0cf3895e96922bb55ad88502.tar.bz2
qmmp-954146ff9b69591f0cf3895e96922bb55ad88502.zip
playlist format api cleanup
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3088 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp')
-rw-r--r--src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp37
1 files changed, 9 insertions, 28 deletions
diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
index 2e1296b48..4e6c2a349 100644
--- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
+++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2009 by Ilya Kotov *
+ * Copyright (C) 2008-2012 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -23,13 +23,19 @@
#include <QFileInfo>
#include <QUrl>
#include <QtPlugin>
-
#include <qmmp/qmmp.h>
-
#include "xspfplaylistformat.h"
// Needs more work - it's better use libSpiff there and put it as plugin.
+const PlayListFormatProperties XSPFPlaylistFormat::XSPFPlaylistFormat::properties() const
+{
+ PlayListFormatProperties p;
+ p.filters << "*.xspf";
+ p.shortName = "xspf";
+ return p;
+}
+
QStringList XSPFPlaylistFormat::decode(const QString & contents)
{
QStringList out;
@@ -138,29 +144,4 @@ QString XSPFPlaylistFormat::encode(const QList<PlayListItem*> & files)
return doc.toString().prepend(xml_header);
}
-XSPFPlaylistFormat::XSPFPlaylistFormat()
-{
- m_supported_formats << "xspf";
-}
-
-bool XSPFPlaylistFormat::hasFormat(const QString & f)
-{
- foreach(QString s,m_supported_formats)
- if (f == s)
- return true;
-
- return false;
-}
-
-QStringList XSPFPlaylistFormat::getExtensions() const
-{
- return m_supported_formats;
-}
-
-
-QString XSPFPlaylistFormat::name() const
-{
- return "XSPFPlaylistFormat";
-}
-
Q_EXPORT_PLUGIN2(xspfplaylistformat,XSPFPlaylistFormat)