![]() |
Mixxx
|
00001 00002 #include "library/trackcollection.h" 00003 #include "widget/wpreparelibrarytableview.h" 00004 00005 WPrepareLibraryTableView::WPrepareLibraryTableView(QWidget* parent, 00006 ConfigObject<ConfigValue>* pConfig, 00007 TrackCollection* pTrackCollection, 00008 ConfigKey headerStateKey, 00009 ConfigKey vScrollBarPosKey) 00010 : WTrackTableView(parent, pConfig, pTrackCollection) 00011 { 00012 setDragDropMode(QAbstractItemView::DragOnly); 00013 setDragEnabled(true); //Always enable drag for now (until we have a model that doesn't support this.) 00014 00015 } 00016 00017 WPrepareLibraryTableView::~WPrepareLibraryTableView() 00018 { 00019 } 00020 00021 void WPrepareLibraryTableView::onSearchStarting() { 00022 } 00023 void WPrepareLibraryTableView::onSearchCleared() { 00024 } 00025 void WPrepareLibraryTableView::onSearch(const QString& text) { 00026 } 00027