Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/widget/wtrackproperty.h

Go to the documentation of this file.
00001 #ifndef WTRACKPROPERTY_H
00002 #define WTRACKPROPERTY_H
00003 
00004 #include "widget/wlabel.h"
00005 #include "trackinfoobject.h"
00006 
00007 class WTrackProperty : public WLabel {
00008     Q_OBJECT
00009   public:
00010     WTrackProperty(QWidget* pParent);
00011     virtual ~WTrackProperty();
00012 
00013     void setup(QDomNode node);
00014 
00015   public slots:
00016     void slotTrackLoaded(TrackPointer track);
00017     void slotTrackUnloaded(TrackPointer track);
00018 
00019   private slots:
00020     void updateLabel(TrackInfoObject*);
00021 
00022   private:
00023     TrackPointer m_pCurrentTrack;
00024     QString m_property;
00025 };
00026 
00027 
00028 #endif /* WTRACKPROPERTY_H */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines