lbarthelemy@245: #ifndef _AUDIO_RECODER_WIDGET_H_ lbarthelemy@245: #define _AUDIO_RECODER_WIDGET_H_ lbarthelemy@245: lbarthelemy@245: #include lbarthelemy@245: #include lbarthelemy@245: #include lbarthelemy@245: #include lbarthelemy@245: #include lbarthelemy@245: lbarthelemy@245: lbarthelemy@245: class AudioRecorderWidget : public QDialog lbarthelemy@245: { lbarthelemy@245: Q_OBJECT lbarthelemy@245: public: lbarthelemy@245: lbarthelemy@245: AudioRecorderWidget(QWidget *parent = 0); lbarthelemy@245: void setLocation(int x, int y); lbarthelemy@245: void setOpacity(qreal value); lbarthelemy@245: lbarthelemy@245: private : lbarthelemy@245: QPushButton *m_okButton; lbarthelemy@245: QPushButton *m_cancelButton; lbarthelemy@245: QDialogButtonBox *m_buttonBox; lbarthelemy@245: QPushButton *m_startButton; lbarthelemy@245: QPushButton *m_stopButton; lbarthelemy@245: QPushButton *m_playButton; lbarthelemy@245: lbarthelemy@245: }; lbarthelemy@245: lbarthelemy@245: #endif