annotate widgets/AudioRecorderWidget.h @ 282:d9319859a4cf tip

(none)
author benoitrigolleau
date Fri, 31 Oct 2008 11:00:24 +0000
parents 87ccc62d9ea5
children
rev   line source
lbarthelemy@245 1 #ifndef _AUDIO_RECODER_WIDGET_H_
lbarthelemy@245 2 #define _AUDIO_RECODER_WIDGET_H_
lbarthelemy@245 3
lbarthelemy@245 4 #include <QDialog>
lbarthelemy@245 5 #include <QPushButton>
lbarthelemy@245 6 #include <QHBoxLayout>
lbarthelemy@245 7 #include <QDialogButtonBox>
lbarthelemy@245 8 #include <QFrame>
lbarthelemy@245 9
lbarthelemy@245 10
lbarthelemy@245 11 class AudioRecorderWidget : public QDialog
lbarthelemy@245 12 {
lbarthelemy@245 13 Q_OBJECT
lbarthelemy@245 14 public:
lbarthelemy@245 15
lbarthelemy@245 16 AudioRecorderWidget(QWidget *parent = 0);
lbarthelemy@245 17 void setLocation(int x, int y);
lbarthelemy@245 18 void setOpacity(qreal value);
lbarthelemy@245 19
lbarthelemy@245 20 private :
lbarthelemy@245 21 QPushButton *m_okButton;
lbarthelemy@245 22 QPushButton *m_cancelButton;
lbarthelemy@245 23 QDialogButtonBox *m_buttonBox;
lbarthelemy@245 24 QPushButton *m_startButton;
lbarthelemy@245 25 QPushButton *m_stopButton;
lbarthelemy@245 26 QPushButton *m_playButton;
lbarthelemy@245 27
lbarthelemy@245 28 };
lbarthelemy@245 29
lbarthelemy@245 30 #endif