1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
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
|