2015-02-03 15:02:46 +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.
|
2015-02-03 15:02:46 +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
|
2015-02-03 15:02:46 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/abstract_box.h"
|
2016-11-21 16:24:23 +00:00
|
|
|
|
2019-02-09 13:36:07 +00:00
|
|
|
namespace Data {
|
|
|
|
class WallPaper;
|
|
|
|
} // namespace Data
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
class BackgroundBox : public BoxContent {
|
2015-02-03 15:02:46 +00:00
|
|
|
public:
|
2016-12-13 17:07:56 +00:00
|
|
|
BackgroundBox(QWidget*);
|
2015-02-03 15:02:46 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
protected:
|
|
|
|
void prepare() override;
|
2015-02-03 15:02:46 +00:00
|
|
|
|
2016-08-16 16:53:10 +00:00
|
|
|
private:
|
2016-10-20 16:32:15 +00:00
|
|
|
class Inner;
|
2019-02-09 13:36:07 +00:00
|
|
|
|
|
|
|
void removePaper(const Data::WallPaper &paper);
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
QPointer<Inner> _inner;
|
2015-02-03 15:02:46 +00:00
|
|
|
|
|
|
|
};
|