Now track without tags has title from file basename
authorNikolay Tischenko <niktischenko@gmail.com>
Thu, 23 Sep 2010 17:57:40 +0000 (00:57 +0700)
committerNikolay Tischenko <niktischenko@gmail.com>
Thu, 23 Sep 2010 17:57:40 +0000 (00:57 +0700)
Added license info to new files
Named playlists dialog

src/playlistdialog.cpp
src/playlistdialog.h
src/track.cpp
src/trackmetainformation.cpp
src/trackmetainformation.h

index a4fd908..893aee2 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * SomePlayer - An alternate music player for Maemo 5
+ * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+
 #include "playlistdialog.h"
 #include "ui_playlistdialog.h"
 #include <QStandardItemModel>
 #include "playlistdialog.h"
 #include "ui_playlistdialog.h"
 #include <QStandardItemModel>
@@ -12,6 +32,7 @@ PlaylistDialog::PlaylistDialog(QList<QString> playlistNames, QWidget *parent) :
            model->appendRow(new QStandardItem(str));
     }
     ui->listView->setModel(model);
            model->appendRow(new QStandardItem(str));
     }
     ui->listView->setModel(model);
+    setWindowTitle("Playlists");
 }
 
 PlaylistDialog::~PlaylistDialog()
 }
 
 PlaylistDialog::~PlaylistDialog()
index 89758e0..49e8e9f 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * SomePlayer - An alternate music player for Maemo 5
+ * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
 #ifndef PLAYLISTDIALOG_H
 #define PLAYLISTDIALOG_H
 
 #ifndef PLAYLISTDIALOG_H
 #define PLAYLISTDIALOG_H
 
index 363e9a4..66bde60 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "track.h"
 #include "tagresolver.h"
 
 #include "track.h"
 #include "tagresolver.h"
+#include <QFileInfo>
 
 using namespace SomePlayer::DataObjects;
 
 
 using namespace SomePlayer::DataObjects;
 
@@ -28,6 +29,10 @@ Track::Track() : QObject() {
 Track::Track(int id, TrackMetadata metadata, QString source) : QObject() {
        _id = id;
        _metadata = metadata;
 Track::Track(int id, TrackMetadata metadata, QString source) : QObject() {
        _id = id;
        _metadata = metadata;
+       if (_metadata.title() == _UNKNOWN_TRACK_) {
+               QFileInfo info(source);
+               _metadata.setTitle(info.baseName());
+       }
        _source = source;
        _count = 0;
 }
        _source = source;
        _count = 0;
 }
@@ -39,6 +44,7 @@ Track::Track(const Track &track) : QObject() {
        this->_count = track._count;
 }
 
        this->_count = track._count;
 }
 
+/// deprecated
 Track::Track(QString source) :QObject() {
        _resolver = new TagResolver(this);
        connect(_resolver, SIGNAL(decoded(Track)), this, SLOT(decoded(Track)));
 Track::Track(QString source) :QObject() {
        _resolver = new TagResolver(this);
        connect(_resolver, SIGNAL(decoded(Track)), this, SLOT(decoded(Track)));
index 385653c..0f9f1b8 100644 (file)
@@ -25,9 +25,9 @@ TrackMetadata::TrackMetadata() {
 }
 
 TrackMetadata::TrackMetadata(QString title = "", QString artist = "", QString album = "", int length = 0) {
 }
 
 TrackMetadata::TrackMetadata(QString title = "", QString artist = "", QString album = "", int length = 0) {
-       _metadata["TITLE"] = title == "" ? "Unknown title" : title.trimmed();
-       _metadata["ARTIST"] = artist == "" ? "Unknown artist" : artist.trimmed();
-       _metadata["ALBUM"] = album == "" ? "Unknown album" : album.trimmed();
+       _metadata["TITLE"] = title == "" ? _UNKNOWN_TRACK_ : title.trimmed();
+       _metadata["ARTIST"] = artist == "" ? _UNKNOWN_ARTIST_ : artist.trimmed();
+       _metadata["ALBUM"] = album == "" ? _UNKNOWN_ALBUM_ : album.trimmed();
        _length = length;
 }
 
        _length = length;
 }
 
@@ -40,7 +40,7 @@ QString TrackMetadata::title() {
        if (_metadata.contains("TITLE")) {
                return _metadata["TITLE"];
        } else {
        if (_metadata.contains("TITLE")) {
                return _metadata["TITLE"];
        } else {
-               return "Unknown title";
+               return _UNKNOWN_TRACK_;
        }
 }
 
        }
 }
 
@@ -48,7 +48,7 @@ QString TrackMetadata::artist() {
        if (_metadata.contains("ARTIST")) {
                return _metadata["ARTIST"];
        } else {
        if (_metadata.contains("ARTIST")) {
                return _metadata["ARTIST"];
        } else {
-               return "Unknown artist";
+               return _UNKNOWN_ARTIST_;
        }
 }
 
        }
 }
 
@@ -56,7 +56,7 @@ QString TrackMetadata::album() {
        if (_metadata.contains("ALBUM")) {
                return _metadata["ALBUM"];
        } else {
        if (_metadata.contains("ALBUM")) {
                return _metadata["ALBUM"];
        } else {
-               return "Unknown album";
+               return _UNKNOWN_ALBUM_;
        }
 }
 
        }
 }
 
index 3148790..3842cf9 100644 (file)
 // represents track metainformation only.
 // now it contains TITLE, ARTIST, ALBUM, GENRE
 
 // represents track metainformation only.
 // now it contains TITLE, ARTIST, ALBUM, GENRE
 
+#define _UNKNOWN_ARTIST_ "Unknown artist"
+#define _UNKNOWN_ALBUM_  "Unknown album"
+#define _UNKNOWN_TRACK_  "Unknown track"
+
 namespace SomePlayer {
        namespace DataObjects {
                class TrackMetadata {
 namespace SomePlayer {
        namespace DataObjects {
                class TrackMetadata {