2014-09-15 18:45:59 +08:00
|
|
|
/*
|
|
|
|
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-09-30 17:44:27 +08:00
|
|
|
#include "widget/camera.h"
|
2014-10-06 00:17:01 +08:00
|
|
|
#include "ui_avsettings.h"
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2014-10-06 00:17:01 +08:00
|
|
|
AVForm::AVForm(Camera* cam) :
|
|
|
|
GenericForm(tr("Audio/Video settings"), QPixmap(":/img/settings/av.png"))
|
2014-09-15 18:45:59 +08:00
|
|
|
{
|
2014-10-06 00:17:01 +08:00
|
|
|
bodyUI = new Ui::AVSettings;
|
|
|
|
bodyUI->setupUi(this);
|
2014-09-30 17:44:27 +08:00
|
|
|
|
2014-10-06 00:17:01 +08:00
|
|
|
camView = new SelfCamView(cam, this);
|
|
|
|
bodyUI->videoGroup->layout()->addWidget(camView);
|
2014-09-30 17:44:27 +08:00
|
|
|
|
2014-10-07 20:17:35 +08:00
|
|
|
auto modes = cam->getVideoModes();
|
|
|
|
for (Camera::VideoMode m : modes)
|
|
|
|
{
|
|
|
|
bodyUI->videoModescomboBox->addItem(QString("%1x%2").arg(QString::number(m.res.width())
|
|
|
|
,QString::number(m.res.height())));
|
|
|
|
}
|
2014-09-15 18:45:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AVForm::~AVForm()
|
|
|
|
{
|
2014-10-06 00:17:01 +08:00
|
|
|
delete bodyUI;
|
2014-09-15 18:45:59 +08:00
|
|
|
}
|