defuze.me
Client
|
00001 /************************************************************************** 00002 ** defuze.me Epitech Innovative Project 00003 ** 00004 ** Copyright 2010-2011 00005 ** Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard 00006 ** Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier 00007 ** 00008 ** All rights reserved. 00009 **************************************************************************/ 00010 00011 #ifndef PLAYQUEUELISTVIEW_HPP 00012 #define PLAYQUEUELISTVIEW_HPP 00013 00014 #include <QListView> 00015 #include <QDragMoveEvent> 00016 00019 class PlayQueueListView : public QListView 00020 { 00021 Q_OBJECT 00022 public: 00023 explicit PlayQueueListView(QWidget *parent = 0); 00024 void dragEnterEvent(QDragEnterEvent *event); 00025 void dragMoveEvent(QDragMoveEvent *event); 00026 // void focusInEvent(QFocusEvent *event); 00027 void focusOutEvent(QFocusEvent *event); 00028 00029 signals: 00030 void focusOut(); 00031 00032 public slots: 00033 00034 }; 00035 00036 #endif // PLAYQUEUELISTVIEW_HPP