tdesktop/Telegram/SourceFiles/settings/settings_inner_widget.cpp

125 lines
3.5 KiB
C++

/*
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
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#include "settings/settings_inner_widget.h"
#include "lang/lang_instance.h"
#include "styles/style_settings.h"
#include "settings/settings_cover.h"
#include "settings/settings_block_widget.h"
#include "settings/settings_info_widget.h"
#include "settings/settings_notifications_widget.h"
#include "settings/settings_general_widget.h"
#include "settings/settings_chat_settings_widget.h"
#include "settings/settings_scale_widget.h"
#include "settings/settings_background_widget.h"
#include "settings/settings_privacy_widget.h"
#include "settings/settings_advanced_widget.h"
namespace Settings {
InnerWidget::InnerWidget(QWidget *parent) : LayerInner(parent)
, _blocks(this)
, _self(App::self()) {
refreshBlocks();
subscribe(Global::RefSelfChanged(), [this] { fullRebuild(); });
subscribe(Lang::Current().updated(), [this] { fullRebuild(); });
}
void InnerWidget::fullRebuild() {
_self = App::self();
refreshBlocks();
}
void InnerWidget::refreshBlocks() {
if (App::quitting()) {
_cover.destroy();
_blocks.destroy();
return;
}
_cover = _self
? object_ptr<CoverWidget>(this, _self)
: nullptr;
_blocks = object_ptr<Ui::VerticalLayout>(this);
resizeToWidth(width(), _contentLeft);
if (_self) {
_blocks->add(object_ptr<InfoWidget>(this, _self));
_blocks->add(object_ptr<NotificationsWidget>(this, _self));
}
_blocks->add(object_ptr<GeneralWidget>(this, _self));
if (!cRetina()) {
_blocks->add(object_ptr<ScaleWidget>(this, _self));
}
if (_self) {
_blocks->add(object_ptr<ChatSettingsWidget>(this, _self));
_blocks->add(object_ptr<BackgroundWidget>(this, _self));
_blocks->add(object_ptr<PrivacyWidget>(this, _self));
}
_blocks->add(object_ptr<AdvancedWidget>(this, _self));
if (_cover) {
_cover->show();
if (_showFinished) {
_cover->showFinished();
}
}
_blocks->show();
_blocks->heightValue()
| rpl::start([this](int blocksHeight) {
resize(width(), _blocks->y() + blocksHeight);
}, lifetime());
}
void InnerWidget::showFinished() {
_showFinished = true;
if (_cover) {
_cover->showFinished();
}
}
int InnerWidget::resizeGetHeight(int newWidth) {
if (_cover) {
_cover->setContentLeft(_contentLeft);
_cover->resizeToWidth(newWidth);
}
_blocks->resizeToWidth(newWidth - 2 * _contentLeft);
_blocks->moveToLeft(
_contentLeft,
(_cover ? (_cover->y() + _cover->height()) : 0)
+ st::settingsBlocksTop);
return height();
}
void InnerWidget::visibleTopBottomUpdated(
int visibleTop,
int visibleBottom) {
setChildVisibleTopBottom(
_cover,
visibleTop,
visibleBottom);
setChildVisibleTopBottom(
_blocks,
visibleTop,
visibleBottom);
}
} // namespace Settings