Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/widget/wtracktext.cpp

Go to the documentation of this file.
00001 
00002 #include "widget/wtracktext.h"
00003 
00004 WTrackText::WTrackText(QWidget* pParent)
00005         : WLabel(pParent) {
00006 
00007 }
00008 
00009 WTrackText::~WTrackText() {
00010 
00011 }
00012 
00013 void WTrackText::slotTrackLoaded(TrackPointer track) {
00014     m_pLabel->setText(track->getInfo());
00015 }
00016 
00017 void WTrackText::slotTrackUnloaded(TrackPointer track) {
00018     m_pLabel->setText("");
00019 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines