00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef PLAYLISTSELECTEDREMOVER_H
00020 #define PLAYLISTSELECTEDREMOVER_H
00021
00022 #include <QList>
00023 #include <QTreeWidgetItem>
00024 #include "playlistmodifierbase.h"
00025
00026 class PlaylistChildThreadsTracker;
00027 class PlaylistEditorDialog;
00028
00029 class playlistSelectedRemover : public PlaylistModifierBase
00030 {
00031 Q_OBJECT
00032 public:
00033 playlistSelectedRemover(PlaylistChildThreadsTracker* parent, PlaylistEditorDialog* playlist);
00034 virtual ~playlistSelectedRemover();
00035 void removeItems(QList<QTreeWidgetItem*> items);
00036 protected:
00037 void run();
00038 private:
00039 QList<QTreeWidgetItem*> iPlaylistItems;
00040 signals:
00041 void RemoveItem(QTreeWidgetItem* item);
00042 };
00043 #endif