mirror of https://github.com/procxx/kepka.git
Fixed PanelAnimation for Retina, added 1px padding to emoji.
This commit is contained in:
parent
bd2be4e0c1
commit
55b1ba128d
|
@ -30,7 +30,7 @@ semiboldFont: font(fsize semibold);
|
||||||
|
|
||||||
emojiImgSize: 18px; // exceptional value for retina
|
emojiImgSize: 18px; // exceptional value for retina
|
||||||
emojiSize: 18px;
|
emojiSize: 18px;
|
||||||
emojiPadding: 0px;
|
emojiPadding: 1px;
|
||||||
|
|
||||||
lineWidth: 1px;
|
lineWidth: 1px;
|
||||||
|
|
||||||
|
|
|
@ -4219,7 +4219,6 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
|
||||||
if (_list) _list->deleteLater();
|
if (_list) _list->deleteLater();
|
||||||
_list = nullptr;
|
_list = nullptr;
|
||||||
_scroll.takeWidget();
|
_scroll.takeWidget();
|
||||||
updateTopBarSelection();
|
|
||||||
|
|
||||||
clearInlineBot();
|
clearInlineBot();
|
||||||
|
|
||||||
|
@ -4229,6 +4228,9 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
|
||||||
_peer = peerId ? App::peer(peerId) : nullptr;
|
_peer = peerId ? App::peer(peerId) : nullptr;
|
||||||
_channel = _peer ? peerToChannel(_peer->id) : NoChannel;
|
_channel = _peer ? peerToChannel(_peer->id) : NoChannel;
|
||||||
_canSendMessages = canSendMessages(_peer);
|
_canSendMessages = canSendMessages(_peer);
|
||||||
|
|
||||||
|
updateTopBarSelection();
|
||||||
|
|
||||||
if (_peer && _peer->isChannel()) {
|
if (_peer && _peer->isChannel()) {
|
||||||
_peer->asChannel()->updateFull();
|
_peer->asChannel()->updateFull();
|
||||||
_joinChannel->setText(lang(_peer->isMegagroup() ? lng_group_invite_join : lng_channel_join).toUpper());
|
_joinChannel->setText(lang(_peer->isMegagroup() ? lng_group_invite_join : lng_channel_join).toUpper());
|
||||||
|
|
|
@ -30,6 +30,13 @@ void PanelAnimation::setFinalImage(QImage &&finalImage, QRect inner) {
|
||||||
t_assert(!_finalImage.isNull());
|
t_assert(!_finalImage.isNull());
|
||||||
_finalWidth = _finalImage.width();
|
_finalWidth = _finalImage.width();
|
||||||
_finalHeight = _finalImage.height();
|
_finalHeight = _finalImage.height();
|
||||||
|
_finalInnerLeft = inner.x();
|
||||||
|
_finalInnerTop = inner.y();
|
||||||
|
_finalInnerWidth = inner.width();
|
||||||
|
_finalInnerHeight = inner.height();
|
||||||
|
_finalInnerRight = _finalInnerLeft + _finalInnerWidth;
|
||||||
|
_finalInnerBottom = _finalInnerTop + _finalInnerHeight;
|
||||||
|
t_assert(QRect(0, 0, _finalWidth, _finalHeight).contains(inner));
|
||||||
|
|
||||||
setStartWidth();
|
setStartWidth();
|
||||||
setStartHeight();
|
setStartHeight();
|
||||||
|
@ -59,20 +66,12 @@ void PanelAnimation::setFinalImage(QImage &&finalImage, QRect inner) {
|
||||||
t_assert(_finalImage.depth() == static_cast<int>(sizeof(uint32) << 3));
|
t_assert(_finalImage.depth() == static_cast<int>(sizeof(uint32) << 3));
|
||||||
t_assert(_finalImage.bytesPerLine() == (_finalIntsPerLine << 2));
|
t_assert(_finalImage.bytesPerLine() == (_finalIntsPerLine << 2));
|
||||||
t_assert(_finalIntsPerLineAdded >= 0);
|
t_assert(_finalIntsPerLineAdded >= 0);
|
||||||
|
|
||||||
_finalInnerLeft = inner.x();
|
|
||||||
_finalInnerTop = inner.y();
|
|
||||||
_finalInnerWidth = inner.width();
|
|
||||||
_finalInnerHeight = inner.height();
|
|
||||||
_finalInnerRight = _finalInnerLeft + _finalInnerWidth;
|
|
||||||
_finalInnerBottom = _finalInnerTop + _finalInnerHeight;
|
|
||||||
t_assert(QRect(0, 0, _finalWidth, _finalHeight).contains(inner));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::setShadow() {
|
void PanelAnimation::setShadow() {
|
||||||
if (_skipShadow) return;
|
if (_skipShadow) return;
|
||||||
|
|
||||||
_shadow.extend = _st.shadow.extend;
|
_shadow.extend = _st.shadow.extend * cIntRetinaFactor();
|
||||||
_shadow.left = cloneImage(_st.shadow.left);
|
_shadow.left = cloneImage(_st.shadow.left);
|
||||||
if (_shadow.valid()) {
|
if (_shadow.valid()) {
|
||||||
_shadow.topLeft = cloneImage(_st.shadow.topLeft);
|
_shadow.topLeft = cloneImage(_st.shadow.topLeft);
|
||||||
|
@ -101,13 +100,13 @@ void PanelAnimation::setShadow() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::setStartWidth() {
|
void PanelAnimation::setStartWidth() {
|
||||||
_startWidth = qRound(_st.startWidth * _finalImage.width());
|
_startWidth = qRound(_st.startWidth * _finalInnerWidth);
|
||||||
if (_startWidth >= 0) t_assert(_startWidth <= _finalWidth);
|
if (_startWidth >= 0) t_assert(_startWidth <= _finalInnerWidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::setStartHeight() {
|
void PanelAnimation::setStartHeight() {
|
||||||
_startHeight = qRound(_st.startHeight * _finalImage.height());
|
_startHeight = qRound(_st.startHeight * _finalInnerHeight);
|
||||||
if (_startHeight >= 0) t_assert(_startHeight <= _finalHeight);
|
if (_startHeight >= 0) t_assert(_startHeight <= _finalInnerHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::setStartAlpha() {
|
void PanelAnimation::setStartAlpha() {
|
||||||
|
@ -116,7 +115,7 @@ void PanelAnimation::setStartAlpha() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::setStartFadeTop() {
|
void PanelAnimation::setStartFadeTop() {
|
||||||
_startFadeTop = qRound(_st.startFadeTop * _finalImage.height());
|
_startFadeTop = qRound(_st.startFadeTop * _finalInnerHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PanelAnimation::createFadeMask() {
|
void PanelAnimation::createFadeMask() {
|
||||||
|
@ -177,7 +176,8 @@ void PanelAnimation::setCornerMask(Corner &corner, QImage &&image) {
|
||||||
QImage PanelAnimation::cloneImage(const style::icon &source) {
|
QImage PanelAnimation::cloneImage(const style::icon &source) {
|
||||||
if (source.empty()) return QImage();
|
if (source.empty()) return QImage();
|
||||||
|
|
||||||
auto result = QImage(source.width(), source.height(), QImage::Format_ARGB32_Premultiplied);
|
auto result = QImage(source.size() * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
|
||||||
|
result.setDevicePixelRatio(cRetinaFactor());
|
||||||
result.fill(Qt::transparent);
|
result.fill(Qt::transparent);
|
||||||
{
|
{
|
||||||
Painter p(&result);
|
Painter p(&result);
|
||||||
|
|
|
@ -237,7 +237,8 @@ void InnerDropdown::startShowAnimation() {
|
||||||
_a_opacity = base::take(opacityAnimation);
|
_a_opacity = base::take(opacityAnimation);
|
||||||
|
|
||||||
_showAnimation = std_::make_unique<PanelAnimation>(_st.animation, _origin);
|
_showAnimation = std_::make_unique<PanelAnimation>(_st.animation, _origin);
|
||||||
_showAnimation->setFinalImage(std_::move(cache), rect().marginsRemoved(_st.padding));
|
auto inner = rect().marginsRemoved(_st.padding);
|
||||||
|
_showAnimation->setFinalImage(std_::move(cache), QRect(inner.topLeft() * cIntRetinaFactor(), inner.size() * cIntRetinaFactor()));
|
||||||
auto corners = App::cornersMask(ImageRoundRadius::Small);
|
auto corners = App::cornersMask(ImageRoundRadius::Small);
|
||||||
_showAnimation->setCornerMasks(QImage(*corners[0]), QImage(*corners[1]), QImage(*corners[2]), QImage(*corners[3]));
|
_showAnimation->setCornerMasks(QImage(*corners[0]), QImage(*corners[1]), QImage(*corners[2]), QImage(*corners[3]));
|
||||||
_showAnimation->start();
|
_showAnimation->start();
|
||||||
|
|
|
@ -68,7 +68,7 @@ void PopupMenu::init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PopupMenu::handleCompositingUpdate() {
|
void PopupMenu::handleCompositingUpdate() {
|
||||||
_padding = _useTransaprency ? _st.shadow.extend : style::margins(st::lineWidth, st::lineWidth, st::lineWidth, st::lineWidth);
|
_padding = _useTransparency ? _st.shadow.extend : style::margins(st::lineWidth, st::lineWidth, st::lineWidth, st::lineWidth);
|
||||||
_menu->moveToLeft(_padding.left() + _st.scrollPadding.left(), _padding.top() + _st.scrollPadding.top());
|
_menu->moveToLeft(_padding.left() + _st.scrollPadding.left(), _padding.top() + _st.scrollPadding.top());
|
||||||
handleMenuResize();
|
handleMenuResize();
|
||||||
}
|
}
|
||||||
|
@ -126,7 +126,7 @@ void PopupMenu::paintEvent(QPaintEvent *e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PopupMenu::paintBg(Painter &p) {
|
void PopupMenu::paintBg(Painter &p) {
|
||||||
if (_useTransaprency) {
|
if (_useTransparency) {
|
||||||
Shadow::paint(p, _inner, width(), _st.shadow);
|
Shadow::paint(p, _inner, width(), _st.shadow);
|
||||||
App::roundRect(p, _inner, _st.menu.itemBg, ImageRoundRadius::Small);
|
App::roundRect(p, _inner, _st.menu.itemBg, ImageRoundRadius::Small);
|
||||||
} else {
|
} else {
|
||||||
|
@ -307,7 +307,7 @@ void PopupMenu::prepareCache() {
|
||||||
|
|
||||||
void PopupMenu::startOpacityAnimation(bool hiding) {
|
void PopupMenu::startOpacityAnimation(bool hiding) {
|
||||||
_hiding = false;
|
_hiding = false;
|
||||||
if (!_useTransaprency) {
|
if (!_useTransparency) {
|
||||||
_a_opacity.finish();
|
_a_opacity.finish();
|
||||||
if (hiding) {
|
if (hiding) {
|
||||||
hideFinished();
|
hideFinished();
|
||||||
|
@ -334,7 +334,7 @@ void PopupMenu::showStarted() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PopupMenu::startShowAnimation() {
|
void PopupMenu::startShowAnimation() {
|
||||||
if (!_useTransaprency) {
|
if (!_useTransparency) {
|
||||||
_a_show.finish();
|
_a_show.finish();
|
||||||
update();
|
update();
|
||||||
return;
|
return;
|
||||||
|
@ -346,8 +346,8 @@ void PopupMenu::startShowAnimation() {
|
||||||
_a_opacity = base::take(opacityAnimation);
|
_a_opacity = base::take(opacityAnimation);
|
||||||
|
|
||||||
_showAnimation = std_::make_unique<PanelAnimation>(_st.animation, _origin);
|
_showAnimation = std_::make_unique<PanelAnimation>(_st.animation, _origin);
|
||||||
_showAnimation->setFinalImage(std_::move(cache), _inner);
|
_showAnimation->setFinalImage(std_::move(cache), QRect(_inner.topLeft() * cIntRetinaFactor(), _inner.size() * cIntRetinaFactor()));
|
||||||
if (_useTransaprency) {
|
if (_useTransparency) {
|
||||||
auto corners = App::cornersMask(ImageRoundRadius::Small);
|
auto corners = App::cornersMask(ImageRoundRadius::Small);
|
||||||
_showAnimation->setCornerMasks(QImage(*corners[0]), QImage(*corners[1]), QImage(*corners[2]), QImage(*corners[3]));
|
_showAnimation->setCornerMasks(QImage(*corners[0]), QImage(*corners[1]), QImage(*corners[2]), QImage(*corners[3]));
|
||||||
} else {
|
} else {
|
||||||
|
@ -382,7 +382,7 @@ QImage PopupMenu::grabForPanelAnimation() {
|
||||||
result.fill(Qt::transparent);
|
result.fill(Qt::transparent);
|
||||||
{
|
{
|
||||||
Painter p(&result);
|
Painter p(&result);
|
||||||
if (_useTransaprency) {
|
if (_useTransparency) {
|
||||||
App::roundRect(p, _inner, _st.menu.itemBg, ImageRoundRadius::Small);
|
App::roundRect(p, _inner, _st.menu.itemBg, ImageRoundRadius::Small);
|
||||||
} else {
|
} else {
|
||||||
p.fillRect(_inner, _st.menu.itemBg);
|
p.fillRect(_inner, _st.menu.itemBg);
|
||||||
|
@ -410,7 +410,7 @@ void PopupMenu::showMenu(const QPoint &p, PopupMenu *parent, TriggeredSource sou
|
||||||
auto origin = PanelAnimation::Origin::TopLeft;
|
auto origin = PanelAnimation::Origin::TopLeft;
|
||||||
auto w = p - QPoint(0, _padding.top());
|
auto w = p - QPoint(0, _padding.top());
|
||||||
auto r = Sandbox::screenGeometry(p);
|
auto r = Sandbox::screenGeometry(p);
|
||||||
_useTransaprency = Platform::TransparentWindowsSupported(p);
|
_useTransparency = Platform::TransparentWindowsSupported(p);
|
||||||
handleCompositingUpdate();
|
handleCompositingUpdate();
|
||||||
if (rtl()) {
|
if (rtl()) {
|
||||||
if (w.x() - width() < r.x() - _padding.left()) {
|
if (w.x() - width() < r.x() - _padding.left()) {
|
||||||
|
|
|
@ -117,7 +117,7 @@ private:
|
||||||
std_::unique_ptr<PanelAnimation> _showAnimation;
|
std_::unique_ptr<PanelAnimation> _showAnimation;
|
||||||
FloatAnimation _a_show;
|
FloatAnimation _a_show;
|
||||||
|
|
||||||
bool _useTransaprency = true;
|
bool _useTransparency = true;
|
||||||
bool _hiding = false;
|
bool _hiding = false;
|
||||||
QPixmap _cache;
|
QPixmap _cache;
|
||||||
FloatAnimation _a_opacity;
|
FloatAnimation _a_opacity;
|
||||||
|
|
|
@ -23,23 +23,21 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
||||||
|
|
||||||
namespace Window {
|
namespace Window {
|
||||||
|
|
||||||
SlideAnimation::SlideAnimation()
|
|
||||||
: _animation(animation(this, &SlideAnimation::step)) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void SlideAnimation::paintContents(Painter &p, const QRect &update) const {
|
void SlideAnimation::paintContents(Painter &p, const QRect &update) const {
|
||||||
int retina = cIntRetinaFactor();
|
int retina = cIntRetinaFactor();
|
||||||
|
|
||||||
_animation.step(getms());
|
auto progress = _animation.current(getms());
|
||||||
if (a_coordOver.current() > 0) {
|
auto coordUnder = anim::interpolate(0, -st::slideShift, progress);
|
||||||
p.drawPixmap(QRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina), _cacheUnder, QRect(-a_coordUnder.current() * retina, 0, a_coordOver.current() * retina, _cacheUnder.height()));
|
auto coordOver = anim::interpolate(_cacheOver.width() / cIntRetinaFactor(), 0, progress);
|
||||||
p.setOpacity(a_progress.current());
|
if (coordOver) {
|
||||||
p.fillRect(0, 0, a_coordOver.current(), _cacheUnder.height() / retina, st::slideFadeOutBg);
|
p.drawPixmap(QRect(0, 0, coordOver, _cacheUnder.height() / retina), _cacheUnder, QRect(-coordUnder * retina, 0, coordOver * retina, _cacheUnder.height()));
|
||||||
|
p.setOpacity(progress);
|
||||||
|
p.fillRect(0, 0, coordOver, _cacheUnder.height() / retina, st::slideFadeOutBg);
|
||||||
p.setOpacity(1);
|
p.setOpacity(1);
|
||||||
}
|
}
|
||||||
p.drawPixmap(QRect(a_coordOver.current(), 0, _cacheOver.width() / retina, _cacheOver.height() / retina), _cacheOver, QRect(0, 0, _cacheOver.width(), _cacheOver.height()));
|
p.drawPixmap(QRect(coordOver, 0, _cacheOver.width() / retina, _cacheOver.height() / retina), _cacheOver, QRect(0, 0, _cacheOver.width(), _cacheOver.height()));
|
||||||
p.setOpacity(a_progress.current());
|
p.setOpacity(progress);
|
||||||
st::slideShadow.fill(p, QRect(a_coordOver.current() - st::slideShadow.width(), 0, st::slideShadow.width(), _cacheOver.height() / retina));
|
st::slideShadow.fill(p, QRect(coordOver - st::slideShadow.width(), 0, st::slideShadow.width(), _cacheOver.height() / retina));
|
||||||
|
|
||||||
if (_topBarShadowEnabled) {
|
if (_topBarShadowEnabled) {
|
||||||
p.setOpacity(1);
|
p.setOpacity(1);
|
||||||
|
@ -69,42 +67,20 @@ void SlideAnimation::setFinishedCallback(FinishedCallback &&callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlideAnimation::start() {
|
void SlideAnimation::start() {
|
||||||
int delta = st::slideShift;
|
auto delta = st::slideShift;
|
||||||
if (_direction == SlideDirection::FromLeft) {
|
auto fromLeft = (_direction == SlideDirection::FromLeft);
|
||||||
a_progress = anim::fvalue(1, 0);
|
if (fromLeft) std::swap(_cacheUnder, _cacheOver);
|
||||||
std::swap(_cacheUnder, _cacheOver);
|
_animation.start([this] { animationCallback(); }, fromLeft ? 1. : 0., fromLeft ? 0. : 1., st::slideDuration, transition());
|
||||||
a_coordUnder = anim::ivalue(-delta, 0);
|
_repaintCallback();
|
||||||
a_coordOver = anim::ivalue(0, _cacheOver.width() / cIntRetinaFactor());
|
|
||||||
} else {
|
|
||||||
a_progress = anim::fvalue(0, 1);
|
|
||||||
a_coordUnder = anim::ivalue(0, -delta);
|
|
||||||
a_coordOver = anim::ivalue(_cacheOver.width() / cIntRetinaFactor(), 0);
|
|
||||||
}
|
|
||||||
_animation.start();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlideAnimation::step(float64 ms, bool timer) {
|
void SlideAnimation::animationCallback() {
|
||||||
float64 dt = ms / st::slideDuration;
|
_repaintCallback();
|
||||||
if (dt >= 1) {
|
if (!_animation.animating()) {
|
||||||
dt = 1;
|
if (_finishedCallback) {
|
||||||
if (timer) {
|
_finishedCallback();
|
||||||
_animation.stop();
|
|
||||||
a_coordUnder.finish();
|
|
||||||
a_coordOver.finish();
|
|
||||||
|
|
||||||
if (_finishedCallback) {
|
|
||||||
_finishedCallback();
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a_coordUnder.update(dt, transition());
|
|
||||||
a_coordOver.update(dt, transition());
|
|
||||||
a_progress.update(dt, transition());
|
|
||||||
if (timer && _repaintCallback) {
|
|
||||||
_repaintCallback();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Window
|
} // namespace Window
|
||||||
|
|
|
@ -29,8 +29,6 @@ enum class SlideDirection {
|
||||||
|
|
||||||
class SlideAnimation {
|
class SlideAnimation {
|
||||||
public:
|
public:
|
||||||
SlideAnimation();
|
|
||||||
|
|
||||||
void paintContents(Painter &p, const QRect &update) const;
|
void paintContents(Painter &p, const QRect &update) const;
|
||||||
|
|
||||||
void setDirection(SlideDirection direction);
|
void setDirection(SlideDirection direction);
|
||||||
|
@ -50,15 +48,13 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void step(float64 ms, bool timer);
|
void animationCallback();
|
||||||
|
|
||||||
SlideDirection _direction = SlideDirection::FromRight;
|
SlideDirection _direction = SlideDirection::FromRight;
|
||||||
bool _topBarShadowEnabled = false;
|
bool _topBarShadowEnabled = false;
|
||||||
|
|
||||||
mutable Animation _animation;
|
mutable FloatAnimation _animation;
|
||||||
QPixmap _cacheUnder, _cacheOver;
|
QPixmap _cacheUnder, _cacheOver;
|
||||||
anim::ivalue a_coordUnder, a_coordOver;
|
|
||||||
anim::fvalue a_progress;
|
|
||||||
|
|
||||||
RepaintCallback _repaintCallback;
|
RepaintCallback _repaintCallback;
|
||||||
FinishedCallback _finishedCallback;
|
FinishedCallback _finishedCallback;
|
||||||
|
|
|
@ -239,6 +239,7 @@ void TopBarWidget::startAnim() {
|
||||||
_mediaType->hide();
|
_mediaType->hide();
|
||||||
_search->hide();
|
_search->hide();
|
||||||
_menuToggle->hide();
|
_menuToggle->hide();
|
||||||
|
_menu.destroy();
|
||||||
if (_membersShowArea) {
|
if (_membersShowArea) {
|
||||||
_membersShowArea->hide();
|
_membersShowArea->hide();
|
||||||
}
|
}
|
||||||
|
@ -282,6 +283,7 @@ void TopBarWidget::showAll() {
|
||||||
_info->setPeer(h);
|
_info->setPeer(h);
|
||||||
_info->show();
|
_info->show();
|
||||||
_menuToggle->hide();
|
_menuToggle->hide();
|
||||||
|
_menu.destroy();
|
||||||
} else {
|
} else {
|
||||||
_info->hide();
|
_info->hide();
|
||||||
_menuToggle->show();
|
_menuToggle->show();
|
||||||
|
@ -291,6 +293,7 @@ void TopBarWidget::showAll() {
|
||||||
_search->hide();
|
_search->hide();
|
||||||
_info->hide();
|
_info->hide();
|
||||||
_menuToggle->hide();
|
_menuToggle->hide();
|
||||||
|
_menu.destroy();
|
||||||
}
|
}
|
||||||
if (_membersShowArea) {
|
if (_membersShowArea) {
|
||||||
_membersShowArea->show();
|
_membersShowArea->show();
|
||||||
|
|
Loading…
Reference in New Issue