2017-09-30 18:26:45 +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.
|
2017-09-30 18:26:45 +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
|
2017-09-30 18:26:45 +00:00
|
|
|
*/
|
|
|
|
#include "info/info_content_widget.h"
|
|
|
|
|
|
|
|
#include <rpl/never.h>
|
|
|
|
#include <rpl/combine.h>
|
2017-10-20 16:19:42 +00:00
|
|
|
#include <rpl/range.h>
|
2019-06-06 10:21:40 +00:00
|
|
|
#include "window/window_session_controller.h"
|
2017-09-30 18:26:45 +00:00
|
|
|
#include "ui/widgets/scroll_area.h"
|
2017-12-08 08:22:02 +00:00
|
|
|
#include "ui/widgets/input_fields.h"
|
2017-11-23 12:48:56 +00:00
|
|
|
#include "ui/wrap/padding_wrap.h"
|
2017-11-03 18:26:14 +00:00
|
|
|
#include "ui/search_field_controller.h"
|
2017-09-30 18:26:45 +00:00
|
|
|
#include "lang/lang_keys.h"
|
|
|
|
#include "info/profile/info_profile_widget.h"
|
|
|
|
#include "info/media/info_media_widget.h"
|
2017-11-03 15:52:53 +00:00
|
|
|
#include "info/common_groups/info_common_groups_widget.h"
|
2017-09-30 18:26:45 +00:00
|
|
|
#include "info/info_layer_widget.h"
|
|
|
|
#include "info/info_section_widget.h"
|
2017-10-31 18:25:22 +00:00
|
|
|
#include "info/info_controller.h"
|
2017-11-17 13:23:36 +00:00
|
|
|
#include "boxes/peer_list_box.h"
|
2019-01-18 12:27:37 +00:00
|
|
|
#include "data/data_session.h"
|
2019-07-24 11:45:24 +00:00
|
|
|
#include "main/main_session.h"
|
2017-09-30 18:26:45 +00:00
|
|
|
#include "styles/style_info.h"
|
|
|
|
#include "styles/style_profile.h"
|
|
|
|
|
2019-09-04 07:19:15 +00:00
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
namespace Info {
|
|
|
|
|
|
|
|
ContentWidget::ContentWidget(
|
|
|
|
QWidget *parent,
|
2017-10-31 18:25:22 +00:00
|
|
|
not_null<Controller*> controller)
|
2017-09-30 18:26:45 +00:00
|
|
|
: RpWidget(parent)
|
|
|
|
, _controller(controller)
|
|
|
|
, _scroll(this, st::infoScroll) {
|
2017-11-03 18:26:14 +00:00
|
|
|
using namespace rpl::mappers;
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
setAttribute(Qt::WA_OpaquePaintEvent);
|
2017-12-22 07:05:20 +00:00
|
|
|
_controller->wrapValue(
|
|
|
|
) | rpl::start_with_next([this](Wrap value) {
|
|
|
|
if (value != Wrap::Layer) {
|
|
|
|
applyAdditionalScroll(0);
|
|
|
|
}
|
|
|
|
_bg = (value == Wrap::Layer)
|
|
|
|
? st::boxBg
|
|
|
|
: st::profileBg;
|
|
|
|
update();
|
|
|
|
}, lifetime());
|
2017-11-17 13:23:36 +00:00
|
|
|
if (_controller->section().type() != Section::Type::Profile) {
|
|
|
|
rpl::combine(
|
|
|
|
_controller->wrapValue(),
|
|
|
|
_controller->searchEnabledByContent(),
|
2017-12-22 07:05:20 +00:00
|
|
|
(_1 == Wrap::Layer) && _2
|
2017-12-26 13:18:00 +00:00
|
|
|
) | rpl::distinct_until_changed(
|
2017-12-22 07:05:20 +00:00
|
|
|
) | rpl::start_with_next([this](bool shown) {
|
|
|
|
refreshSearchField(shown);
|
2017-11-03 12:03:00 +00:00
|
|
|
}, lifetime());
|
2017-12-22 07:05:20 +00:00
|
|
|
}
|
|
|
|
_scrollTopSkip.changes(
|
|
|
|
) | rpl::start_with_next([this] {
|
|
|
|
updateControlsGeometry();
|
|
|
|
}, lifetime());
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::resizeEvent(QResizeEvent *e) {
|
2017-10-27 17:41:38 +00:00
|
|
|
updateControlsGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::updateControlsGeometry() {
|
2017-11-23 12:48:56 +00:00
|
|
|
if (!_innerWrap) {
|
2017-11-03 18:26:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-09-30 18:26:45 +00:00
|
|
|
auto newScrollTop = _scroll->scrollTop() + _topDelta;
|
|
|
|
auto scrollGeometry = rect().marginsRemoved(
|
2017-11-03 12:03:00 +00:00
|
|
|
QMargins(0, _scrollTopSkip.current(), 0, 0));
|
2017-09-30 18:26:45 +00:00
|
|
|
if (_scroll->geometry() != scrollGeometry) {
|
|
|
|
_scroll->setGeometry(scrollGeometry);
|
2017-11-23 12:48:56 +00:00
|
|
|
_innerWrap->resizeToWidth(_scroll->width());
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!_scroll->isHidden()) {
|
|
|
|
if (_topDelta) {
|
|
|
|
_scroll->scrollToY(newScrollTop);
|
|
|
|
}
|
|
|
|
auto scrollTop = _scroll->scrollTop();
|
2017-11-23 12:48:56 +00:00
|
|
|
_innerWrap->setVisibleTopBottom(
|
2017-11-03 18:26:14 +00:00
|
|
|
scrollTop,
|
|
|
|
scrollTop + _scroll->height());
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 18:26:14 +00:00
|
|
|
std::unique_ptr<ContentMemento> ContentWidget::createMemento() {
|
|
|
|
auto result = doCreateMemento();
|
|
|
|
_controller->saveSearchState(result.get());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
void ContentWidget::paintEvent(QPaintEvent *e) {
|
|
|
|
Painter p(this);
|
2017-10-03 13:05:58 +00:00
|
|
|
p.fillRect(e->rect(), _bg);
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::setGeometryWithTopMoved(
|
|
|
|
const QRect &newGeometry,
|
|
|
|
int topDelta) {
|
|
|
|
_topDelta = topDelta;
|
|
|
|
auto willBeResized = (size() != newGeometry.size());
|
|
|
|
if (geometry() != newGeometry) {
|
|
|
|
setGeometry(newGeometry);
|
|
|
|
}
|
|
|
|
if (!willBeResized) {
|
|
|
|
QResizeEvent fake(size(), size());
|
2019-09-04 07:19:15 +00:00
|
|
|
QCoreApplication::sendEvent(this, &fake);
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
_topDelta = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ui::RpWidget *ContentWidget::doSetInnerWidget(
|
2017-11-03 18:26:14 +00:00
|
|
|
object_ptr<RpWidget> inner) {
|
2017-09-30 18:26:45 +00:00
|
|
|
using namespace rpl::mappers;
|
|
|
|
|
2017-11-23 12:48:56 +00:00
|
|
|
_innerWrap = _scroll->setOwnedWidget(
|
|
|
|
object_ptr<Ui::PaddingWrap<Ui::RpWidget>>(
|
|
|
|
this,
|
|
|
|
std::move(inner),
|
|
|
|
_innerWrap ? _innerWrap->padding() : style::margins()));
|
|
|
|
_innerWrap->move(0, 0);
|
2017-09-30 18:26:45 +00:00
|
|
|
|
2018-08-14 19:12:41 +00:00
|
|
|
// MSVC BUG + REGRESSION rpl::mappers::tuple :(
|
2017-09-30 18:26:45 +00:00
|
|
|
rpl::combine(
|
|
|
|
_scroll->scrollTopValue(),
|
|
|
|
_scroll->heightValue(),
|
2018-08-14 19:12:41 +00:00
|
|
|
_innerWrap->entity()->desiredHeightValue()
|
2017-12-22 07:05:20 +00:00
|
|
|
) | rpl::start_with_next([this](
|
|
|
|
int top,
|
2018-08-14 19:12:41 +00:00
|
|
|
int height,
|
2017-12-22 07:05:20 +00:00
|
|
|
int desired) {
|
2018-08-14 19:12:41 +00:00
|
|
|
const auto bottom = top + height;
|
2017-12-22 07:05:20 +00:00
|
|
|
_innerDesiredHeight = desired;
|
|
|
|
_innerWrap->setVisibleTopBottom(top, bottom);
|
|
|
|
_scrollTillBottomChanges.fire_copy(std::max(desired - bottom, 0));
|
|
|
|
}, _innerWrap->lifetime());
|
2017-10-27 17:41:38 +00:00
|
|
|
|
2017-11-23 12:48:56 +00:00
|
|
|
return _innerWrap->entity();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ContentWidget::scrollTillBottom(int forHeight) const {
|
|
|
|
auto scrollHeight = forHeight - _scrollTopSkip.current();
|
|
|
|
auto scrollBottom = _scroll->scrollTop() + scrollHeight;
|
|
|
|
auto desired = _innerDesiredHeight;
|
|
|
|
return std::max(desired - scrollBottom, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<int> ContentWidget::scrollTillBottomChanges() const {
|
|
|
|
return _scrollTillBottomChanges.events();
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 12:03:00 +00:00
|
|
|
void ContentWidget::setScrollTopSkip(int scrollTopSkip) {
|
|
|
|
_scrollTopSkip = scrollTopSkip;
|
|
|
|
}
|
|
|
|
|
2017-11-14 17:22:44 +00:00
|
|
|
rpl::producer<int> ContentWidget::scrollHeightValue() const {
|
|
|
|
return _scroll->heightValue();
|
|
|
|
}
|
|
|
|
|
2017-11-23 12:48:56 +00:00
|
|
|
void ContentWidget::applyAdditionalScroll(int additionalScroll) {
|
|
|
|
if (_innerWrap) {
|
|
|
|
_innerWrap->setPadding({ 0, 0, 0, additionalScroll });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
rpl::producer<int> ContentWidget::desiredHeightValue() const {
|
2017-11-03 12:03:00 +00:00
|
|
|
using namespace rpl::mappers;
|
|
|
|
return rpl::combine(
|
2017-11-23 12:48:56 +00:00
|
|
|
_innerWrap->entity()->desiredHeightValue(),
|
2017-12-22 07:05:20 +00:00
|
|
|
_scrollTopSkip.value()
|
|
|
|
) | rpl::map(_1 + _2);
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
2017-10-03 14:57:11 +00:00
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
rpl::producer<bool> ContentWidget::desiredShadowVisibility() const {
|
|
|
|
using namespace rpl::mappers;
|
2017-11-03 12:03:00 +00:00
|
|
|
return rpl::combine(
|
|
|
|
_scroll->scrollTopValue(),
|
2017-12-22 07:05:20 +00:00
|
|
|
_scrollTopSkip.value()
|
|
|
|
) | rpl::map((_1 > 0) || (_2 > 0));
|
2017-09-30 18:26:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-03 14:57:11 +00:00
|
|
|
bool ContentWidget::hasTopBarShadow() const {
|
|
|
|
return (_scroll->scrollTop() > 0);
|
|
|
|
}
|
|
|
|
|
2017-11-23 12:48:56 +00:00
|
|
|
void ContentWidget::setInnerFocus() {
|
2017-12-08 08:22:02 +00:00
|
|
|
if (_searchField) {
|
|
|
|
_searchField->setFocus();
|
|
|
|
} else {
|
|
|
|
_innerWrap->entity()->setFocus();
|
|
|
|
}
|
2017-11-23 12:48:56 +00:00
|
|
|
}
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
int ContentWidget::scrollTopSave() const {
|
|
|
|
return _scroll->scrollTop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::scrollTopRestore(int scrollTop) {
|
|
|
|
_scroll->scrollToY(scrollTop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::scrollTo(const Ui::ScrollToRequest &request) {
|
|
|
|
_scroll->scrollTo(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ContentWidget::wheelEventFromFloatPlayer(QEvent *e) {
|
|
|
|
return _scroll->viewportEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect ContentWidget::rectForFloatPlayer() const {
|
|
|
|
return mapToGlobal(_scroll->geometry());
|
|
|
|
}
|
|
|
|
|
2017-10-20 16:19:42 +00:00
|
|
|
rpl::producer<SelectedItems> ContentWidget::selectedListValue() const {
|
|
|
|
return rpl::single(SelectedItems(Storage::SharedMediaType::Photo));
|
|
|
|
}
|
|
|
|
|
2018-09-09 17:38:08 +00:00
|
|
|
rpl::producer<bool> ContentWidget::canSaveChanges() const {
|
|
|
|
return rpl::single(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContentWidget::saveChanges(FnMut<void()> done) {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
|
2017-11-03 18:26:14 +00:00
|
|
|
void ContentWidget::refreshSearchField(bool shown) {
|
|
|
|
auto search = _controller->searchFieldController();
|
|
|
|
if (search && shown) {
|
2017-12-08 08:22:02 +00:00
|
|
|
auto rowView = search->createRowView(
|
2017-11-03 18:26:14 +00:00
|
|
|
this,
|
|
|
|
st::infoLayerMediaSearch);
|
2017-12-08 08:22:02 +00:00
|
|
|
_searchWrap = std::move(rowView.wrap);
|
|
|
|
_searchField = rowView.field;
|
|
|
|
|
|
|
|
const auto view = _searchWrap.get();
|
2017-12-22 07:05:20 +00:00
|
|
|
widthValue(
|
|
|
|
) | rpl::start_with_next([=](int newWidth) {
|
|
|
|
view->resizeToWidth(newWidth);
|
|
|
|
view->moveToLeft(0, 0);
|
|
|
|
}, view->lifetime());
|
2017-12-08 08:22:02 +00:00
|
|
|
view->show();
|
|
|
|
_searchField->setFocus();
|
|
|
|
setScrollTopSkip(view->heightNoMargins() - st::lineWidth);
|
2017-11-03 18:26:14 +00:00
|
|
|
} else {
|
2017-12-26 13:18:00 +00:00
|
|
|
if (Ui::InFocusChain(this)) {
|
|
|
|
setFocus();
|
|
|
|
}
|
2017-12-08 08:14:30 +00:00
|
|
|
_searchWrap = nullptr;
|
2017-11-03 18:26:14 +00:00
|
|
|
setScrollTopSkip(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-05 19:05:49 +00:00
|
|
|
Key ContentMemento::key() const {
|
|
|
|
if (const auto peerId = this->peerId()) {
|
2019-01-18 12:27:37 +00:00
|
|
|
return Key(Auth().data().peer(peerId));
|
2019-04-15 11:54:03 +00:00
|
|
|
//} else if (const auto feed = this->feed()) { // #feed
|
|
|
|
// return Key(feed);
|
2018-09-05 19:05:49 +00:00
|
|
|
} else {
|
|
|
|
return Settings::Tag{ settingsSelf() };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ContentMemento::ContentMemento(Settings::Tag settings)
|
|
|
|
: _settingsSelf(settings.self.get()) {
|
|
|
|
}
|
|
|
|
|
2017-09-30 18:26:45 +00:00
|
|
|
} // namespace Info
|