mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
224 lines
6.8 KiB
224 lines
6.8 KiB
/* |
|
Copyright © 2015-2018 by The qTox Project Contributors |
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox. |
|
|
|
qTox 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. |
|
|
|
qTox 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 General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with qTox. If not, see <http://www.gnu.org/licenses/>. |
|
*/ |
|
|
|
#include "genericnetcamview.h" |
|
|
|
#include <QApplication> |
|
#include <QBoxLayout> |
|
#include <QDesktopWidget> |
|
#include <QKeyEvent> |
|
#include <QPushButton> |
|
#include <QVariant> |
|
|
|
namespace |
|
{ |
|
const auto BTN_STATE_NONE = QVariant("none"); |
|
const auto BTN_STATE_RED = QVariant("red"); |
|
const int BTN_PANEL_HEIGHT = 55; |
|
const int BTN_PANEL_WIDTH = 250; |
|
const auto BTN_STYLE_SHEET_PATH = QStringLiteral(":/ui/chatForm/fullScreenButtons.css"); |
|
} |
|
|
|
GenericNetCamView::GenericNetCamView(QWidget* parent) |
|
: QWidget(parent) |
|
{ |
|
verLayout = new QVBoxLayout(this); |
|
setWindowTitle(tr("Tox video")); |
|
|
|
buttonLayout = new QHBoxLayout(); |
|
|
|
toggleMessagesButton = new QPushButton(); |
|
enterFullScreenButton = new QPushButton(); |
|
enterFullScreenButton->setText(tr("Full Screen")); |
|
|
|
buttonLayout->addStretch(); |
|
buttonLayout->addWidget(toggleMessagesButton); |
|
buttonLayout->addWidget(enterFullScreenButton); |
|
|
|
connect(toggleMessagesButton, &QPushButton::clicked, this, &GenericNetCamView::showMessageClicked); |
|
connect(enterFullScreenButton, &QPushButton::clicked, this, &GenericNetCamView::toggleFullScreen); |
|
|
|
verLayout->addLayout(buttonLayout); |
|
verLayout->setContentsMargins(0, 0, 0, 0); |
|
|
|
setShowMessages(false); |
|
|
|
setStyleSheet("NetCamView { background-color: #c1c1c1; }"); |
|
buttonPanel = new QFrame(this); |
|
buttonPanel->setStyleSheet(Style::getStylesheet(BTN_STYLE_SHEET_PATH)); |
|
buttonPanel->setGeometry(0, 0, BTN_PANEL_WIDTH, BTN_PANEL_HEIGHT); |
|
|
|
QHBoxLayout* buttonPanelLayout = new QHBoxLayout(buttonPanel); |
|
buttonPanelLayout->setContentsMargins(20, 0, 20, 0); |
|
|
|
videoPreviewButton = createButton("videoPreviewButton", "none"); |
|
videoPreviewButton->setToolTip(tr("Toggle video preview")); |
|
|
|
volumeButton = createButton("volButtonFullScreen", "none"); |
|
volumeButton->setToolTip(tr("Mute audio")); |
|
|
|
microphoneButton = createButton("micButtonFullScreen", "none"); |
|
microphoneButton->setToolTip(tr("Mute microphone")); |
|
|
|
endVideoButton = createButton("videoButtonFullScreen", "none"); |
|
endVideoButton->setToolTip(tr("End video call")); |
|
|
|
exitFullScreenButton = createButton("exitFullScreenButton", "none"); |
|
exitFullScreenButton->setToolTip(tr("Exit full screen")); |
|
|
|
connect(videoPreviewButton, &QPushButton::clicked, this, &GenericNetCamView::toggleVideoPreview); |
|
connect(volumeButton, &QPushButton::clicked, this, &GenericNetCamView::volMuteToggle); |
|
connect(microphoneButton, &QPushButton::clicked, this, &GenericNetCamView::micMuteToggle); |
|
connect(endVideoButton, &QPushButton::clicked, this, &GenericNetCamView::endVideoCall); |
|
connect(exitFullScreenButton, &QPushButton::clicked, this, &GenericNetCamView::toggleFullScreen); |
|
|
|
buttonPanelLayout->addStretch(); |
|
buttonPanelLayout->addWidget(videoPreviewButton); |
|
buttonPanelLayout->addWidget(volumeButton); |
|
buttonPanelLayout->addWidget(microphoneButton); |
|
buttonPanelLayout->addWidget(endVideoButton); |
|
buttonPanelLayout->addWidget(exitFullScreenButton); |
|
buttonPanelLayout->addStretch(); |
|
} |
|
|
|
QSize GenericNetCamView::getSurfaceMinSize() |
|
{ |
|
QSize surfaceSize = videoSurface->minimumSize(); |
|
QSize buttonSize = toggleMessagesButton->size(); |
|
QSize panelSize(0, 45); |
|
|
|
return surfaceSize + buttonSize + panelSize; |
|
} |
|
|
|
void GenericNetCamView::setShowMessages(bool show, bool notify) |
|
{ |
|
if (!show) { |
|
toggleMessagesButton->setText(tr("Hide Messages")); |
|
toggleMessagesButton->setIcon(QIcon()); |
|
return; |
|
} |
|
|
|
toggleMessagesButton->setText(tr("Show Messages")); |
|
|
|
if (notify) { |
|
toggleMessagesButton->setIcon(QIcon(":/ui/chatArea/info.svg")); |
|
} |
|
} |
|
|
|
void GenericNetCamView::toggleFullScreen() |
|
{ |
|
if (isFullScreen()) { |
|
exitFullScreen(); |
|
} else { |
|
enterFullScreen(); |
|
} |
|
} |
|
|
|
void GenericNetCamView::enterFullScreen() |
|
{ |
|
setWindowFlags(Qt::Window | Qt::CustomizeWindowHint | Qt::FramelessWindowHint); |
|
showFullScreen(); |
|
enterFullScreenButton->hide(); |
|
toggleMessagesButton->hide(); |
|
|
|
const auto screenSize = QApplication::desktop()->screenGeometry(this); |
|
buttonPanel->setGeometry((screenSize.width() / 2) - buttonPanel->width() / 2, |
|
screenSize.height() - BTN_PANEL_HEIGHT - 25, BTN_PANEL_WIDTH, BTN_PANEL_HEIGHT); |
|
buttonPanel->show(); |
|
buttonPanel->activateWindow(); |
|
buttonPanel->raise(); |
|
} |
|
|
|
void GenericNetCamView::exitFullScreen() |
|
{ |
|
setWindowFlags(Qt::Widget); |
|
showNormal(); |
|
buttonPanel->hide(); |
|
enterFullScreenButton->show(); |
|
toggleMessagesButton->show(); |
|
} |
|
|
|
void GenericNetCamView::endVideoCall() |
|
{ |
|
toggleFullScreen(); |
|
emit videoCallEnd(); |
|
} |
|
|
|
void GenericNetCamView::toggleVideoPreview() |
|
{ |
|
toggleButtonState(videoPreviewButton); |
|
emit videoPreviewToggle(); |
|
} |
|
|
|
QPushButton *GenericNetCamView::createButton(const QString& name, const QString& state) |
|
{ |
|
QPushButton* btn = new QPushButton(); |
|
btn->setAttribute(Qt::WA_LayoutUsesWidgetRect); |
|
btn->setObjectName(name); |
|
btn->setProperty("state", QVariant(state)); |
|
btn->setStyleSheet(Style::getStylesheet(BTN_STYLE_SHEET_PATH)); |
|
|
|
return btn; |
|
} |
|
|
|
void GenericNetCamView::updateMuteVolButton(bool isMuted) |
|
{ |
|
updateButtonState(volumeButton, !isMuted); |
|
} |
|
|
|
void GenericNetCamView::updateMuteMicButton(bool isMuted) |
|
{ |
|
updateButtonState(microphoneButton, !isMuted); |
|
} |
|
|
|
void GenericNetCamView::toggleButtonState(QPushButton* btn) |
|
{ |
|
if (btn->property("state") == BTN_STATE_RED) { |
|
btn->setProperty("state", BTN_STATE_NONE); |
|
} else { |
|
btn->setProperty("state", BTN_STATE_RED); |
|
} |
|
|
|
btn->setStyleSheet(Style::getStylesheet(BTN_STYLE_SHEET_PATH)); |
|
} |
|
|
|
void GenericNetCamView::updateButtonState(QPushButton* btn, bool active) |
|
{ |
|
if (active) { |
|
btn->setProperty("state", BTN_STATE_NONE); |
|
} else { |
|
btn->setProperty("state", BTN_STATE_RED); |
|
} |
|
|
|
btn->setStyleSheet(Style::getStylesheet(BTN_STYLE_SHEET_PATH)); |
|
} |
|
|
|
void GenericNetCamView::keyPressEvent(QKeyEvent *event) |
|
{ |
|
int key = event->key(); |
|
if (key == Qt::Key_Escape && isFullScreen()) { |
|
exitFullScreen(); |
|
} |
|
} |
|
|
|
void GenericNetCamView::closeEvent(QCloseEvent *event) |
|
{ |
|
exitFullScreen(); |
|
event->ignore(); |
|
}
|
|
|