Mercurial > hg > easaier-soundaccess
view widgets/LabelForTimeStrechFilter.h @ 277:960531792d88
Equalizer property box is a bit modify
author | benoitrigolleau |
---|---|
date | Thu, 16 Oct 2008 09:13:21 +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