2016-05-19 12:03:51 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-05-19 12:03:51 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-05-19 12:03:51 +00:00
|
|
|
*/
|
|
|
|
#include "window/section_widget.h"
|
|
|
|
|
2018-01-09 17:08:31 +00:00
|
|
|
#include "mainwidget.h"
|
2019-09-13 12:22:54 +00:00
|
|
|
#include "ui/ui_utility.h"
|
2017-09-16 16:53:41 +00:00
|
|
|
#include "window/section_memento.h"
|
2017-10-03 13:05:58 +00:00
|
|
|
#include "window/window_slide_animation.h"
|
2018-01-09 17:08:31 +00:00
|
|
|
#include "window/themes/window_theme.h"
|
2019-06-06 10:21:40 +00:00
|
|
|
#include "window/window_session_controller.h"
|
2016-05-19 12:03:51 +00:00
|
|
|
|
2019-09-13 12:22:54 +00:00
|
|
|
#include <rpl/range.h>
|
|
|
|
|
2016-05-19 12:03:51 +00:00
|
|
|
namespace Window {
|
|
|
|
|
2021-08-13 18:18:06 +00:00
|
|
|
AbstractSectionWidget::AbstractSectionWidget(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<SessionController*> controller,
|
|
|
|
PaintedBackground paintedBackground)
|
|
|
|
: RpWidget(parent)
|
|
|
|
, _controller(controller) {
|
|
|
|
if (paintedBackground == PaintedBackground::Section) {
|
|
|
|
controller->repaintBackgroundRequests(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
update();
|
|
|
|
}, lifetime());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 11:45:24 +00:00
|
|
|
Main::Session &AbstractSectionWidget::session() const {
|
2019-04-16 14:05:56 +00:00
|
|
|
return _controller->session();
|
|
|
|
}
|
|
|
|
|
2017-09-13 17:01:23 +00:00
|
|
|
SectionWidget::SectionWidget(
|
|
|
|
QWidget *parent,
|
2021-08-13 18:18:06 +00:00
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
PaintedBackground paintedBackground)
|
|
|
|
: AbstractSectionWidget(parent, controller, paintedBackground) {
|
2016-05-19 12:03:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 17:01:23 +00:00
|
|
|
void SectionWidget::setGeometryWithTopMoved(
|
|
|
|
const QRect &newGeometry,
|
|
|
|
int topDelta) {
|
2016-05-19 12:03:51 +00:00
|
|
|
_topDelta = topDelta;
|
|
|
|
bool willBeResized = (size() != newGeometry.size());
|
|
|
|
if (geometry() != newGeometry) {
|
2019-09-13 12:22:54 +00:00
|
|
|
auto weak = Ui::MakeWeak(this);
|
2016-05-19 12:03:51 +00:00
|
|
|
setGeometry(newGeometry);
|
2017-11-30 18:04:13 +00:00
|
|
|
if (!weak) {
|
2017-09-15 17:34:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-05-19 12:03:51 +00:00
|
|
|
}
|
|
|
|
if (!willBeResized) {
|
|
|
|
resizeEvent(nullptr);
|
|
|
|
}
|
|
|
|
_topDelta = 0;
|
|
|
|
}
|
|
|
|
|
2017-09-13 17:01:23 +00:00
|
|
|
void SectionWidget::showAnimated(
|
|
|
|
SlideDirection direction,
|
|
|
|
const SectionSlideParams ¶ms) {
|
2016-05-27 15:45:35 +00:00
|
|
|
if (_showAnimation) return;
|
2016-05-19 12:03:51 +00:00
|
|
|
|
|
|
|
showChildren();
|
|
|
|
auto myContentCache = grabForShowAnimation(params);
|
|
|
|
hideChildren();
|
2017-10-03 17:41:44 +00:00
|
|
|
showAnimatedHook(params);
|
2016-05-19 12:03:51 +00:00
|
|
|
|
2017-02-21 13:45:56 +00:00
|
|
|
_showAnimation = std::make_unique<SlideAnimation>();
|
2016-05-19 12:03:51 +00:00
|
|
|
_showAnimation->setDirection(direction);
|
2016-09-26 12:09:59 +00:00
|
|
|
_showAnimation->setRepaintCallback([this] { update(); });
|
|
|
|
_showAnimation->setFinishedCallback([this] { showFinished(); });
|
2017-09-13 17:01:23 +00:00
|
|
|
_showAnimation->setPixmaps(
|
|
|
|
params.oldContentCache,
|
|
|
|
myContentCache);
|
2016-05-19 12:03:51 +00:00
|
|
|
_showAnimation->setTopBarShadow(params.withTopBarShadow);
|
2017-10-03 17:41:44 +00:00
|
|
|
_showAnimation->setWithFade(params.withFade);
|
2016-05-19 12:03:51 +00:00
|
|
|
_showAnimation->start();
|
|
|
|
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
|
2020-12-14 14:48:10 +00:00
|
|
|
std::shared_ptr<SectionMemento> SectionWidget::createMemento() {
|
2017-09-16 16:53:41 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-01-14 18:50:16 +00:00
|
|
|
void SectionWidget::showFast() {
|
|
|
|
show();
|
|
|
|
showFinished();
|
|
|
|
}
|
|
|
|
|
2019-09-13 12:22:54 +00:00
|
|
|
QPixmap SectionWidget::grabForShowAnimation(
|
|
|
|
const SectionSlideParams ¶ms) {
|
|
|
|
return Ui::GrabWidget(this);
|
|
|
|
}
|
|
|
|
|
2020-06-10 18:08:17 +00:00
|
|
|
void SectionWidget::PaintBackground(
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<QWidget*> widget,
|
|
|
|
QRect clip) {
|
2018-01-09 17:08:31 +00:00
|
|
|
Painter p(widget);
|
|
|
|
|
2021-08-12 14:51:44 +00:00
|
|
|
const auto background = Window::Theme::Background();
|
2021-08-13 17:19:06 +00:00
|
|
|
const auto fullHeight = controller->content()->height();
|
2021-08-12 14:51:44 +00:00
|
|
|
if (const auto color = background->colorForFill()) {
|
2021-08-13 17:19:06 +00:00
|
|
|
p.fillRect(clip, *color);
|
2019-01-17 08:18:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-08-13 17:19:06 +00:00
|
|
|
const auto gradient = background->gradientForFill();
|
|
|
|
const auto fill = QSize(widget->width(), fullHeight);
|
2020-06-10 18:08:17 +00:00
|
|
|
auto fromy = controller->content()->backgroundFromY();
|
2021-08-13 18:18:06 +00:00
|
|
|
auto state = controller->backgroundState(fill);
|
|
|
|
const auto paintCache = [&](const CachedBackground &cache) {
|
2021-08-13 17:19:06 +00:00
|
|
|
const auto to = QRect(
|
2021-08-13 18:18:06 +00:00
|
|
|
QPoint(cache.x, fromy + cache.y),
|
|
|
|
cache.pixmap.size() / cIntRetinaFactor());
|
|
|
|
if (cache.area == fill) {
|
|
|
|
p.drawPixmap(to, cache.pixmap);
|
2021-08-13 17:19:06 +00:00
|
|
|
} else {
|
2021-08-13 18:18:06 +00:00
|
|
|
const auto sx = fill.width() / float64(cache.area.width());
|
|
|
|
const auto sy = fill.height() / float64(cache.area.height());
|
2021-08-13 17:19:06 +00:00
|
|
|
const auto round = [](float64 value) -> int {
|
|
|
|
return (value >= 0.)
|
|
|
|
? int(std::ceil(value))
|
|
|
|
: int(std::floor(value));
|
|
|
|
};
|
|
|
|
const auto sto = QPoint(round(to.x() * sx), round(to.y() * sy));
|
|
|
|
p.drawPixmap(
|
|
|
|
sto.x(),
|
|
|
|
sto.y(),
|
|
|
|
round((to.x() + to.width()) * sx) - sto.x(),
|
|
|
|
round((to.y() + to.height()) * sy) - sto.y(),
|
2021-08-13 18:18:06 +00:00
|
|
|
cache.pixmap);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const auto goodNow = !state.now.pixmap.isNull()
|
|
|
|
&& (state.now.area == fill);
|
|
|
|
const auto useCache = goodNow || !gradient.isNull();
|
|
|
|
if (useCache) {
|
|
|
|
if (state.shown < 1. && !gradient.isNull()) {
|
|
|
|
paintCache(state.was);
|
|
|
|
p.setOpacity(state.shown);
|
2021-08-13 17:19:06 +00:00
|
|
|
}
|
2021-08-13 18:18:06 +00:00
|
|
|
paintCache(state.now);
|
2021-08-13 15:39:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto patternOpacity = background->paper().patternOpacity();
|
2021-08-13 18:18:06 +00:00
|
|
|
const auto &prepared = background->prepared();
|
|
|
|
if (!prepared.isNull() && !background->tile()) {
|
|
|
|
const auto hq = PainterHighQualityEnabler(p);
|
2021-08-13 17:19:06 +00:00
|
|
|
const auto rects = Window::Theme::ComputeBackgroundRects(
|
|
|
|
fill,
|
2021-08-13 18:18:06 +00:00
|
|
|
prepared.size());
|
2021-08-13 15:39:50 +00:00
|
|
|
if (!gradient.isNull()) {
|
2021-08-13 17:19:06 +00:00
|
|
|
p.drawImage(rects.to, gradient);
|
2021-08-13 15:39:50 +00:00
|
|
|
p.setCompositionMode(QPainter::CompositionMode_SoftLight);
|
|
|
|
p.setOpacity(patternOpacity);
|
|
|
|
}
|
2021-08-13 17:19:06 +00:00
|
|
|
auto to = rects.to;
|
2021-08-13 15:39:50 +00:00
|
|
|
to.moveTop(to.top() + fromy);
|
2021-08-13 18:18:06 +00:00
|
|
|
p.drawImage(to, prepared, rects.from);
|
2021-08-13 15:39:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!gradient.isNull()) {
|
2021-08-13 18:18:06 +00:00
|
|
|
const auto hq = PainterHighQualityEnabler(p);
|
2021-08-13 17:19:06 +00:00
|
|
|
p.drawImage(QRect(QPoint(0, fromy), fill), gradient);
|
2021-08-13 15:39:50 +00:00
|
|
|
p.setCompositionMode(QPainter::CompositionMode_SoftLight);
|
|
|
|
p.setOpacity(patternOpacity);
|
|
|
|
}
|
2021-08-13 18:18:06 +00:00
|
|
|
if (!prepared.isNull()) {
|
|
|
|
const auto &tiled = background->preparedForTiled();
|
2021-08-13 15:39:50 +00:00
|
|
|
auto left = clip.left();
|
|
|
|
auto top = clip.top();
|
|
|
|
auto right = clip.left() + clip.width();
|
|
|
|
auto bottom = clip.top() + clip.height();
|
|
|
|
auto w = tiled.width() / cRetinaFactor();
|
|
|
|
auto h = tiled.height() / cRetinaFactor();
|
|
|
|
auto sx = qFloor(left / w);
|
|
|
|
auto sy = qFloor((top - fromy) / h);
|
|
|
|
auto cx = qCeil(right / w);
|
|
|
|
auto cy = qCeil((bottom - fromy) / h);
|
|
|
|
for (auto i = sx; i < cx; ++i) {
|
|
|
|
for (auto j = sy; j < cy; ++j) {
|
2021-08-13 18:18:06 +00:00
|
|
|
p.drawImage(QPointF(i * w, fromy + j * h), tiled);
|
2021-08-12 14:51:44 +00:00
|
|
|
}
|
2018-01-09 17:08:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 12:03:51 +00:00
|
|
|
void SectionWidget::paintEvent(QPaintEvent *e) {
|
|
|
|
if (_showAnimation) {
|
|
|
|
Painter p(this);
|
|
|
|
_showAnimation->paintContents(p, e->rect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SectionWidget::showFinished() {
|
2016-05-27 15:45:35 +00:00
|
|
|
_showAnimation.reset();
|
2016-05-19 12:03:51 +00:00
|
|
|
if (isHidden()) return;
|
|
|
|
|
|
|
|
showChildren();
|
|
|
|
showFinishedHook();
|
|
|
|
|
|
|
|
setInnerFocus();
|
|
|
|
}
|
|
|
|
|
2017-09-13 17:01:23 +00:00
|
|
|
rpl::producer<int> SectionWidget::desiredHeight() const {
|
|
|
|
return rpl::single(height());
|
|
|
|
}
|
|
|
|
|
2017-10-03 13:05:58 +00:00
|
|
|
SectionWidget::~SectionWidget() = default;
|
|
|
|
|
2016-05-19 12:03:51 +00:00
|
|
|
} // namespace Window
|