Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
79 lines
2.0 KiB
C++
79 lines
2.0 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 "window/window_adaptive.h"
|
|
|
|
#include "history/history_item.h"
|
|
#include "data/data_media_types.h"
|
|
#include "data/data_session.h"
|
|
#include "core/application.h"
|
|
#include "core/core_settings.h"
|
|
|
|
namespace Window {
|
|
|
|
Adaptive::Adaptive() = default;
|
|
|
|
void Adaptive::setWindowLayout(WindowLayout value) {
|
|
_layout = value;
|
|
}
|
|
|
|
void Adaptive::setChatLayout(ChatLayout value) {
|
|
_chatLayout = value;
|
|
}
|
|
|
|
rpl::producer<> Adaptive::value() const {
|
|
return rpl::merge(
|
|
Core::App().settings().adaptiveForWideValue() | rpl::to_empty,
|
|
_chatLayout.changes() | rpl::to_empty,
|
|
_layout.changes() | rpl::to_empty);
|
|
}
|
|
|
|
rpl::producer<> Adaptive::changes() const {
|
|
return rpl::merge(
|
|
Core::App().settings().adaptiveForWideChanges() | rpl::to_empty,
|
|
_chatLayout.changes() | rpl::to_empty,
|
|
_layout.changes() | rpl::to_empty);
|
|
}
|
|
|
|
rpl::producer<bool> Adaptive::oneColumnValue() const {
|
|
return _layout.value(
|
|
) | rpl::map([=] {
|
|
return isOneColumn();
|
|
});
|
|
}
|
|
|
|
rpl::producer<Adaptive::ChatLayout> Adaptive::chatLayoutValue() const {
|
|
return _chatLayout.value();
|
|
}
|
|
|
|
bool Adaptive::isOneColumn() const {
|
|
return _layout.current() == WindowLayout::OneColumn;
|
|
}
|
|
|
|
bool Adaptive::isNormal() const {
|
|
return _layout.current() == WindowLayout::Normal;
|
|
}
|
|
|
|
bool Adaptive::isThreeColumn() const {
|
|
return _layout.current() == WindowLayout::ThreeColumn;
|
|
}
|
|
|
|
rpl::producer<bool> Adaptive::chatWideValue() const {
|
|
return rpl::combine(
|
|
_chatLayout.value(
|
|
) | rpl::map(rpl::mappers::_1 == Adaptive::ChatLayout::Wide),
|
|
Core::App().settings().adaptiveForWideValue()
|
|
) | rpl::map(rpl::mappers::_1 && rpl::mappers::_2);
|
|
}
|
|
|
|
bool Adaptive::isChatWide() const {
|
|
return Core::App().settings().adaptiveForWide()
|
|
&& (_chatLayout.current() == Adaptive::ChatLayout::Wide);
|
|
}
|
|
|
|
} // namespace Window
|