Just as a relaxing sunday evening project, try to create a simple, alternate playlist...
[amarok.git] / src / playlist / PlaylistWidget.h
blobbc7b071e2b5a8b55ea72bf51d864ca8df6f7c0f2
1 /***************************************************************************
2 * copyright : (C) 2007 Ian Monroe <ian@monroe.nu> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License version 2 *
6 * as published by the Free Software Foundation. *
7 ***************************************************************************/
9 #ifndef AMAROK_PLAYLISTWIDGET_H
10 #define AMAROK_PLAYLISTWIDGET_H
12 #include <QStackedWidget>
13 #include <QWidget>
15 namespace Playlist {
17 class Widget : public QWidget
19 Q_OBJECT
20 public:
21 Widget( QWidget* parent );
23 public slots:
24 void switchView();
26 private:
27 QStackedWidget *m_stackedWidget;
31 #endif