view widgets/LabelForTimeStrechFilter.h @ 276:a9af42a93073

New property box for time stretching some labels updated
author benoitrigolleau
date Wed, 15 Oct 2008 16:18:18 +0000
parents
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