Doubleclick something in the playlist makes it start playing if status is stopped

This commit is contained in:
Tobias Rundstrom 2006-02-27 22:40:40 -03:00
parent 479aecb564
commit 09494985d1
3 changed files with 24 additions and 0 deletions

View file

@ -24,6 +24,7 @@ class PlaylistList : public QWidget {
void mediainfoChanged (uint, QHash<QString,QString>);
void playlistChanged (QHash<QString,QString>);
void currentID (uint);
void setStatus (uint);
private:
void paintEvent (QPaintEvent *event);
@ -45,6 +46,7 @@ class PlaylistList : public QWidget {
int getFontH (void);
int m_offset;
int m_active;
uint m_status;
};
class PlaylistItem {