2016-08-19 17:26:31 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-08-19 17:26:31 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "settings/settings_block_widget.h"
|
2016-09-28 10:15:03 +00:00
|
|
|
#include "ui/effects/radial_animation.h"
|
2016-08-27 04:49:18 +00:00
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
namespace Settings {
|
|
|
|
|
2016-12-20 13:03:51 +00:00
|
|
|
class BackgroundRow : public TWidget, private base::Subscriber {
|
2016-08-27 04:49:18 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
public:
|
2016-08-27 04:49:18 +00:00
|
|
|
BackgroundRow(QWidget *parent);
|
|
|
|
|
|
|
|
void updateImage();
|
2016-08-19 17:26:31 +00:00
|
|
|
|
|
|
|
protected:
|
2016-08-27 04:49:18 +00:00
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
int resizeGetHeight(int newWidth) override;
|
|
|
|
|
2016-08-27 04:49:18 +00:00
|
|
|
signals:
|
|
|
|
void chooseFromGallery();
|
|
|
|
void chooseFromFile();
|
2017-02-07 17:39:47 +00:00
|
|
|
void editTheme();
|
2016-12-20 13:03:51 +00:00
|
|
|
void useDefault();
|
2016-08-27 04:49:18 +00:00
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
private:
|
2016-12-20 13:03:51 +00:00
|
|
|
void checkNonDefaultTheme();
|
|
|
|
|
2016-08-27 04:49:18 +00:00
|
|
|
float64 radialProgress() const;
|
|
|
|
bool radialLoading() const;
|
|
|
|
QRect radialRect() const;
|
|
|
|
void radialStart();
|
2016-12-01 19:20:33 +00:00
|
|
|
TimeMs radialTimeShift() const;
|
|
|
|
void step_radial(TimeMs ms, bool timer);
|
2016-08-27 04:49:18 +00:00
|
|
|
|
|
|
|
QPixmap _background;
|
2016-12-21 08:38:36 +00:00
|
|
|
object_ptr<Ui::LinkButton> _useDefaultTheme = { nullptr };
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::LinkButton> _chooseFromGallery;
|
|
|
|
object_ptr<Ui::LinkButton> _chooseFromFile;
|
2017-02-07 17:39:47 +00:00
|
|
|
object_ptr<Ui::LinkButton> _editTheme;
|
2016-08-27 04:49:18 +00:00
|
|
|
|
2016-09-28 10:15:03 +00:00
|
|
|
Ui::RadialAnimation _radial;
|
2016-08-27 04:49:18 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class BackgroundWidget : public BlockWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
BackgroundWidget(QWidget *parent, UserData *self);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onChooseFromGallery();
|
|
|
|
void onChooseFromFile();
|
2017-02-07 17:39:47 +00:00
|
|
|
void onEditTheme();
|
2016-12-21 08:38:36 +00:00
|
|
|
void onUseDefaultTheme();
|
2016-08-27 04:49:18 +00:00
|
|
|
void onTile();
|
|
|
|
void onAdaptive();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createControls();
|
|
|
|
void needBackgroundUpdate(bool tile);
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<BackgroundRow> _background = { nullptr };
|
|
|
|
object_ptr<Ui::Checkbox> _tile = { nullptr };
|
|
|
|
object_ptr<Ui::WidgetSlideWrap<Ui::Checkbox>> _adaptive = { nullptr };
|
2016-08-27 04:49:18 +00:00
|
|
|
|
2016-08-19 17:26:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Settings
|