Revert previous commit, was incorrect
[amarok.git] / src / playlist / PlaylistGraphicsScene.h
blob044207e466a8b6127fec0b044ab1169d59242b32
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