Show third column only when explicitly requested.

This allows you to show info in layer from mention links.
This commit is contained in:
John Preston 2017-12-04 11:33:33 +04:00
parent 629c216a7f
commit e1c68892d4
23 changed files with 184 additions and 120 deletions

View File

@ -101,9 +101,7 @@ bool HasRecentActions(not_null<ChannelData*> channel) {
void ShowRecentActions(
not_null<Window::Controller*> controller,
not_null<ChannelData*> channel) {
controller->showSection(
AdminLog::SectionMemento(channel),
Window::SectionShow());
controller->showSection(AdminLog::SectionMemento(channel));
}

View File

@ -28,16 +28,26 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
namespace Dialogs {
void ShowSearchFromBox(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<PeerData*> peer,
base::lambda<void(not_null<UserData*>)> callback,
base::lambda<void()> closedCallback) {
auto createController = [window, peer, callback = std::move(callback)]() -> std::unique_ptr<PeerListController> {
auto createController = [
navigation,
peer,
callback = std::move(callback)
]() -> std::unique_ptr<PeerListController> {
if (peer) {
if (auto chat = peer->asChat()) {
return std::make_unique<Dialogs::ChatSearchFromController>(window, chat, std::move(callback));
return std::make_unique<Dialogs::ChatSearchFromController>(
navigation,
chat,
std::move(callback));
} else if (auto group = peer->asMegagroup()) {
return std::make_unique<Dialogs::ChannelSearchFromController>(window, group, std::move(callback));
return std::make_unique<Dialogs::ChannelSearchFromController>(
navigation,
group,
std::move(callback));
}
}
return nullptr;
@ -52,7 +62,7 @@ void ShowSearchFromBox(
}
ChatSearchFromController::ChatSearchFromController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChatData*> chat,
base::lambda<void(not_null<UserData*>)> callback)
: PeerListController()
@ -123,11 +133,11 @@ void ChatSearchFromController::appendRow(not_null<UserData*> user) {
}
ChannelSearchFromController::ChannelSearchFromController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
base::lambda<void(not_null<UserData*>)> callback)
: ParticipantsBoxController(
window,
navigation,
channel,
ParticipantsBoxController::Role::Members)
, _callback(std::move(callback)) {

View File

@ -26,7 +26,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
namespace Dialogs {
void ShowSearchFromBox(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<PeerData*> peer,
base::lambda<void(not_null<UserData*>)> callback,
base::lambda<void()> closedCallback);
@ -34,7 +34,7 @@ void ShowSearchFromBox(
class ChatSearchFromController : public PeerListController, protected base::Subscriber {
public:
ChatSearchFromController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChatData*> chat,
base::lambda<void(not_null<UserData*>)> callback);
@ -54,7 +54,7 @@ private:
class ChannelSearchFromController : public Profile::ParticipantsBoxController {
public:
ChannelSearchFromController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
base::lambda<void(not_null<UserData*>)> callback);

View File

@ -242,7 +242,9 @@ void HistoryTopBarWidget::toggleInfoSection() {
Auth().data().setThirdSectionInfoEnabled(true);
Auth().saveDataDelayed();
if (Adaptive::ThreeColumn()) {
_controller->showSection(Info::Memento(_historyPeer->id));
_controller->showSection(
Info::Memento(_historyPeer->id),
Window::SectionShow().withThirdColumn());
} else {
_controller->resizeForThirdSection();
_controller->updateColumnLayout();

View File

@ -3887,7 +3887,7 @@ void HistoryWidget::pushTabbedSelectorToThirdSection(
return;
} else if (!_canSendMessages) {
Auth().data().setTabbedReplacedWithInfo(true);
controller()->showPeerInfo(_peer, params);
controller()->showPeerInfo(_peer, params.withThirdColumn());
return;
}
Auth().data().setTabbedReplacedWithInfo(false);
@ -3903,7 +3903,7 @@ void HistoryWidget::pushTabbedSelectorToThirdSection(
returnTabbedSelector(std::move(selector));
}));
controller()->resizeForThirdSection();
controller()->showSection(std::move(memento), params);
controller()->showSection(std::move(memento), params.withThirdColumn());
destroyingPanel.destroy();
}
@ -3912,7 +3912,7 @@ void HistoryWidget::pushInfoToThirdSection(
if (!_peer) {
return;
}
controller()->showPeerInfo(_peer, params);
controller()->showPeerInfo(_peer, params.withThirdColumn());
}
void HistoryWidget::toggleTabbedSelectorMode() {

View File

@ -157,6 +157,20 @@ void Controller::saveSearchState(not_null<ContentMemento*> memento) {
}
}
void Controller::showSection(
Window::SectionMemento &&memento,
const Window::SectionShow &params) {
if (!_widget->showInternal(&memento, params)) {
_window->showSection(std::move(memento), params);
}
}
void Controller::showBackFromStack(const Window::SectionShow &params) {
if (!_widget->showBackFromStackInternal(params)) {
_window->showBackFromStack(params);
}
}
auto Controller::produceSearchQuery(
const QString &query) const -> SearchQuery {
auto result = SearchQuery();

View File

@ -22,15 +22,12 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include <rpl/variable.h>
#include "data/data_search_controller.h"
#include "window/window_controller.h"
namespace Ui {
class SearchFieldController;
} // namespace Ui
namespace Window {
class Controller;
} // namespace Window
namespace Info {
enum class Wrap;
@ -70,7 +67,7 @@ private:
};
class Controller {
class Controller : public Window::Navigation {
public:
Controller(
not_null<WrapWidget*> widget,
@ -118,6 +115,15 @@ public:
void saveSearchState(not_null<ContentMemento*> memento);
void showSection(
Window::SectionMemento &&memento,
const Window::SectionShow &params = Window::SectionShow()) override;
void showBackFromStack(
const Window::SectionShow &params = Window::SectionShow()) override;
not_null<Window::Controller*> parentController() override {
return _window;
}
rpl::lifetime &lifetime() {
return _lifetime;
}

View File

@ -86,8 +86,8 @@ void LayerWidget::parentResized() {
Window::SectionShow::Way::Forward,
anim::type::instant,
anim::activation::background));
} else if (_controller->canShowThirdSectionWithoutResize()) {
takeToThirdSection();
//} else if (_controller->canShowThirdSectionWithoutResize()) {
// takeToThirdSection();
} else {
auto newWidth = qMin(
parentWidth - 2 * st::infoMinimalLayerMargin,
@ -97,29 +97,31 @@ void LayerWidget::parentResized() {
}
bool LayerWidget::takeToThirdSection() {
Ui::FocusPersister persister(this);
auto localCopy = _controller;
auto memento = MoveMemento(std::move(_content));
localCopy->hideSpecialLayer(anim::type::instant);
return false;
// When creating third section in response to the window
// size allowing it to fit without window resize we want
// to save that we didn't extend the window while showing
// the third section, so that when we close it we won't
// shrink the window size.
//
// See https://github.com/telegramdesktop/tdesktop/issues/4091
Auth().data().setThirdSectionExtendedBy(0);
//Ui::FocusPersister persister(this);
//auto localCopy = _controller;
//auto memento = MoveMemento(std::move(_content));
//localCopy->hideSpecialLayer(anim::type::instant);
Auth().data().setThirdSectionInfoEnabled(true);
Auth().saveDataDelayed();
localCopy->showSection(
std::move(memento),
Window::SectionShow(
Window::SectionShow::Way::ClearStack,
anim::type::instant,
anim::activation::background));
return true;
//// When creating third section in response to the window
//// size allowing it to fit without window resize we want
//// to save that we didn't extend the window while showing
//// the third section, so that when we close it we won't
//// shrink the window size.
////
//// See https://github.com/telegramdesktop/tdesktop/issues/4091
//Auth().data().setThirdSectionExtendedBy(0);
//Auth().data().setThirdSectionInfoEnabled(true);
//Auth().saveDataDelayed();
//localCopy->showSection(
// std::move(memento),
// Window::SectionShow(
// Window::SectionShow::Way::ClearStack,
// anim::type::instant,
// anim::activation::background));
//return true;
}
bool LayerWidget::showSectionInternal(

View File

@ -302,7 +302,7 @@ void WrapWidget::createTopBar() {
_topBar->enableBackButton();
_topBar->backRequest()
| rpl::start_with_next([this] {
showBackFromStack();
_controller->showBackFromStack();
}, _topBar->lifetime());
} else if (wrapValue == Wrap::Side) {
auto close = _topBar->addButton(
@ -441,19 +441,18 @@ bool WrapWidget::requireTopBarSearch() const {
return false;
}
void WrapWidget::showBackFromStack() {
auto params = Window::SectionShow(
Window::SectionShow::Way::Backward);
bool WrapWidget::showBackFromStackInternal(
const Window::SectionShow &params) {
if (hasStackHistory()) {
auto last = std::move(_historyStack.back());
_historyStack.pop_back();
showNewContent(
last.section.get(),
params);
params.withWay(Window::SectionShow::Way::Backward));
//_anotherTabMemento = std::move(last.anotherTab);
} else if (wrap() != Wrap::Layer) {
_controller->window()->showBackFromStack(params);
return true;
}
return (wrap() == Wrap::Layer);
}
not_null<Ui::RpWidget*> WrapWidget::topWidget() const {
@ -718,7 +717,7 @@ bool WrapWidget::returnToFirstStackFrame(
&& firstSection.type() == memento->section().type()
&& firstSection.type() == Section::Type::Profile) {
_historyStack.resize(1);
showBackFromStack();
_controller->showBackFromStack();
return true;
}
return false;
@ -809,7 +808,7 @@ void WrapWidget::resizeEvent(QResizeEvent *e) {
void WrapWidget::keyPressEvent(QKeyEvent *e) {
if (e->key() == Qt::Key_Escape) {
if (hasStackHistory() || wrap() != Wrap::Layer) {
showBackFromStack();
_controller->showBackFromStack();
return;
}
}
@ -840,7 +839,7 @@ object_ptr<Ui::RpWidget> WrapWidget::createTopBarSurrogate(
auto result = object_ptr<Ui::AbstractButton>(parent);
result->addClickHandler([weak = make_weak(this)]{
if (weak) {
weak->showBackFromStack();
weak->_controller->showBackFromStack();
}
});
result->setGeometry(_topBar->geometry());

View File

@ -109,6 +109,7 @@ public:
bool showInternal(
not_null<Window::SectionMemento*> memento,
const Window::SectionShow &params) override;
bool showBackFromStackInternal(const Window::SectionShow &params);
std::unique_ptr<Window::SectionMemento> createMemento() override;
rpl::producer<int> desiredHeightValue() const override;
@ -154,7 +155,6 @@ private:
bool hasStackHistory() const {
return !_historyStack.empty();
}
void showBackFromStack();
void showNewContent(not_null<ContentMemento*> memento);
void showNewContent(
not_null<ContentMemento*> memento,

View File

@ -91,7 +91,7 @@ inline auto AddCountedButton(
inline auto AddButton(
Ui::VerticalLayout *parent,
not_null<Window::Controller*> controller,
not_null<Window::Navigation*> navigation,
not_null<PeerData*> peer,
PeerData *migrated,
Type type,
@ -101,8 +101,8 @@ inline auto AddButton(
Profile::SharedMediaCountValue(peer, migrated, type),
MediaText(type),
tracker)->entity();
result->addClickHandler([controller, peer, type] {
controller->showSection(
result->addClickHandler([=] {
navigation->showSection(
Info::Memento(peer->id, Section(type)));
});
return std::move(result);
@ -110,7 +110,7 @@ inline auto AddButton(
inline auto AddCommonGroupsButton(
Ui::VerticalLayout *parent,
not_null<Window::Controller*> controller,
not_null<Window::Navigation*> navigation,
not_null<UserData*> user,
Ui::MultiSlideTracker &tracker) {
auto result = AddCountedButton(
@ -120,8 +120,8 @@ inline auto AddCommonGroupsButton(
return lng_profile_common_groups(lt_count, count);
},
tracker)->entity();
result->addClickHandler([controller, user] {
controller->showSection(
result->addClickHandler([=] {
navigation->showSection(
Info::Memento(user->id, Section::Type::CommonGroups));
});
return std::move(result);

View File

@ -113,7 +113,7 @@ InnerWidget::InnerWidget(
// const style::icon &icon) {
// auto result = AddButton(
// content,
// _controller->window(),
// _controller,
// _controller->peer(),
// _controller->migrated(),
// type,
@ -128,7 +128,7 @@ InnerWidget::InnerWidget(
// const style::icon &icon) {
// auto result = AddCommonGroupsButton(
// content,
// _controller->window(),
// _controller,
// user,
// tracker);
// object_ptr<Profile::FloatingIcon>(

View File

@ -151,7 +151,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
const style::icon &icon) {
auto result = Media::AddButton(
content,
_controller->window(),
_controller,
_peer,
_migrated,
type,
@ -166,7 +166,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
const style::icon &icon) {
auto result = Media::AddCommonGroupsButton(
content,
_controller->window(),
_controller,
user,
tracker);
object_ptr<Profile::FloatingIcon>(

View File

@ -59,7 +59,7 @@ Members::Members(
: RpWidget(parent)
, _controller(controller)
, _peer(peer)
, _listController(CreateMembersController(controller->window(), _peer)) {
, _listController(CreateMembersController(controller, _peer)) {
setupHeader();
setupList();
setContent(_list.data());

View File

@ -45,7 +45,7 @@ class ChatMembersController
, public base::has_weak_ptr {
public:
ChatMembersController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChatData*> chat);
void prepare() override;
@ -80,7 +80,7 @@ private:
void removeMember(not_null<UserData*> user);
Type computeType(not_null<UserData*> user);
not_null<Window::Controller*> _window;
not_null<Window::Navigation*> _navigation;
not_null<ChatData*> _chat;
base::Timer _sortByOnlineTimer;
@ -89,10 +89,10 @@ private:
};
ChatMembersController::ChatMembersController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChatData*> chat)
: PeerListController()
, _window(window)
, _navigation(navigation)
, _chat(chat) {
_sortByOnlineTimer.setCallback([this] { sortByOnline(); });
}
@ -267,7 +267,7 @@ auto ChatMembersController::computeType(
}
void ChatMembersController::rowClicked(not_null<PeerListRow*> row) {
_window->showPeerInfo(row->peer());
_navigation->showPeerInfo(row->peer());
}
void ChatMembersController::rowActionClicked(
@ -286,7 +286,7 @@ Ui::PopupMenu *ChatMembersController::rowContextMenu(
lang(lng_context_view_profile),
[weak = base::make_weak(this), user] {
if (weak) {
weak->_window->showPeerInfo(user);
weak->_navigation->showPeerInfo(user);
}
});
if (canRemoveMember) {
@ -376,17 +376,17 @@ void MemberListRow::paintNameIcon(
}
std::unique_ptr<PeerListController> CreateMembersController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<PeerData*> peer) {
if (auto chat = peer->asChat()) {
return std::make_unique<ChatMembersController>(
window,
navigation,
chat);
} else if (auto channel = peer->asChannel()) {
using ChannelMembersController
= ::Profile::ParticipantsBoxController;
return std::make_unique<ChannelMembersController>(
window,
navigation,
channel,
ChannelMembersController::Role::Profile);
}

View File

@ -23,7 +23,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include "boxes/peer_list_box.h"
namespace Window {
class Controller;
class Navigation;
} // namespace Window
namespace Info {
@ -74,7 +74,7 @@ private:
};
std::unique_ptr<PeerListController> CreateMembersController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<PeerData*> peer);
} // namespace Profile

View File

@ -2604,10 +2604,14 @@ void MainWidget::showSection(
&memento,
params)) {
return;
} else if (_thirdSection && _thirdSection->showInternal(
&memento,
params)) {
return;
//
// Now third section handles only its own showSection() requests.
// General showSection() should show layer or main_section instead.
//
//} else if (_thirdSection && _thirdSection->showInternal(
// &memento,
// params)) {
// return;
}
// If the window was not resized, but we've enabled
@ -2762,7 +2766,7 @@ void MainWidget::showNewSection(
thirdSectionTop,
st::columnMinimalWidthThird,
height() - thirdSectionTop);
auto newThirdSection = Adaptive::ThreeColumn()
auto newThirdSection = (Adaptive::ThreeColumn() && params.thirdColumn)
? memento.createWidget(
this,
_controller,
@ -3522,7 +3526,7 @@ void MainWidget::updateThirdColumnToCurrentPeer(
_controller->showSection(
std::move(*thirdSectionForCurrentMainSection(peer)),
params);
params.withThirdColumn());
};
auto switchTabbedFast = [&] {
saveOldThirdSection();

View File

@ -33,9 +33,13 @@ constexpr auto kSpecialRequestTimeoutMs = 6000; // 4 seconds timeout for it to w
} // namespace
ConfigLoader::ConfigLoader(not_null<Instance*> instance, RPCDoneHandlerPtr onDone, RPCFailHandlerPtr onFail) : _instance(instance)
, _doneHandler(onDone)
, _failHandler(onFail) {
ConfigLoader::ConfigLoader(
not_null<Instance*> instance,
RPCDoneHandlerPtr onDone,
RPCFailHandlerPtr onFail)
: _instance(instance)
, _doneHandler(onDone)
, _failHandler(onFail) {
_enumDCTimer.setCallback([this] { enumerate(); });
_specialEnumTimer.setCallback([this] { sendSpecialRequest(); });
}

View File

@ -87,6 +87,9 @@ void SpecialConfigRequest::dnsFinished() {
if (!_dnsReply) {
return;
}
if (_dnsReply->error() != QNetworkReply::NoError) {
LOG(("Config Error: Failed to get dns response JSON, error: %1 (%2)").arg(_dnsReply->errorString()).arg(_dnsReply->error()));
}
auto result = _dnsReply->readAll();
_dnsReply.release()->deleteLater();

View File

@ -45,11 +45,11 @@ constexpr auto kSortByOnlineDelay = TimeMs(1000);
} // namespace
ParticipantsBoxController::ParticipantsBoxController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
Role role)
: PeerListController(CreateSearchController(channel, role, &_additional))
, _window(window)
, _navigation(navigation)
, _channel(channel)
, _role(role) {
if (_channel->mgInfo) {
@ -162,11 +162,11 @@ ParticipantsBoxController::CreateSearchController(
}
void ParticipantsBoxController::Start(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
Role role) {
auto controller = std::make_unique<ParticipantsBoxController>(
window,
navigation,
channel,
role);
auto initBox = [role, channel, controller = controller.get()](not_null<PeerListBox*> box) {
@ -582,7 +582,7 @@ void ParticipantsBoxController::rowClicked(not_null<PeerListRow*> row) {
} else if (_role == Role::Restricted || _role == Role::Kicked) {
showRestricted(user);
} else {
_window->showPeerInfo(row->peer());
_navigation->showPeerInfo(row->peer());
}
}
@ -643,7 +643,7 @@ Ui::PopupMenu *ParticipantsBoxController::rowContextMenu(
lang(lng_context_view_profile),
[weak = base::make_weak(this), user] {
if (const auto strong = weak.get()) {
strong->_window->showPeerInfo(user);
strong->_navigation->showPeerInfo(user);
}
});
if (canEditAdmin(user)) {

View File

@ -28,7 +28,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include "info/profile/info_profile_members_controllers.h"
namespace Window {
class Controller;
class Navigation;
} // namespace Window
namespace Profile {
@ -48,7 +48,7 @@ public:
Kicked,
};
static void Start(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
Role role);
@ -65,7 +65,7 @@ public:
};
ParticipantsBoxController(
not_null<Window::Controller*> window,
not_null<Window::Navigation*> navigation,
not_null<ChannelData*> channel,
Role role);
@ -142,7 +142,7 @@ private:
bool canRestrictUser(not_null<UserData*> user) const;
bool canEditAdminByRights(not_null<UserData*> user) const;
not_null<Window::Controller*> _window;
not_null<Window::Navigation*> _navigation;
not_null<ChannelData*> _channel;
Role _role = Role::Admins;
int _offset = 0;

View File

@ -367,24 +367,24 @@ void Controller::showPeerHistory(
msgId);
}
void Controller::showPeerInfo(
void Navigation::showPeerInfo(
PeerId peerId,
const SectionShow &params) {
if (Adaptive::ThreeColumn()
&& !Auth().data().thirdSectionInfoEnabled()) {
Auth().data().setThirdSectionInfoEnabled(true);
Auth().saveDataDelayed();
}
//if (Adaptive::ThreeColumn()
// && !Auth().data().thirdSectionInfoEnabled()) {
// Auth().data().setThirdSectionInfoEnabled(true);
// Auth().saveDataDelayed();
//}
showSection(Info::Memento(peerId), params);
}
void Controller::showPeerInfo(
void Navigation::showPeerInfo(
not_null<PeerData*> peer,
const SectionShow &params) {
showPeerInfo(peer->id, params);
}
void Controller::showPeerInfo(
void Navigation::showPeerInfo(
not_null<History*> history,
const SectionShow &params) {
showPeerInfo(history->peer->id, params);

View File

@ -28,6 +28,8 @@ class MainWidget;
namespace Window {
class LayerWidget;
class MainWindow;
class SectionMemento;
enum class GifPauseReason {
Any = 0,
@ -64,17 +66,43 @@ struct SectionShow {
SectionShow withWay(Way newWay) const {
return SectionShow(newWay, animated, activation);
}
SectionShow withThirdColumn() const {
auto copy = *this;
copy.thirdColumn = true;
return copy;
}
Way way = Way::Forward;
anim::type animated = anim::type::normal;
anim::activation activation = anim::activation::normal;
bool thirdColumn = false;
};
class MainWindow;
class SectionMemento;
class Controller;
class Controller {
class Navigation {
public:
virtual void showSection(
SectionMemento &&memento,
const SectionShow &params = SectionShow()) = 0;
virtual void showBackFromStack(
const SectionShow &params = SectionShow()) = 0;
virtual not_null<Controller*> parentController() = 0;
void showPeerInfo(
PeerId peerId,
const SectionShow &params = SectionShow());
void showPeerInfo(
not_null<PeerData*> peer,
const SectionShow &params = SectionShow());
void showPeerInfo(
not_null<History*> history,
const SectionShow &params = SectionShow());
};
class Controller : public Navigation {
public:
Controller(not_null<MainWindow*> window) : _window(window) {
}
@ -126,9 +154,9 @@ public:
void showSection(
SectionMemento &&memento,
const SectionShow &params = SectionShow());
const SectionShow &params = SectionShow()) override;
void showBackFromStack(
const SectionShow &params = SectionShow());
const SectionShow &params = SectionShow()) override;
void showPeerHistory(
PeerId peerId,
@ -143,16 +171,6 @@ public:
const SectionShow &params = SectionShow::Way::ClearStack,
MsgId msgId = ShowAtUnreadMsgId);
void showPeerInfo(
PeerId peerId,
const SectionShow &params = SectionShow());
void showPeerInfo(
not_null<PeerData*> peer,
const SectionShow &params = SectionShow());
void showPeerInfo(
not_null<History*> history,
const SectionShow &params = SectionShow());
void clearSectionStack(
const SectionShow &params = SectionShow::Way::ClearStack) {
showPeerHistory(
@ -186,6 +204,10 @@ public:
return _dialogsListDisplayForced;
}
not_null<Controller*> parentController() override {
return this;
}
private:
int minimalThreeColumnWidth() const;
not_null<MainWidget*> chats() const;