![]() |
Mixxx
|
00001 #ifndef WPREPARECRATESTABLEVIEW_H_ 00002 #define WPREPARECRATESTABLEVIEW_H_ 00003 00004 #include <QTableView> 00005 class TrackCollection; 00006 class QDropEvent; 00007 class QDragMoveEvent; 00008 class QDragEnterEvent; 00009 00010 class WPrepareCratesTableView : public QTableView 00011 { 00012 public: 00013 WPrepareCratesTableView(QWidget* parent, TrackCollection* pTrackCollection); 00014 ~WPrepareCratesTableView(); 00015 00016 virtual void dropEvent(QDropEvent * event); 00017 virtual void dragMoveEvent(QDragMoveEvent * event); 00018 virtual void dragEnterEvent(QDragEnterEvent * event); 00019 private: 00020 TrackCollection* m_pTrackCollection; 00021 00022 }; 00023 00024 #endif