Lots of work on album grouping in the playlist. Now handles ragging around stuff...
[amarok.git] / src / playlist / PlaylistGraphicsScene.h
blob2452ec10ef374e2ba6c051990df6cfdf75cd658c
1 /***************************************************************************
2 * copyright : (C) 2007 Seb Ruiz <ruiz@kde.org> *
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_PLAYLISTGRAPHICSSCENE_H
10 #define AMAROK_PLAYLISTGRAPHICSSCENE_H
12 #include <QGraphicsScene>
13 #include <QGraphicsSceneDragDropEvent>
15 namespace Playlist
17 class GraphicsScene : public QGraphicsScene
19 public:
20 GraphicsScene( QObject *parent = 0 );
22 protected:
23 virtual void dragLeaveEvent( QGraphicsSceneDragDropEvent *event );
24 virtual void dragEnterEvent( QGraphicsSceneDragDropEvent *event );
25 virtual void dropEvent( QGraphicsSceneDragDropEvent *event );
29 #endif