mirror of
https://github.com/vale981/tdesktop
synced 2025-03-07 02:31:41 -05:00
378 lines
9.2 KiB
C++
378 lines
9.2 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#include "history/feed/history_feed_section.h"
|
|
|
|
#include "history/view/history_view_top_bar_widget.h"
|
|
#include "history/view/history_view_list_widget.h"
|
|
#include "history/view/history_view_element.h"
|
|
#include "history/view/history_view_message.h"
|
|
#include "history/view/history_view_service_message.h"
|
|
#include "history/history_item.h"
|
|
#include "lang/lang_keys.h"
|
|
#include "ui/widgets/buttons.h"
|
|
#include "ui/widgets/shadow.h"
|
|
#include "ui/widgets/scroll_area.h"
|
|
#include "ui/widgets/popup_menu.h"
|
|
#include "boxes/confirm_box.h"
|
|
#include "window/window_controller.h"
|
|
#include "window/window_peer_menu.h"
|
|
#include "data/data_feed_messages.h"
|
|
#include "data/data_photo.h"
|
|
#include "data/data_document.h"
|
|
#include "data/data_session.h"
|
|
#include "storage/storage_feed_messages.h"
|
|
#include "mainwidget.h"
|
|
#include "auth_session.h"
|
|
#include "styles/style_widgets.h"
|
|
#include "styles/style_history.h"
|
|
|
|
namespace HistoryFeed {
|
|
|
|
Memento::Memento(
|
|
not_null<Data::Feed*> feed,
|
|
Data::MessagePosition aroundPosition)
|
|
: _feed(feed)
|
|
, _list(std::make_unique<HistoryView::ListMemento>(aroundPosition)) {
|
|
}
|
|
|
|
Memento::~Memento() = default;
|
|
|
|
object_ptr<Window::SectionWidget> Memento::createWidget(
|
|
QWidget *parent,
|
|
not_null<Window::Controller*> controller,
|
|
Window::Column column,
|
|
const QRect &geometry) {
|
|
if (column == Window::Column::Third) {
|
|
return nullptr;
|
|
}
|
|
auto result = object_ptr<Widget>(parent, controller, _feed);
|
|
result->setInternalState(geometry, this);
|
|
return std::move(result);
|
|
}
|
|
|
|
Widget::Widget(
|
|
QWidget *parent,
|
|
not_null<Window::Controller*> controller,
|
|
not_null<Data::Feed*> feed)
|
|
: Window::SectionWidget(parent, controller)
|
|
, _feed(feed)
|
|
, _scroll(this, st::historyScroll, false)
|
|
, _topBar(this, controller)
|
|
, _topBarShadow(this)
|
|
, _showNext(
|
|
this,
|
|
lang(lng_feed_show_next).toUpper(),
|
|
st::historyComposeButton) {
|
|
_topBar->setActiveChat(_feed);
|
|
|
|
_topBar->move(0, 0);
|
|
_topBar->resizeToWidth(width());
|
|
_topBar->show();
|
|
_topBar->forwardSelectionRequest(
|
|
) | rpl::start_with_next([=] {
|
|
forwardSelected();
|
|
}, _topBar->lifetime());
|
|
_topBar->deleteSelectionRequest(
|
|
) | rpl::start_with_next([=] {
|
|
confirmDeleteSelected();
|
|
}, _topBar->lifetime());
|
|
_topBar->clearSelectionRequest(
|
|
) | rpl::start_with_next([=] {
|
|
clearSelected();
|
|
}, _topBar->lifetime());
|
|
|
|
_topBarShadow->raise();
|
|
updateAdaptiveLayout();
|
|
subscribe(Adaptive::Changed(), [this] { updateAdaptiveLayout(); });
|
|
|
|
_inner = _scroll->setOwnedWidget(
|
|
object_ptr<HistoryView::ListWidget>(this, controller, this));
|
|
_scroll->move(0, _topBar->height());
|
|
_scroll->show();
|
|
|
|
connect(
|
|
_scroll,
|
|
&Ui::ScrollArea::scrolled,
|
|
this,
|
|
[this] { onScroll(); });
|
|
|
|
_showNext->setClickedCallback([this] {
|
|
// #TODO feeds show next
|
|
});
|
|
|
|
_feed->unreadPositionChanges(
|
|
) | rpl::filter([=](const Data::MessagePosition &position) {
|
|
return _undefinedAroundPosition && position;
|
|
}) | rpl::start_with_next([=](const Data::MessagePosition &position) {
|
|
auto memento = HistoryView::ListMemento(position);
|
|
_inner->restoreState(&memento);
|
|
}, lifetime());
|
|
|
|
rpl::single(
|
|
Data::FeedUpdate{ _feed, Data::FeedUpdateFlag::Channels }
|
|
) | rpl::then(
|
|
Auth().data().feedUpdated()
|
|
) | rpl::filter([=](const Data::FeedUpdate &update) {
|
|
return (update.feed == _feed);
|
|
}) | rpl::start_with_next([=](const Data::FeedUpdate &update) {
|
|
checkForSingleChannelFeed();
|
|
}, lifetime());
|
|
}
|
|
|
|
void Widget::checkForSingleChannelFeed() {
|
|
const auto &channels = _feed->channels();
|
|
if (channels.size() > 1) {
|
|
return;
|
|
} else if (!channels.empty()) {
|
|
controller()->showPeerHistory(channels[0]);
|
|
} else {
|
|
controller()->clearSectionStack();
|
|
}
|
|
}
|
|
|
|
Dialogs::RowDescriptor Widget::activeChat() const {
|
|
return Dialogs::RowDescriptor(_feed, MsgId(0));
|
|
}
|
|
|
|
void Widget::updateAdaptiveLayout() {
|
|
_topBarShadow->moveToLeft(
|
|
Adaptive::OneColumn() ? 0 : st::lineWidth,
|
|
_topBar->height());
|
|
}
|
|
|
|
QPixmap Widget::grabForShowAnimation(const Window::SectionSlideParams ¶ms) {
|
|
if (params.withTopBarShadow) _topBarShadow->hide();
|
|
auto result = Ui::GrabWidget(this);
|
|
if (params.withTopBarShadow) _topBarShadow->show();
|
|
return result;
|
|
}
|
|
|
|
void Widget::doSetInnerFocus() {
|
|
_inner->setFocus();
|
|
}
|
|
|
|
bool Widget::showInternal(
|
|
not_null<Window::SectionMemento*> memento,
|
|
const Window::SectionShow ¶ms) {
|
|
if (const auto feedMemento = dynamic_cast<Memento*>(memento.get())) {
|
|
if (feedMemento->feed() == _feed) {
|
|
restoreState(feedMemento);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void Widget::setInternalState(
|
|
const QRect &geometry,
|
|
not_null<Memento*> memento) {
|
|
setGeometry(geometry);
|
|
Ui::SendPendingMoveResizeEvents(this);
|
|
restoreState(memento);
|
|
}
|
|
|
|
bool Widget::cmd_search() {
|
|
if (!inFocusChain()) {
|
|
return false;
|
|
}
|
|
|
|
App::main()->searchInChat(_feed);
|
|
return true;
|
|
}
|
|
|
|
HistoryView::Context Widget::listContext() {
|
|
return HistoryView::Context::Feed;
|
|
}
|
|
|
|
void Widget::listScrollTo(int top) {
|
|
if (_scroll->scrollTop() != top) {
|
|
_scroll->scrollToY(top);
|
|
} else {
|
|
updateInnerVisibleArea();
|
|
}
|
|
}
|
|
|
|
void Widget::listCancelRequest() {
|
|
controller()->showBackFromStack();
|
|
}
|
|
|
|
void Widget::listDeleteRequest() {
|
|
confirmDeleteSelected();
|
|
}
|
|
|
|
rpl::producer<Data::MessagesSlice> Widget::listSource(
|
|
Data::MessagePosition aroundId,
|
|
int limitBefore,
|
|
int limitAfter) {
|
|
return Data::FeedMessagesViewer(
|
|
Storage::FeedMessagesKey(_feed->id(), aroundId),
|
|
limitBefore,
|
|
limitAfter);
|
|
}
|
|
|
|
bool Widget::listAllowsMultiSelect() {
|
|
return true;
|
|
}
|
|
|
|
bool Widget::listIsLessInOrder(
|
|
not_null<HistoryItem*> first,
|
|
not_null<HistoryItem*> second) {
|
|
return first->position() < second->position();
|
|
}
|
|
|
|
void Widget::listSelectionChanged(HistoryView::SelectedItems &&items) {
|
|
HistoryView::TopBarWidget::SelectedState state;
|
|
state.count = items.size();
|
|
for (const auto item : items) {
|
|
if (item.canForward) {
|
|
++state.canForwardCount;
|
|
}
|
|
if (item.canDelete) {
|
|
++state.canDeleteCount;
|
|
}
|
|
}
|
|
_topBar->showSelected(state);
|
|
}
|
|
|
|
std::unique_ptr<Window::SectionMemento> Widget::createMemento() {
|
|
auto result = std::make_unique<Memento>(_feed);
|
|
saveState(result.get());
|
|
return std::move(result);
|
|
}
|
|
|
|
void Widget::saveState(not_null<Memento*> memento) {
|
|
_inner->saveState(memento->list());
|
|
}
|
|
|
|
void Widget::restoreState(not_null<Memento*> memento) {
|
|
const auto list = memento->list();
|
|
if (!list->aroundPosition()) {
|
|
if (const auto position = _feed->unreadPosition()) {
|
|
list->setAroundPosition(position);
|
|
}
|
|
}
|
|
_undefinedAroundPosition = !list->aroundPosition();
|
|
_inner->restoreState(memento->list());
|
|
}
|
|
|
|
void Widget::resizeEvent(QResizeEvent *e) {
|
|
if (!width() || !height()) {
|
|
return;
|
|
}
|
|
updateControlsGeometry();
|
|
}
|
|
|
|
void Widget::updateControlsGeometry() {
|
|
const auto contentWidth = width();
|
|
|
|
const auto newScrollTop = _scroll->scrollTop() + topDelta();
|
|
_topBar->resizeToWidth(contentWidth);
|
|
_topBarShadow->resize(contentWidth, st::lineWidth);
|
|
|
|
const auto bottom = height();
|
|
const auto scrollHeight = bottom
|
|
- _topBar->height()
|
|
- _showNext->height();
|
|
const auto scrollSize = QSize(contentWidth, scrollHeight);
|
|
if (_scroll->size() != scrollSize) {
|
|
_scroll->resize(scrollSize);
|
|
_inner->resizeToWidth(scrollSize.width(), _scroll->height());
|
|
//_inner->restoreScrollPosition();
|
|
}
|
|
|
|
if (!_scroll->isHidden()) {
|
|
if (topDelta()) {
|
|
_scroll->scrollToY(newScrollTop);
|
|
}
|
|
updateInnerVisibleArea();
|
|
}
|
|
const auto fullWidthButtonRect = myrtlrect(
|
|
0,
|
|
bottom - _showNext->height(),
|
|
contentWidth,
|
|
_showNext->height());
|
|
_showNext->setGeometry(fullWidthButtonRect);
|
|
}
|
|
|
|
void Widget::paintEvent(QPaintEvent *e) {
|
|
if (animating()) {
|
|
SectionWidget::paintEvent(e);
|
|
return;
|
|
}
|
|
if (Ui::skipPaintEvent(this, e)) {
|
|
return;
|
|
}
|
|
//if (hasPendingResizedItems()) {
|
|
// updateListSize();
|
|
//}
|
|
|
|
//auto ms = getms();
|
|
//_historyDownShown.step(ms);
|
|
|
|
SectionWidget::PaintBackground(this, e);
|
|
}
|
|
|
|
void Widget::onScroll() {
|
|
updateInnerVisibleArea();
|
|
}
|
|
|
|
void Widget::updateInnerVisibleArea() {
|
|
const auto scrollTop = _scroll->scrollTop();
|
|
_inner->setVisibleTopBottom(scrollTop, scrollTop + _scroll->height());
|
|
}
|
|
|
|
void Widget::showAnimatedHook(
|
|
const Window::SectionSlideParams ¶ms) {
|
|
_topBar->setAnimatingMode(true);
|
|
if (params.withTopBarShadow) _topBarShadow->show();
|
|
}
|
|
|
|
void Widget::showFinishedHook() {
|
|
_topBar->setAnimatingMode(false);
|
|
}
|
|
|
|
bool Widget::wheelEventFromFloatPlayer(QEvent *e) {
|
|
return _scroll->viewportEvent(e);
|
|
}
|
|
|
|
QRect Widget::rectForFloatPlayer() const {
|
|
return mapToGlobal(_scroll->geometry());
|
|
}
|
|
|
|
void Widget::forwardSelected() {
|
|
auto items = _inner->getSelectedItems();
|
|
if (items.empty()) {
|
|
return;
|
|
}
|
|
const auto weak = make_weak(this);
|
|
Window::ShowForwardMessagesBox(std::move(items), [=] {
|
|
if (const auto strong = weak.data()) {
|
|
strong->clearSelected();
|
|
}
|
|
});
|
|
}
|
|
|
|
void Widget::confirmDeleteSelected() {
|
|
auto items = _inner->getSelectedItems();
|
|
if (items.empty()) {
|
|
return;
|
|
}
|
|
const auto weak = make_weak(this);
|
|
const auto box = Ui::show(Box<DeleteMessagesBox>(std::move(items)));
|
|
box->setDeleteConfirmedCallback([=] {
|
|
if (const auto strong = weak.data()) {
|
|
strong->clearSelected();
|
|
}
|
|
});
|
|
}
|
|
|
|
void Widget::clearSelected() {
|
|
_inner->cancelSelection();
|
|
}
|
|
|
|
} // namespace HistoryFeed
|