blob: 2bed530faa3d5c31d555ed9c9201bfbdae83fa69 [file] [log] [blame]
/***************************************************************************
* Copyright (C) 2015-2017 by Savoir-faire Linux *
* Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
* *
* This program is free 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 *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
**************************************************************************/
#pragma once
#include <QWidget>
#include <QMenu>
#include <QTimer>
namespace Ui {
class VideoOverlay;
}
class VideoOverlay : public QWidget
{
Q_OBJECT
public:
explicit VideoOverlay(QWidget* parent = 0);
~VideoOverlay();
public:
void setName(const QString& name);
void callStarted(const std::string & callId);
inline bool isDialogVisible(){ return dialogVisible_; };
void toggleContextButtons(bool visible);
void setVideoMuteVisibility(bool visible);
bool shouldShowOverlay();
void simulateShowChatview(bool checked);
bool getShowChatView();
//UI SLOTS
private slots:
void setTime();
void on_hangupButton_clicked();
void on_chatButton_toggled(bool checked);
void on_holdButton_clicked();
void on_noMicButton_clicked();
void on_noVideoButton_clicked();
void on_recButton_clicked();
private:
Ui::VideoOverlay* ui;
bool dialogVisible_ = false;
QTimer* oneSecondTimer_;
std::string callId_;
signals:
void setChatVisibility(bool visible);
};