view widgets/AudioRecorderWidget.h @ 268:ee047fc1a552

if no title is present in the results list, it is replace by "unknown" when a new TIMELINE INFORMATION layer is loaded the sample rate is set up to the main model (WaveFileModel) sample rate.
author lbajardsilogic
date Wed, 25 Jun 2008 09:47:11 +0000
parents 87ccc62d9ea5
children
line wrap: on
line source
#ifndef _AUDIO_RECODER_WIDGET_H_
#define _AUDIO_RECODER_WIDGET_H_

#include <QDialog>
#include <QPushButton>
#include <QHBoxLayout>
#include <QDialogButtonBox>
#include <QFrame>


class AudioRecorderWidget : public QDialog
{
    Q_OBJECT
public:

    AudioRecorderWidget(QWidget *parent = 0);
	void setLocation(int x, int y);
	void setOpacity(qreal value);

private :
	QPushButton *m_okButton;
	QPushButton *m_cancelButton;
	QDialogButtonBox *m_buttonBox;
	QPushButton *m_startButton;
	QPushButton *m_stopButton;
	QPushButton *m_playButton;

};

#endif