Mercurial > hg > easaier-soundaccess
view widgets/AudioRecorderWidget.h @ 257:057856cf81a2
reformat the InfoWidget and integrate the related media query
author | lbajardsilogic |
---|---|
date | Wed, 18 Jun 2008 10:38:39 +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