Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/script/trackcontrolevent.cpp

Go to the documentation of this file.
00001 #include "trackcontrolevent.h"
00002 
00003 TrackControlEvent::TrackControlEvent(ScriptEngine* parent, int channel,
00004                 QString path, QDateTime time, int process, int tag) \
00005                 : ScriptControlEvent(time, process, tag) {
00006         m_parent = parent;
00007         m_channel = channel;
00008         m_path = path;
00009 }
00010 
00011 TrackControlEvent::~TrackControlEvent() {
00012 }
00013 
00014 void TrackControlEvent::execute() {
00015         //qDebug(m_path);
00016         m_parent->playTrack(m_channel, m_path);
00017 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines