/******************************************************************************* * plugins/VOIP/gui/AudioInputConfig.h * * * * Copyright (C) 2005-2010 Thorvald Natvig * * Copyright (C) 2012 by Retroshare Team * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with this program. If not, see . * * * *******************************************************************************/ #pragma once #include #include #include "retroshare-gui/configpage.h" #include "SpeexProcessor.h" #include "VideoProcessor.h" #include "AudioStats.h" #include "gui/common/RSGraphWidget.h" class voipGraphSource ; class voipGraph: public RSGraphWidget { public: voipGraph(QWidget *parent) ; voipGraphSource *voipSource() const { return _src ; } void setVoipSource(voipGraphSource *gs) ; private: voipGraphSource *_src ; }; #include "ui_VOIPConfigPanel.h" class VOIPConfigPanel : public ConfigPage { Q_OBJECT private: Ui::AudioInput ui; QAudioInput* inputAudioDevice; QtSpeex::SpeexInputProcessor* inputAudioProcessor; AudioBar* abSpeech; //VideoDecoder *videoDecoder ; //VideoEncoder *videoEncoder ; QVideoInputDevice *videoInput ; VideoProcessor *videoProcessor ; bool loaded; QString currentCameraDescription; voipGraphSource *graph_source ; protected: QTimer *qtTick; void clearPipeline(); public: /** Default Constructor */ VOIPConfigPanel(QWidget * parent = 0, Qt::WindowFlags flags = 0); /** Default Destructor */ ~VOIPConfigPanel(); /** Saves the changes on this page */ virtual bool save(QString &errmsg)override ; /** Loads the settings for this page */ virtual void load()override ; virtual QPixmap iconPixmap() const override { return QPixmap(":/images/talking_on.svg") ; } virtual QString pageName() const override { return tr("VOIP") ; } virtual QString helpText() const override { return ""; } virtual void showEvent(QShowEvent *) override; virtual void hideEvent(QHideEvent *event) override; private slots: void on_changedCurrentInputDevice(int i); void checkAvailableCameras(); void updateAvailableBW(double r); void loadSettings(); void emptyBuffer(); void togglePreview(bool) ; void on_qsTransmitHold_valueChanged(int v); void on_qsAmp_valueChanged(int v); void on_qsNoise_valueChanged(int v); void on_qcbTransmit_currentIndexChanged(int v); void on_Tick_timeout(); void on_qpbAudioWizard_clicked(); void on_qcbEchoCancel_clicked(); };