1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/form/settings/avform.cpp

204 lines
6.1 KiB
C++
Raw Normal View History

/*
Copyright (C) 2014 by Project Tox <https://tox.im>
This file is part of qTox, a Qt-based graphical interface for Tox.
This program is libre software: you can redistribute it and/or modify
it under the terms of the GNU 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 COPYING file for more details.
*/
#include "avform.h"
2014-10-06 00:17:01 +08:00
#include "ui_avsettings.h"
2014-10-29 04:21:37 +08:00
#include "src/misc/settings.h"
#include "src/audio.h"
#if defined(__APPLE__) && defined(__MACH__)
#include <OpenAL/al.h>
#include <OpenAL/alc.h>
#else
#include <AL/alc.h>
#include <AL/al.h>
#endif
2014-10-08 20:25:32 +08:00
AVForm::AVForm() :
2014-10-17 23:24:23 +08:00
GenericForm(tr("Audio/Video"), QPixmap(":/img/settings/av.png"))
{
2014-10-06 00:17:01 +08:00
bodyUI = new Ui::AVSettings;
bodyUI->setupUi(this);
#ifdef QTOX_FILTER_AUDIO
bodyUI->filterAudio->setChecked(Settings::getInstance().getFilterAudio());
#else
bodyUI->filterAudio->setDisabled(true);
#endif
connect(Camera::getInstance(), &Camera::propProbingFinished, this, &AVForm::onPropProbingFinished);
connect(Camera::getInstance(), &Camera::resolutionProbingFinished, this, &AVForm::onResProbingFinished);
2014-10-29 04:21:37 +08:00
auto qcomboboxIndexChanged = (void(QComboBox::*)(const QString&)) &QComboBox::currentIndexChanged;
connect(bodyUI->inDevCombobox, qcomboboxIndexChanged, this, &AVForm::onInDevChanged);
connect(bodyUI->outDevCombobox, qcomboboxIndexChanged, this, &AVForm::onOutDevChanged);
connect(bodyUI->filterAudio, SIGNAL(toggled(bool)), this, SLOT(onFilterAudioToggled(bool)));
2014-11-25 00:17:34 +08:00
connect(bodyUI->rescanButton, &QPushButton::clicked, this, [=](){getAudioInDevices(); getAudioOutDevices();});
}
AVForm::~AVForm()
{
2014-10-06 00:17:01 +08:00
delete bodyUI;
}
2014-10-08 21:48:02 +08:00
void AVForm::present()
{
getAudioOutDevices();
getAudioInDevices();
2014-10-15 20:46:01 +08:00
bodyUI->CamVideoSurface->setSource(Camera::getInstance());
Camera::getInstance()->probeProp(Camera::SATURATION);
Camera::getInstance()->probeProp(Camera::CONTRAST);
Camera::getInstance()->probeProp(Camera::BRIGHTNESS);
Camera::getInstance()->probeProp(Camera::HUE);
2014-10-08 21:48:02 +08:00
Camera::getInstance()->probeResolutions();
2014-10-08 20:25:32 +08:00
}
2014-10-07 22:59:21 +08:00
void AVForm::on_ContrastSlider_sliderMoved(int position)
{
2014-10-08 20:25:32 +08:00
Camera::getInstance()->setProp(Camera::CONTRAST, position / 100.0);
}
2014-10-07 22:59:21 +08:00
void AVForm::on_SaturationSlider_sliderMoved(int position)
{
2014-10-08 20:25:32 +08:00
Camera::getInstance()->setProp(Camera::SATURATION, position / 100.0);
}
2014-10-07 22:59:21 +08:00
void AVForm::on_BrightnessSlider_sliderMoved(int position)
{
2014-10-08 20:25:32 +08:00
Camera::getInstance()->setProp(Camera::BRIGHTNESS, position / 100.0);
2014-10-07 22:59:21 +08:00
}
void AVForm::on_HueSlider_sliderMoved(int position)
{
2014-10-08 20:25:32 +08:00
Camera::getInstance()->setProp(Camera::HUE, position / 100.0);
2014-10-07 22:59:21 +08:00
}
void AVForm::on_videoModescomboBox_activated(int index)
{
Camera::getInstance()->setResolution(bodyUI->videoModescomboBox->itemData(index).toSize());
}
void AVForm::onPropProbingFinished(Camera::Prop prop, double val)
2014-10-07 22:59:21 +08:00
{
switch (prop)
{
case Camera::BRIGHTNESS:
bodyUI->BrightnessSlider->setValue(val*100);
break;
case Camera::CONTRAST:
bodyUI->ContrastSlider->setValue(val*100);
break;
case Camera::SATURATION:
bodyUI->SaturationSlider->setValue(val*100);
break;
case Camera::HUE:
bodyUI->HueSlider->setValue(val*100);
break;
default:
break;
}
}
void AVForm::onResProbingFinished(QList<QSize> res)
{
bodyUI->videoModescomboBox->clear();
for (QSize r : res)
bodyUI->videoModescomboBox->addItem(QString("%1x%2").arg(QString::number(r.width()),QString::number(r.height())), r);
2014-10-07 22:59:21 +08:00
bodyUI->videoModescomboBox->setCurrentIndex(bodyUI->videoModescomboBox->count()-1);
}
2014-10-15 20:46:01 +08:00
void AVForm::hideEvent(QHideEvent *)
{
bodyUI->CamVideoSurface->setSource(nullptr);
}
void AVForm::getAudioInDevices()
{
2014-10-29 04:21:37 +08:00
QString settingsInDev = Settings::getInstance().getInDev();
bool inDevFound = false;
bodyUI->inDevCombobox->clear();
const ALchar *pDeviceList = alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER);
if (pDeviceList)
{
while (*pDeviceList)
{
int len = strlen(pDeviceList);
2014-10-29 04:21:37 +08:00
QString inDev = QString::fromLocal8Bit(pDeviceList,len);
bodyUI->inDevCombobox->addItem(inDev);
if (settingsInDev == inDev)
{
bodyUI->inDevCombobox->setCurrentIndex(bodyUI->inDevCombobox->count()-1);
inDevFound = true;
}
pDeviceList += len+1;
}
}
2014-10-29 04:21:37 +08:00
if (!inDevFound)
Settings::getInstance().setInDev(bodyUI->inDevCombobox->itemText(0));
}
void AVForm::getAudioOutDevices()
{
2014-10-29 04:21:37 +08:00
QString settingsOutDev = Settings::getInstance().getOutDev();
bool outDevFound = false;
bodyUI->outDevCombobox->clear();
const ALchar *pDeviceList;
if (alcIsExtensionPresent(NULL, "ALC_ENUMERATE_ALL_EXT") != AL_FALSE)
pDeviceList = alcGetString(NULL, ALC_ALL_DEVICES_SPECIFIER);
else
pDeviceList = alcGetString(NULL, ALC_DEVICE_SPECIFIER);
if (pDeviceList)
{
while (*pDeviceList)
{
int len = strlen(pDeviceList);
2014-10-29 04:21:37 +08:00
QString outDev = QString::fromLocal8Bit(pDeviceList,len);
bodyUI->outDevCombobox->addItem(outDev);
if (settingsOutDev == outDev)
{
bodyUI->outDevCombobox->setCurrentIndex(bodyUI->outDevCombobox->count()-1);
outDevFound = true;
}
pDeviceList += len+1;
}
}
2014-10-29 04:21:37 +08:00
if (!outDevFound)
Settings::getInstance().setOutDev(bodyUI->outDevCombobox->itemText(0));
}
void AVForm::onInDevChanged(const QString &deviceDescriptor)
{
Settings::getInstance().setInDev(deviceDescriptor);
Audio::openInput(deviceDescriptor);
2014-10-29 04:21:37 +08:00
}
void AVForm::onOutDevChanged(const QString& deviceDescriptor)
{
Settings::getInstance().setOutDev(deviceDescriptor);
Audio::openOutput(deviceDescriptor);
}
2014-12-17 08:05:13 +08:00
void AVForm::onFilterAudioToggled(bool filterAudio)
{
Settings::getInstance().setFilterAudio(filterAudio);
}