Ipod Playlist Support (#220)

* Ipod Playlist Support

Copy a whole playlist to the ipod and create an entry in Playlists on
the iPod

* Fix formatting and indentation

Fix indenting and formatting to be consistent
This commit is contained in:
SamTShaw
2019-08-07 23:13:40 +08:00
committed by Jonas Kvinge
parent 4a934c9dab
commit a32010e03b
8 changed files with 74 additions and 5 deletions

View File

@@ -35,6 +35,8 @@
#include <QStandardItem>
#include <QtEvents>
#include <organise/organisedialog.h>
class QModelIndex;
class Application;
class Playlist;
@@ -59,6 +61,7 @@ private slots:
void NewFolderClicked();
void DeleteClicked();
void ItemDoubleClicked(const QModelIndex &index);
void CopyToDevice();
// From the model
void PlaylistPathChanged(int id, const QString &new_path);
@@ -94,6 +97,7 @@ private:
QAction *action_new_folder_;
QAction *action_remove_;
QAction *action_save_playlist_;
QAction *action_copy_to_device_;
PlaylistListModel *model_;
QSortFilterProxyModel *proxy_;
@@ -102,6 +106,8 @@ private:
QIcon padded_play_icon_;
int active_playlist_id_;
std::unique_ptr<OrganiseDialog> organise_dialog_;
};
#endif // PLAYLISTLISTCONTAINER_H