]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/playlist/icon_view.hpp
Qt: reindent
[vlc] / modules / gui / qt4 / components / playlist / icon_view.hpp
index b5cc433afafba4f93e7c887d9e0464066aac0fe9..64996d8febdb27f11b6424e049daf2e18ecb00fd 100644 (file)
@@ -70,6 +70,7 @@ public:
     PlIconView( PLModel *model, QWidget *parent = 0 );
 private:
     void startDrag ( Qt::DropActions supportedActions );
+    void dragMoveEvent ( QDragMoveEvent * event );
 };
 
 class PlListView : public QListView
@@ -80,6 +81,8 @@ public:
     PlListView( PLModel *model, QWidget *parent = 0 );
 private:
     void startDrag ( Qt::DropActions supportedActions );
+    void dragMoveEvent ( QDragMoveEvent * event );
+    void keyPressEvent( QKeyEvent *event );
 };
 
 class PlTreeView : public QTreeView
@@ -88,6 +91,8 @@ class PlTreeView : public QTreeView
 
 private:
     void startDrag ( Qt::DropActions supportedActions );
+    void dragMoveEvent ( QDragMoveEvent * event );
+    void keyPressEvent( QKeyEvent *event );
 };
 
 #endif