Added support for the shade/close buttons on the playlist, and changed the way

that togglePL works a bit to play nicer.
This commit is contained in:
Chris Gilbert 2006-03-12 02:19:45 +01:00 committed by Tobias Rundstrom
parent 13b9c47523
commit 0c5593076a
7 changed files with 49 additions and 8 deletions

View file

@ -31,6 +31,7 @@ class MainDisplay : public SkinDisplay
public:
MainDisplay (QWidget *parent);
~MainDisplay ();
ToggleButton *GetPls() {return m_pls;};
TextScroller *m_text;
NumberDisplay *m_number;
@ -49,6 +50,7 @@ class MainDisplay : public SkinDisplay
void setStatus (uint status);
void setPlaytime (uint time);
void setMediainfo (QHash<QString,QString>);
void togglePL(void);
protected:
void SetupPushButtons (void);
@ -66,6 +68,8 @@ class MainDisplay : public SkinDisplay
ToggleButton *m_shuffle;
ToggleButton *m_repeat;
MainWindow *m_mw;
};
#endif