2015-01-25 11:57:20 +08:00
|
|
|
#ifndef CALLCONFIRMWIDGET_H
|
|
|
|
#define CALLCONFIRMWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2015-01-25 23:46:33 +08:00
|
|
|
#include <QRect>
|
|
|
|
#include <QPolygon>
|
|
|
|
#include <QBrush>
|
2015-01-25 11:57:20 +08:00
|
|
|
|
2015-01-25 23:46:33 +08:00
|
|
|
class QPaintEvent;
|
2015-01-26 01:43:30 +08:00
|
|
|
class QShowEvent;
|
2015-01-25 11:57:20 +08:00
|
|
|
|
2015-01-26 01:43:30 +08:00
|
|
|
/// This is a widget with dialog buttons to accept/reject a call
|
|
|
|
/// It tracks the position of another widget called the anchor
|
|
|
|
/// and looks like a bubble at the bottom of that widget.
|
2015-01-25 11:57:20 +08:00
|
|
|
class CallConfirmWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-01-26 01:43:30 +08:00
|
|
|
explicit CallConfirmWidget(const QWidget *Anchor);
|
2015-01-25 11:57:20 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void accepted();
|
|
|
|
void rejected();
|
2015-01-25 23:46:33 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void paintEvent(QPaintEvent* event) override;
|
2015-01-26 01:43:30 +08:00
|
|
|
virtual void showEvent(QShowEvent * event) override;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void reposition(); ///< Recalculate our positions to track the anchor
|
2015-01-25 23:46:33 +08:00
|
|
|
|
|
|
|
private:
|
2015-01-26 01:43:30 +08:00
|
|
|
const QWidget* anchor; ///< The widget we're going to be tracking
|
|
|
|
|
2015-01-25 23:46:33 +08:00
|
|
|
QRect mainRect;
|
|
|
|
QPolygon spikePoly;
|
|
|
|
QBrush brush;
|
|
|
|
|
|
|
|
const int rectW, rectH;
|
|
|
|
const int spikeW, spikeH;
|
2015-01-26 01:43:30 +08:00
|
|
|
const int roundedFactor; ///< By how much are the corners of the main rect rounded
|
2015-01-27 01:29:13 +08:00
|
|
|
const qreal rectRatio; ///< Used to correct the rounding factors on non-square rects
|
2015-01-25 11:57:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CALLCONFIRMWIDGET_H
|