]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/playlist.hpp
Qt4 - Fix the non-updating MediaInfo bug, introduced by my mistake.
[vlc] / modules / gui / qt4 / dialogs / playlist.hpp
index 13e109afd0d5ee01f5782868265cce225a201ee5..2f0724ef7b11336c4e47c273e07c6bbff2fb1da6 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _PLAYLIST_DIALOG_H_
 #define _PLAYLIST_DIALOG_H_
 
-#include <QModelIndex>
 #include "util/qvlcframe.hpp"
 
+#include <QModelIndex>
+
 class QSignalMapper;
 class PLSelector;
 class PLPanel;
@@ -48,16 +50,19 @@ public:
 private:
 
     void createPlMenuBar( QMenuBar *bar, intf_thread_t *p_intf );
-    QMenu * SDMenu();
     PlaylistDialog( intf_thread_t * );
+
+    void dropEvent( QDropEvent *);
+    void dragEnterEvent( QDragEnterEvent * );
+    void dragMoveEvent( QDragMoveEvent * );
+    void dragLeaveEvent( QDragLeaveEvent * );
+
     static PlaylistDialog *instance;
 
-    QSignalMapper *SDMapper;
     PLSelector *selector;
     PLPanel *rightPanel;
 private slots:
     void dock();
-    void SDMenuAction( QString );
 };