Improved file extension handling for icons and minor cosmetic fixes.
[vlc-remote] / vlcplaylistelementsimple.h
index b3369b6..fc9d1bd 100644 (file)
 
 struct VlcPlayListElementSimple {
     int id; // vlc playlist item id
-    int depth; //
+    int depth; // how deep in the tree
+    bool playing; // currently playing item
     QString type; // node or leaf
-    //QString path; // Only used for leaf - repeat name otherwise
+    QString extension; // file extension
+    QString path; // Only used for leaf - repeat name otherwise
     QString name; // name or metadata title if available
 } ;