2016-10-05 21:37:48 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-10-05 21:37:48 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-10-05 21:37:48 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-04-06 17:38:10 +03:00
|
|
|
#include "boxes/abstract_box.h"
|
2016-10-05 21:37:48 +03:00
|
|
|
|
|
|
|
namespace Ui {
|
2016-11-11 16:46:04 +03:00
|
|
|
class LinkButton;
|
2016-11-22 12:48:13 +03:00
|
|
|
class SettingsSlider;
|
2016-10-05 21:37:48 +03:00
|
|
|
} // namespace Ui
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
class NotificationsBox : public BoxContent {
|
2016-10-05 21:37:48 +03:00
|
|
|
public:
|
2016-12-13 20:07:56 +03:00
|
|
|
NotificationsBox(QWidget*);
|
2016-10-06 19:41:09 +03:00
|
|
|
~NotificationsBox();
|
2016-10-05 21:37:48 +03:00
|
|
|
|
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-10-05 21:37:48 +03:00
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
2017-02-11 14:24:37 +03:00
|
|
|
void leaveEventHook(QEvent *e) override;
|
2016-10-05 21:37:48 +03:00
|
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
|
|
|
|
|
|
private:
|
2016-10-06 19:41:09 +03:00
|
|
|
using ScreenCorner = Notify::ScreenCorner;
|
|
|
|
void countChanged();
|
|
|
|
void setOverCorner(ScreenCorner corner);
|
|
|
|
void clearOverCorner();
|
|
|
|
|
|
|
|
class SampleWidget;
|
|
|
|
void removeSample(SampleWidget *widget);
|
|
|
|
|
|
|
|
int currentCount() const;
|
|
|
|
|
2016-10-05 21:37:48 +03:00
|
|
|
QRect getScreenRect() const;
|
|
|
|
int getContentLeft() const;
|
2016-10-06 19:41:09 +03:00
|
|
|
void prepareNotificationSampleSmall();
|
|
|
|
void prepareNotificationSampleLarge();
|
2016-10-07 16:14:02 +03:00
|
|
|
void prepareNotificationSampleUserpic();
|
2016-10-05 21:37:48 +03:00
|
|
|
|
2016-10-07 16:14:02 +03:00
|
|
|
QPixmap _notificationSampleUserpic;
|
2016-10-06 19:41:09 +03:00
|
|
|
QPixmap _notificationSampleSmall;
|
|
|
|
QPixmap _notificationSampleLarge;
|
|
|
|
ScreenCorner _chosenCorner;
|
2017-02-21 16:45:56 +03:00
|
|
|
std::vector<Animation> _sampleOpacities;
|
2016-10-06 19:41:09 +03:00
|
|
|
|
|
|
|
bool _isOverCorner = false;
|
|
|
|
ScreenCorner _overCorner = ScreenCorner::TopLeft;
|
|
|
|
bool _isDownCorner = false;
|
|
|
|
ScreenCorner _downCorner = ScreenCorner::TopLeft;
|
|
|
|
|
|
|
|
int _oldCount;
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::SettingsSlider> _countSlider;
|
2016-10-06 19:41:09 +03:00
|
|
|
|
|
|
|
QVector<SampleWidget*> _cornerSamples[4];
|
2016-10-05 21:37:48 +03:00
|
|
|
|
|
|
|
};
|