1 /***************************************************************************
2 * copyright : (C) 2007 Seb Ruiz <ruiz@kde.org> *
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>
17 class GraphicsScene
: public QGraphicsScene
20 GraphicsScene( QObject
*parent
= 0 );
23 virtual void dragLeaveEvent( QGraphicsSceneDragDropEvent
*event
);
24 virtual void dragEnterEvent( QGraphicsSceneDragDropEvent
*event
);
25 virtual void dropEvent( QGraphicsSceneDragDropEvent
*event
);