tdesktop/Telegram/SourceFiles/boxes/background_box.cpp

205 lines
5.9 KiB
C++
Raw Normal View History

2015-02-03 15:02:46 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2015-02-03 15:02:46 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2015-02-03 15:02:46 +00:00
*/
2017-04-06 14:38:10 +00:00
#include "boxes/background_box.h"
2015-02-03 15:02:46 +00:00
2017-04-13 08:27:10 +00:00
#include "lang/lang_keys.h"
2015-02-03 15:02:46 +00:00
#include "mainwidget.h"
#include "mainwindow.h"
#include "window/themes/window_theme.h"
2016-11-21 17:46:29 +00:00
#include "ui/effects/round_checkbox.h"
#include "ui/image/image.h"
#include "auth_session.h"
2019-01-03 12:36:01 +00:00
#include "data/data_session.h"
#include "styles/style_overview.h"
#include "styles/style_boxes.h"
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
namespace {
constexpr auto kBackgroundsInRow = 3;
} // namespace
2019-01-03 14:39:19 +00:00
class BackgroundBox::Inner
: public Ui::RpWidget
, private MTP::Sender
, private base::Subscriber {
public:
Inner(QWidget *parent);
void setBackgroundChosenCallback(Fn<void(int index)> callback) {
_backgroundChosenCallback = std::move(callback);
}
~Inner();
protected:
void paintEvent(QPaintEvent *e) override;
void mouseMoveEvent(QMouseEvent *e) override;
void mousePressEvent(QMouseEvent *e) override;
void mouseReleaseEvent(QMouseEvent *e) override;
private:
void updateWallpapers();
Fn<void(int index)> _backgroundChosenCallback;
int _over = -1;
int _overDown = -1;
2019-01-16 12:25:29 +00:00
std::unique_ptr<Ui::RoundCheckbox> _check; // this is not a widget
};
BackgroundBox::BackgroundBox(QWidget*) {
}
void BackgroundBox::prepare() {
setTitle(langFactory(lng_backgrounds_header));
2019-01-03 12:36:01 +00:00
addButton(langFactory(lng_close), [=] { closeBox(); });
setDimensions(st::boxWideWidth, st::boxMaxListHeight);
_inner = setInnerWidget(object_ptr<Inner>(this), st::backgroundScroll);
2019-01-03 12:36:01 +00:00
_inner->setBackgroundChosenCallback([=](int index) {
backgroundChosen(index);
});
}
void BackgroundBox::backgroundChosen(int index) {
2019-01-16 12:25:29 +00:00
const auto &papers = Auth().data().wallpapers();
if (index >= 0 && index < papers.size()) {
App::main()->setChatBackground(papers[index]);
}
closeBox();
}
2019-01-03 14:39:19 +00:00
BackgroundBox::Inner::Inner(QWidget *parent) : RpWidget(parent)
, _check(std::make_unique<Ui::RoundCheckbox>(st::overviewCheck, [=] { update(); })) {
_check->setChecked(true, Ui::RoundCheckbox::SetStyle::Fast);
2019-01-16 12:25:29 +00:00
if (Auth().data().wallpapers().empty()) {
resize(kBackgroundsInRow * (st::backgroundSize.width() + st::backgroundPadding) + st::backgroundPadding, 2 * (st::backgroundSize.height() + st::backgroundPadding) + st::backgroundPadding);
2015-02-03 15:02:46 +00:00
} else {
updateWallpapers();
}
2019-01-16 12:25:29 +00:00
request(MTPaccount_GetWallPapers(
MTP_int(Auth().data().wallpapersHash())
)).done([=](const MTPaccount_WallPapers &result) {
if (Auth().data().updateWallpapers(result)) {
updateWallpapers();
}
}).send();
2019-01-16 12:25:29 +00:00
subscribe(Auth().downloaderTaskFinished(), [=] { update(); });
subscribe(Window::Theme::Background(), [=](const Window::Theme::BackgroundUpdate &update) {
if (update.paletteChanged()) {
_check->invalidateCache();
}
});
2015-02-03 15:02:46 +00:00
setMouseTracking(true);
}
void BackgroundBox::Inner::updateWallpapers() {
2019-01-16 12:25:29 +00:00
const auto &papers = Auth().data().wallpapers();
const auto count = papers.size();
const auto rows = (count / kBackgroundsInRow)
+ (count % kBackgroundsInRow ? 1 : 0);
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
resize(kBackgroundsInRow * (st::backgroundSize.width() + st::backgroundPadding) + st::backgroundPadding, rows * (st::backgroundSize.height() + st::backgroundPadding) + st::backgroundPadding);
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
const auto preload = kBackgroundsInRow * 3;
for (const auto &paper : papers | ranges::view::take(preload)) {
paper.thumb->load(Data::FileOrigin());
2015-02-03 15:02:46 +00:00
}
}
void BackgroundBox::Inner::paintEvent(QPaintEvent *e) {
2015-02-03 15:02:46 +00:00
QRect r(e->rect());
Painter p(this);
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
const auto &papers = Auth().data().wallpapers();
if (papers.empty()) {
p.setFont(st::noContactsFont);
p.setPen(st::noContactsColor);
2015-02-03 15:02:46 +00:00
p.drawText(QRect(0, 0, width(), st::noContactsHeight), lang(lng_contacts_loading), style::al_center);
2019-01-16 12:25:29 +00:00
return;
2015-02-03 15:02:46 +00:00
}
2019-01-16 12:25:29 +00:00
auto row = 0;
auto column = 0;
for (const auto &paper : papers) {
const auto increment = gsl::finally([&] {
++column;
if (column == kBackgroundsInRow) {
column = 0;
++row;
}
});
if ((st::backgroundSize.height() + st::backgroundPadding) * (row + 1) <= r.top()) {
continue;
}
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
paper.thumb->load(Data::FileOrigin());
int x = st::backgroundPadding + column * (st::backgroundSize.width() + st::backgroundPadding);
int y = st::backgroundPadding + row * (st::backgroundSize.height() + st::backgroundPadding);
const auto &pix = paper.thumb->pix(
Data::FileOrigin(),
st::backgroundSize.width(),
st::backgroundSize.height());
p.drawPixmap(x, y, pix);
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
if (paper.id == Window::Theme::Background()->id()) {
auto checkLeft = x + st::backgroundSize.width() - st::overviewCheckSkip - st::overviewCheck.size;
auto checkTop = y + st::backgroundSize.height() - st::overviewCheckSkip - st::overviewCheck.size;
_check->paint(p, getms(), checkLeft, checkTop, width());
}
}
}
2015-02-03 15:02:46 +00:00
2019-01-16 12:25:29 +00:00
void BackgroundBox::Inner::mouseMoveEvent(QMouseEvent *e) {
const auto newOver = [&] {
const auto x = e->pos().x();
const auto y = e->pos().y();
const auto width = st::backgroundSize.width();
const auto height = st::backgroundSize.height();
const auto skip = st::backgroundPadding;
const auto row = int((y - skip) / (height + skip));
const auto column = int((x - skip) / (width + skip));
if (y - row * (height + skip) > skip + height) {
return -1;
} else if (x - column * (width + skip) > skip + width) {
return -1;
}
const auto result = row * kBackgroundsInRow + column;
return (result < Auth().data().wallpapers().size()) ? result : -1;
}();
if (_over != newOver) {
2015-02-03 15:02:46 +00:00
_over = newOver;
2019-01-16 12:25:29 +00:00
setCursor((_over >= 0 || _overDown >= 0)
? style::cur_pointer
: style::cur_default);
2015-02-03 15:02:46 +00:00
}
}
void BackgroundBox::Inner::mousePressEvent(QMouseEvent *e) {
2015-02-03 15:02:46 +00:00
_overDown = _over;
}
void BackgroundBox::Inner::mouseReleaseEvent(QMouseEvent *e) {
2015-02-03 15:02:46 +00:00
if (_overDown == _over && _over >= 0) {
if (_backgroundChosenCallback) {
_backgroundChosenCallback(_over);
}
2015-02-03 15:02:46 +00:00
} else if (_over < 0) {
setCursor(style::cur_default);
}
}
BackgroundBox::Inner::~Inner() = default;