diff --git a/Telegram/SourceFiles/history/history_inner_widget.cpp b/Telegram/SourceFiles/history/history_inner_widget.cpp index f88181b59..aaf0587b9 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.cpp +++ b/Telegram/SourceFiles/history/history_inner_widget.cpp @@ -140,16 +140,16 @@ void HistoryInner::BotAbout::clickHandlerPressedChanged( HistoryInner::HistoryInner( not_null historyWidget, + not_null scroll, not_null controller, - Ui::ScrollArea *scroll, not_null history) : RpWidget(nullptr) +, _widget(historyWidget) +, _scroll(scroll) , _controller(controller) , _peer(history->peer) , _history(history) , _migrated(history->migrateFrom()) -, _widget(historyWidget) -, _scroll(scroll) , _scrollDateCheck([this] { scrollDateCheck(); }) , _scrollDateHideTimer([this] { scrollDateHideByTimer(); }) { Instance = this; @@ -2489,12 +2489,16 @@ void HistoryInner::elementShowPollResults( } void HistoryInner::elementShowTooltip(const TextWithEntities &text) { - Ui::Toast::Show(_widget, Ui::Toast::Config{ + if (const auto strong = _topToast.get()) { + strong->hideAnimated(); + } + _topToast = Ui::Toast::Show(_scroll, Ui::Toast::Config{ .text = text, .st = &st::historyInfoToast, .durationMs = CountToastDuration(text), .multiline = true, .dark = true, + .slideSide = RectPart::Top, }); } diff --git a/Telegram/SourceFiles/history/history_inner_widget.h b/Telegram/SourceFiles/history/history_inner_widget.h index 1a95b2d76..1f9f1df43 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.h +++ b/Telegram/SourceFiles/history/history_inner_widget.h @@ -34,6 +34,9 @@ class SessionController; namespace Ui { class PopupMenu; +namespace Toast { +class Instance; +} // namespace Toast } // namespace Ui class HistoryWidget; @@ -49,8 +52,8 @@ public: HistoryInner( not_null historyWidget, + not_null scroll, not_null controller, - Ui::ScrollArea *scroll, not_null history); Main::Session &session() const; @@ -312,14 +315,20 @@ private: static HistoryInner *Instance; - not_null _controller; - + const not_null _widget; + const not_null _scroll; + const not_null _controller; const not_null _peer; const not_null _history; + History *_migrated = nullptr; int _contentWidth = 0; int _historyPaddingTop = 0; + // Save visible area coords for painting / pressing userpics. + int _visibleAreaTop = 0; + int _visibleAreaBottom = 0; + // With migrated history we perhaps do not need to display // the first _history message date (just skip it by height). int _historySkipHeight = 0; @@ -327,8 +336,6 @@ private: std::unique_ptr _botAbout; std::unique_ptr _emptyPainter; - HistoryWidget *_widget = nullptr; - Ui::ScrollArea *_scroll = nullptr; mutable History *_curHistory = nullptr; mutable int _curBlock = 0; mutable int _curItem = 0; @@ -375,10 +382,7 @@ private: QTimer _touchScrollTimer; base::unique_qptr _menu; - - // save visible area coords for painting / pressing userpics - int _visibleAreaTop = 0; - int _visibleAreaBottom = 0; + base::weak_ptr _topToast; bool _scrollDateShown = false; Ui::Animations::Simple _scrollDateOpacity; diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 38c36dd7a..c8399dde0 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -1842,7 +1842,8 @@ void HistoryWidget::showHistory( } _scroll->hide(); - _list = _scroll->setOwnedWidget(object_ptr(this, controller(), _scroll, _history)); + _list = _scroll->setOwnedWidget( + object_ptr(this, _scroll, controller(), _history)); _list->show(); _updateHistoryItems.stop(); diff --git a/Telegram/lib_ui b/Telegram/lib_ui index 48a831574..7849f0561 160000 --- a/Telegram/lib_ui +++ b/Telegram/lib_ui @@ -1 +1 @@ -Subproject commit 48a83157407c555d3a0c17026aced41308138d49 +Subproject commit 7849f0561b7d8d0e51e3fec3dcfe07e1502c82cc