From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- khotkeys/kcontrol/voicerecorder.h | 73 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 khotkeys/kcontrol/voicerecorder.h (limited to 'khotkeys/kcontrol/voicerecorder.h') diff --git a/khotkeys/kcontrol/voicerecorder.h b/khotkeys/kcontrol/voicerecorder.h new file mode 100644 index 000000000..579f53893 --- /dev/null +++ b/khotkeys/kcontrol/voicerecorder.h @@ -0,0 +1,73 @@ +/**************************************************************************** + + KHotKeys + + Copyright (C) 2005 Olivier Goffgart + + Distributed under the terms of the GNU General Public License version 2. + +****************************************************************************/ + +#ifndef VOICE_RECORDER_H +#define VOICE_RECORDER_H + +#include +#include "ui/voice_input_widget_ui.h" +#include + +#include "sound.h" +class QMouseEvent; +class KAudioRecordStream ; +class KArtsServer; +class KTempFile; +class KLibrary; + +namespace KHotKeys +{ + + class SoundRecorder; + class Voice_trigger; + +class VoiceRecorder : public Voice_input_widget_ui + { + Q_OBJECT + + public: + VoiceRecorder(const Sound& sound_P, const QString &voiceId, QWidget *parent, const char *name); + ~VoiceRecorder(); + + Sound sound() const; + + enum State { sNotModified , sIncorrect, sModified }; + + inline State state() const + { + return _state; + } + + static bool init( KLibrary* lib ); + typedef void (*arts_play_fun)( const QString& file ); + + protected slots: + void slotStopPressed(); + void slotRecordPressed(); + void slotPlayPressed(); + + signals: + void recorded(bool); + private slots: + void slotSoundRecorded(const Sound& sound); + bool drawSound(); + + private: + SoundRecorder *_recorder; + Sound _sound; + State _state; + KTempFile *_tempFile; + QString _voiceId; + static arts_play_fun arts_play; + }; + +} // namespace KHotKeys + +#endif -- cgit v1.2.1