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

149 lines
4.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"
#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);
getAudioOutDevices();
getAudioInDevices();
connect(Camera::getInstance(), &Camera::propProbingFinished, this, &AVForm::onPropProbingFinished);
connect(Camera::getInstance(), &Camera::resolutionProbingFinished, this, &AVForm::onResProbingFinished);
}
AVForm::~AVForm()
{
2014-10-06 00:17:01 +08:00
delete bodyUI;
}
2014-10-08 21:48:02 +08:00
void AVForm::present()
{
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()
{
const ALchar *pDeviceList = alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER);
if (pDeviceList)
{
while (*pDeviceList)
{
int len = strlen(pDeviceList);
bodyUI->inDevCombobox->addItem(QString::fromLocal8Bit(pDeviceList,len));
pDeviceList += len+1;
}
}
}
void AVForm::getAudioOutDevices()
{
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);
bodyUI->outDevCombobox->addItem(QString::fromLocal8Bit(pDeviceList,len));
pDeviceList += len+1;
}
}
}