Improve info layer presentation.

This commit is contained in:
John Preston 2017-11-19 15:37:15 +04:00
parent 59938791ef
commit de15da8a93
8 changed files with 72 additions and 31 deletions

View File

@ -345,6 +345,8 @@ void HistoryTopBarWidget::setHistoryPeer(
not_null<PeerData*> historyPeer) { not_null<PeerData*> historyPeer) {
if (_historyPeer != historyPeer) { if (_historyPeer != historyPeer) {
_historyPeer = historyPeer; _historyPeer = historyPeer;
update();
updateUnreadBadge(); updateUnreadBadge();
if (_historyPeer) { if (_historyPeer) {
_info.create( _info.create(

View File

@ -103,6 +103,8 @@ infoTopBarSearchRow: SearchFieldRow(infoLayerMediaSearch) {
} }
} }
infoSlideDuration: 0;
infoTopBarBackIcon: icon {{ "info_back", boxTitleCloseFg }}; infoTopBarBackIcon: icon {{ "info_back", boxTitleCloseFg }};
infoTopBarBackIconOver: icon {{ "info_back", boxTitleCloseFgOver }}; infoTopBarBackIconOver: icon {{ "info_back", boxTitleCloseFgOver }};
infoTopBarHeight: 54px; infoTopBarHeight: 54px;
@ -184,6 +186,8 @@ infoTopBar: InfoTopBar {
highlightDuration: 240; highlightDuration: 240;
} }
infoLayerTopMinimal: 20px;
infoLayerTopMaximal: 40px;
infoLayerTopBarHeight: boxLayerTitleHeight; infoLayerTopBarHeight: boxLayerTitleHeight;
infoLayerTopBarBackIcon: icon {{ "info_back", boxTitleCloseFg }}; infoLayerTopBarBackIcon: icon {{ "info_back", boxTitleCloseFg }};
infoLayerTopBarBackIconOver: icon {{ "info_back", boxTitleCloseFgOver }}; infoLayerTopBarBackIconOver: icon {{ "info_back", boxTitleCloseFgOver }};

View File

@ -137,8 +137,12 @@ int LayerWidget::resizeGetHeight(int newWidth) {
if (newHeight > windowHeight || newWidth >= windowWidth) { if (newHeight > windowHeight || newWidth >= windowWidth) {
newHeight = windowHeight; newHeight = windowHeight;
} }
auto layerTop = snap(
windowHeight / 24,
st::infoLayerTopMinimal,
st::infoLayerTopMaximal);
setRoundedCorners(newHeight < windowHeight); setRoundedCorners(layerTop + newHeight < windowHeight);
// First resize content to new width and get the new desired height. // First resize content to new width and get the new desired height.
auto contentTop = st::boxRadius; auto contentTop = st::boxRadius;
@ -148,39 +152,38 @@ int LayerWidget::resizeGetHeight(int newWidth) {
} }
_content->setGeometry(0, contentTop, newWidth, contentHeight); _content->setGeometry(0, contentTop, newWidth, contentHeight);
moveToLeft((windowWidth - newWidth) / 2, (windowHeight - newHeight) / 2); moveToLeft((windowWidth - newWidth) / 2, layerTop);
return newHeight; return newHeight;
} }
void LayerWidget::setRoundedCorners(bool rounded) { void LayerWidget::setRoundedCorners(bool rounded) {
_roundedCorners = rounded; _roundedCorners = rounded;
setAttribute(Qt::WA_OpaquePaintEvent, !_roundedCorners); // setAttribute(Qt::WA_OpaquePaintEvent, !_roundedCorners);
} }
void LayerWidget::paintEvent(QPaintEvent *e) { void LayerWidget::paintEvent(QPaintEvent *e) {
Painter p(this); Painter p(this);
auto clip = e->rect();
auto r = st::boxRadius;
auto parts = RectPart::None | 0;
if (clip.intersects({ 0, 0, width(), r })) {
parts |= RectPart::FullTop;
}
if (_roundedCorners) { if (_roundedCorners) {
auto clip = e->rect();
auto r = st::boxRadius;
auto parts = RectPart::None | 0;
if (clip.intersects({ 0, 0, width(), r })) {
parts |= RectPart::FullTop;
}
if (clip.intersects({ 0, height() - r, width(), r })) { if (clip.intersects({ 0, height() - r, width(), r })) {
parts |= RectPart::FullBottom; parts |= RectPart::FullBottom;
} }
if (parts) { }
App::roundRect( if (parts) {
p, App::roundRect(
rect(), p,
st::boxBg, rect(),
BoxCorners, st::boxBg,
nullptr, BoxCorners,
parts); nullptr,
} parts);
} else {
p.fillRect(0, 0, width(), st::boxRadius, st::boxBg);
} }
} }

View File

@ -80,9 +80,11 @@ inline auto AddCountedButton(
parent, parent,
std::move(text), std::move(text),
st::infoSharedMediaButton)) st::infoSharedMediaButton))
)->setDuration(
st::infoSlideDuration
)->toggleOn( )->toggleOn(
rpl::duplicate(forked) rpl::duplicate(forked) | rpl::map($1 > 0)
| rpl::map($1 > 0)); );
tracker.track(button); tracker.track(button);
return button; return button;
}; };

View File

@ -64,7 +64,11 @@ object_ptr<Ui::RpWidget> CreateSkipWidget(
object_ptr<Ui::SlideWrap<>> CreateSlideSkipWidget( object_ptr<Ui::SlideWrap<>> CreateSlideSkipWidget(
not_null<Ui::RpWidget*> parent) { not_null<Ui::RpWidget*> parent) {
return Ui::CreateSlideSkipWidget(parent, st::infoProfileSkip); auto result = Ui::CreateSlideSkipWidget(
parent,
st::infoProfileSkip);
result->setDuration(st::infoSlideDuration);
return result;
} }
template <typename Text, typename ToggleOn, typename Callback> template <typename Text, typename ToggleOn, typename Callback>
@ -82,7 +86,9 @@ auto AddActionButton(
std::move(text), std::move(text),
st)) st))
); );
result->toggleOn( result->setDuration(
st::infoSlideDuration
)->toggleOn(
std::move(toggleOn) std::move(toggleOn)
)->entity()->addClickHandler(std::move(callback)); )->entity()->addClickHandler(std::move(callback));
result->finishAnimating(); result->finishAnimating();
@ -260,7 +266,11 @@ object_ptr<Ui::RpWidget> DetailsFiller::setupInfo() {
result, result,
object_ptr<Ui::PlainShadow>(result), object_ptr<Ui::PlainShadow>(result),
st::infoProfileSeparatorPadding) st::infoProfileSeparatorPadding)
)->toggleOn(std::move(tracker).atLeastOneShownValue()); )->setDuration(
st::infoSlideDuration
)->toggleOn(
std::move(tracker).atLeastOneShownValue()
);
object_ptr<FloatingIcon>( object_ptr<FloatingIcon>(
result, result,
st::infoIconInformation, st::infoIconInformation,
@ -591,7 +601,11 @@ void ActionsFiller::addJoinChannelAction(
CreateSkipWidget( CreateSkipWidget(
_wrap, _wrap,
st::infoBlockButtonSkip)) st::infoBlockButtonSkip))
)->toggleOn(rpl::duplicate(joinVisible)); )->setDuration(
st::infoSlideDuration
)->toggleOn(
rpl::duplicate(joinVisible)
);
} }
void ActionsFiller::fillUserActions(not_null<UserData*> user) { void ActionsFiller::fillUserActions(not_null<UserData*> user) {
@ -730,7 +744,11 @@ object_ptr<Ui::RpWidget> SetupChannelMembers(
auto result = object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>( auto result = object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>(
parent, parent,
object_ptr<Ui::VerticalLayout>(parent)); object_ptr<Ui::VerticalLayout>(parent));
result->toggleOn(std::move(membersShown)); result->setDuration(
st::infoSlideDuration
)->toggleOn(
std::move(membersShown)
);
auto members = result->entity(); auto members = result->entity();
members->add(object_ptr<BoxContentDivider>(members)); members->add(object_ptr<BoxContentDivider>(members));

View File

@ -100,7 +100,11 @@ object_ptr<Ui::RpWidget> InnerWidget::setupContent(
_infoWrap = result->add(object_ptr<Ui::SlideWrap<>>( _infoWrap = result->add(object_ptr<Ui::SlideWrap<>>(
result, result,
std::move(details)) std::move(details))
)->toggleOn(_cover->toggledValue()); )->setDuration(
st::infoSlideDuration
)->toggleOn(
_cover->toggledValue()
);
} else { } else {
result->add(std::move(details)); result->add(std::move(details));
} }
@ -215,7 +219,11 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
// }, result->lifetime()); // }, result->lifetime());
// //
// Using that instead // Using that instead
result->toggleOn(tracker.atLeastOneShownValue()); result->setDuration(
st::infoSlideDuration
)->toggleOn(
tracker.atLeastOneShownValue()
);
auto layout = result->entity(); auto layout = result->entity();

View File

@ -41,6 +41,9 @@ TextWithLabel CreateTextWithLabel(
parent, parent,
object_ptr<Ui::VerticalLayout>(parent), object_ptr<Ui::VerticalLayout>(parent),
padding); padding);
result->setDuration(
st::infoSlideDuration
);
auto layout = result->entity(); auto layout = result->entity();
auto nonEmptyText = std::move(text) auto nonEmptyText = std::move(text)
| rpl::before_next([slide = result.data()]( | rpl::before_next([slide = result.data()](

View File

@ -60,10 +60,11 @@ SlideWrap<RpWidget> *SlideWrap<RpWidget>::setDuration(int duration) {
SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggle( SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggle(
bool shown, bool shown,
anim::type animated) { anim::type animated) {
auto animate = (animated == anim::type::normal) && _duration;
auto changed = (_toggled != shown); auto changed = (_toggled != shown);
if (changed) { if (changed) {
_toggled = shown; _toggled = shown;
if (animated == anim::type::normal) { if (animate) {
_animation.start( _animation.start(
[this] { animationStep(); }, [this] { animationStep(); },
_toggled ? 0. : 1., _toggled ? 0. : 1.,
@ -72,7 +73,7 @@ SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggle(
anim::linear); anim::linear);
} }
} }
if (animated == anim::type::normal) { if (animate) {
animationStep(); animationStep();
} else { } else {
finishAnimating(); finishAnimating();