Mercurial > hg > easaier-soundaccess
view widgets/LabelForTimeStrechFilter.h @ 282:d9319859a4cf tip
(none)
author | benoitrigolleau |
---|---|
date | Fri, 31 Oct 2008 11:00:24 +0000 |
parents | a9af42a93073 |
children |
line wrap: on
line source
#ifndef LABEL_FOR_TIME_STRECH_FILTER_H #define LABEL_FOR_TIME_STRECH_FILTER_H #include <QLabel> #include "../sv/main/MainWindow.h" class LabelForTimeStrechFilter : public QLabel { Q_OBJECT public: LabelForTimeStrechFilter(QWidget *parent=0); ~LabelForTimeStrechFilter(); void setType(int); public slots: void setValue(int); void audioSourceInfoAdded(AudioSourceInfoModel *); private : int m_type; AudioSourceInfoModel *m_audioSourceInfoModel; int m_oldValue; }; #endif