Index: mythmusic/mythmusic/playbackbox.cpp
===================================================================
--- mythmusic/mythmusic/playbackbox.cpp	(revision 14675)
+++ mythmusic/mythmusic/playbackbox.cpp	(working copy)
@@ -628,6 +628,10 @@
                                   SLOT(byGenre()));
         playlist_popup->addButton(tr("Tracks from current Year"), this,
                                   SLOT(byYear()));
+        playlist_popup->addButton(tr("Add playing to active play queue"), this,
+                                  SLOT(addPlayingtoActive()));
+        playlist_popup->addButton(tr("Add selected to active play queue"), this,
+                                  SLOT(addSelectedtoActive()));
     }
     
     playlist_popup->ShowPopup(this, SLOT(closePlaylistPopup()));
@@ -750,6 +754,33 @@
     updatePlaylistFromQuickPlaylist(whereClause);
 }
 
+void PlaybackBoxMusic::addPlayingtoActive()
+// adds the currently playing track to the active play queue
+{
+    if (!playlist_popup || !curMeta)
+        return;
+
+    QString value = formattedFieldValue(curMeta->ID());
+    QString whereClause = "WHERE song_id = " + value;
+    closePlaylistPopup();
+    updatePlaylistFromQuickPlaylist(whereClause);
+}
+
+void PlaybackBoxMusic::addSelectedtoActive()
+// adds the currently selected track to the active play queue
+{
+    if (!playlist_popup || !curMeta)
+        return;
+
+    GenericTree *node = music_tree_list->getCurrentNode();
+    Metadata *selectedMeta = all_music->getMetadata( node->getInt() );
+
+    QString value = formattedFieldValue(selectedMeta->ID());
+    QString whereClause = "WHERE song_id = " + value;
+    closePlaylistPopup();
+    updatePlaylistFromQuickPlaylist(whereClause);
+}
+
 void PlaybackBoxMusic::updatePlaylistFromQuickPlaylist(QString whereClause)
 {
     doUpdatePlaylist(whereClause);
Index: mythmusic/mythmusic/playbackbox.h
===================================================================
--- mythmusic/mythmusic/playbackbox.h	(revision 14675)
+++ mythmusic/mythmusic/playbackbox.h	(working copy)
@@ -89,6 +89,8 @@
     void byAlbum();
     void byGenre();
     void byYear();
+    void addPlayingtoActive();
+    void addSelectedtoActive();
     void fromCD();
     void showSmartPlaylistDialog();
     void showSearchDialog();
