mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
95 lines
3.0 KiB
C++
95 lines
3.0 KiB
C++
#include "callconfirmwidget.h"
|
|
#include "gui.h"
|
|
#include <assert.h>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include <QDialogButtonBox>
|
|
#include <QPainter>
|
|
#include <QPaintEvent>
|
|
#include <QRect>
|
|
#include <QPalette>
|
|
|
|
CallConfirmWidget::CallConfirmWidget(const QWidget *Anchor) :
|
|
QWidget(GUI::getMainWidget()), anchor(Anchor),
|
|
rectW{120}, rectH{85},
|
|
spikeW{30}, spikeH{15},
|
|
roundedFactor{20},
|
|
rectRatio{static_cast<qreal>(rectH)/static_cast<qreal>(rectW)}
|
|
{
|
|
setWindowFlags(Qt::SubWindow);
|
|
|
|
QPalette palette;
|
|
palette.setColor(QPalette::WindowText, Qt::white);
|
|
setPalette(palette);
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
QLabel *callLabel = new QLabel(QObject::tr("Incoming call..."), this);
|
|
callLabel->setAlignment(Qt::AlignHCenter);
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(Qt::Horizontal, this);
|
|
QPushButton *accept = new QPushButton(this), *reject = new QPushButton(this);
|
|
accept->setFlat(true);
|
|
reject->setFlat(true);
|
|
accept->setStyleSheet("QPushButton{border:none;}");
|
|
reject->setStyleSheet("QPushButton{border:none;}");
|
|
accept->setIcon(QIcon(":/ui/acceptCall/acceptCall.png"));
|
|
reject->setIcon(QIcon(":/ui/rejectCall/rejectCall.png"));
|
|
accept->setIconSize(accept->size());
|
|
reject->setIconSize(reject->size());
|
|
|
|
buttonBox->addButton(accept, QDialogButtonBox::AcceptRole);
|
|
buttonBox->addButton(reject, QDialogButtonBox::RejectRole);
|
|
|
|
connect(buttonBox, &QDialogButtonBox::accepted, this, &CallConfirmWidget::accepted);
|
|
connect(buttonBox, &QDialogButtonBox::rejected, this, &CallConfirmWidget::rejected);
|
|
|
|
connect(&GUI::getInstance(), &GUI::resized, this, &CallConfirmWidget::reposition);
|
|
|
|
layout->setMargin(12);
|
|
layout->addSpacing(spikeH);
|
|
layout->addWidget(callLabel);
|
|
layout->addWidget(buttonBox);
|
|
|
|
setFixedSize(rectW,rectH+spikeH);
|
|
reposition();
|
|
}
|
|
|
|
void CallConfirmWidget::reposition()
|
|
{
|
|
QWidget* w = GUI::getMainWidget();
|
|
QPoint pos = anchor->mapToGlobal({(anchor->width()-rectW)/2,anchor->height()})-w->mapToGlobal({0,0});
|
|
|
|
// We don't want the widget to overflow past the right of the screen
|
|
int xOverflow=0;
|
|
if (pos.x() + rectW > w->width())
|
|
xOverflow = pos.x() + rectW - w->width();
|
|
pos.rx() -= xOverflow;
|
|
|
|
mainRect = {0,spikeH,rectW,rectH};
|
|
brush = QBrush(QColor(65,65,65));
|
|
spikePoly = QPolygon({{(rectW-spikeW)/2+xOverflow,spikeH},
|
|
{rectW/2+xOverflow,0},
|
|
{(rectW+spikeW)/2+xOverflow,spikeH}});
|
|
|
|
move(pos);
|
|
update();
|
|
}
|
|
|
|
void CallConfirmWidget::paintEvent(QPaintEvent*)
|
|
{
|
|
QPainter painter(this);
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
|
painter.setBrush(brush);
|
|
painter.setPen(Qt::NoPen);
|
|
|
|
painter.drawRoundRect(mainRect, roundedFactor*rectRatio, roundedFactor);
|
|
painter.drawPolygon(spikePoly);
|
|
}
|
|
|
|
void CallConfirmWidget::showEvent(QShowEvent*)
|
|
{
|
|
reposition();
|
|
update();
|
|
}
|