mirror of https://github.com/procxx/kepka.git
266 lines
7.0 KiB
C++
266 lines
7.0 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "media/player/media_player_panel.h"
|
|
|
|
#include "media/player/media_player_cover.h"
|
|
#include "media/player/media_player_list.h"
|
|
#include "media/player/media_player_instance.h"
|
|
#include "styles/style_media_player.h"
|
|
#include "ui/widgets/shadow.h"
|
|
#include "mainwindow.h"
|
|
|
|
namespace Media {
|
|
namespace Player {
|
|
|
|
Panel::Panel(QWidget *parent, Layout layout) : TWidget(parent)
|
|
, _shadow(st::defaultInnerDropdown.shadow)
|
|
, _scroll(this, st::mediaPlayerScroll)
|
|
, _scrollShadow(this, st::mediaPlayerScrollShadow) {
|
|
if (layout == Layout::Full) {
|
|
_cover.create(this);
|
|
}
|
|
_hideTimer.setSingleShot(true);
|
|
connect(&_hideTimer, SIGNAL(timeout()), this, SLOT(onHideStart()));
|
|
|
|
auto list = std_::make_unique<ListWidget>();
|
|
connect(list.get(), SIGNAL(heightUpdated()), this, SLOT(onListHeightUpdated()));
|
|
_scroll->setOwnedWidget(list.release());
|
|
|
|
_showTimer.setSingleShot(true);
|
|
connect(&_showTimer, SIGNAL(timeout()), this, SLOT(onShowStart()));
|
|
|
|
if (cPlatform() == dbipMac || cPlatform() == dbipMacOld) {
|
|
connect(App::wnd()->windowHandle(), SIGNAL(activeChanged()), this, SLOT(onWindowActiveChanged()));
|
|
}
|
|
|
|
hide();
|
|
onListHeightUpdated();
|
|
}
|
|
|
|
bool Panel::overlaps(const QRect &globalRect) {
|
|
if (isHidden() || _a_appearance.animating()) return false;
|
|
|
|
auto marginLeft = rtl() ? 0 : contentLeft();
|
|
auto marginRight = rtl() ? contentLeft() : 0;
|
|
return rect().marginsRemoved(QMargins(marginLeft, 0, marginRight, st::mediaPlayerPanelMarginBottom)).contains(QRect(mapFromGlobal(globalRect.topLeft()), globalRect.size()));
|
|
}
|
|
|
|
void Panel::onWindowActiveChanged() {
|
|
if (!App::wnd()->windowHandle()->isActive() && !isHidden()) {
|
|
leaveEvent(nullptr);
|
|
}
|
|
}
|
|
|
|
void Panel::resizeEvent(QResizeEvent *e) {
|
|
auto width = contentWidth();
|
|
_cover->resize(width, st::mediaPlayerCoverHeight);
|
|
_cover->moveToRight(0, 0);
|
|
|
|
auto scrollTop = _cover->height();
|
|
auto scrollHeight = qMax(contentHeight() - scrollTop - st::mediaPlayerListMarginBottom, 0);
|
|
if (scrollHeight > 0) {
|
|
_scroll->setGeometryToRight(0, scrollTop, width, scrollHeight);
|
|
_scrollShadow->resizeToWidth(width);
|
|
_scrollShadow->moveToRight(0, scrollTop);
|
|
}
|
|
if (auto widget = static_cast<ScrolledWidget*>(_scroll->widget())) {
|
|
widget->resizeToWidth(width);
|
|
onScroll();
|
|
}
|
|
}
|
|
|
|
void Panel::onListHeightUpdated() {
|
|
updateSize();
|
|
}
|
|
|
|
void Panel::ui_repaintHistoryItem(const HistoryItem *item) {
|
|
if (auto list = static_cast<ListWidget*>(_scroll->widget())) {
|
|
list->ui_repaintHistoryItem(item);
|
|
}
|
|
}
|
|
|
|
void Panel::itemRemoved(HistoryItem *item) {
|
|
if (auto list = static_cast<ListWidget*>(_scroll->widget())) {
|
|
list->itemRemoved(item);
|
|
}
|
|
}
|
|
|
|
void Panel::onScroll() {
|
|
if (auto widget = static_cast<ScrolledWidget*>(_scroll->widget())) {
|
|
int visibleTop = _scroll->scrollTop();
|
|
int visibleBottom = visibleTop + _scroll->height();
|
|
widget->setVisibleTopBottom(visibleTop, visibleBottom);
|
|
}
|
|
}
|
|
|
|
void Panel::updateSize() {
|
|
auto listHeight = 0;
|
|
if (auto widget = static_cast<ScrolledWidget*>(_scroll->widget())) {
|
|
listHeight = widget->height();
|
|
}
|
|
auto scrollVisible = (listHeight > 0);
|
|
auto scrollHeight = scrollVisible ? (qMin(listHeight, st::mediaPlayerListHeightMax) + st::mediaPlayerListMarginBottom) : 0;
|
|
auto width = contentLeft() + st::mediaPlayerPanelWidth;
|
|
auto height = st::mediaPlayerCoverHeight + scrollHeight + st::mediaPlayerPanelMarginBottom;
|
|
resize(width, height);
|
|
_scroll->setVisible(scrollVisible);
|
|
_scrollShadow->setVisible(scrollVisible);
|
|
}
|
|
|
|
void Panel::paintEvent(QPaintEvent *e) {
|
|
Painter p(this);
|
|
|
|
if (!_cache.isNull()) {
|
|
bool animating = _a_appearance.animating(getms());
|
|
if (animating) {
|
|
p.setOpacity(_a_appearance.current(_hiding ? 0. : 1.));
|
|
} else if (_hiding || isHidden()) {
|
|
hidingFinished();
|
|
return;
|
|
}
|
|
p.drawPixmap(0, 0, _cache);
|
|
if (!animating) {
|
|
showChildren();
|
|
_cache = QPixmap();
|
|
}
|
|
return;
|
|
}
|
|
|
|
// draw shadow
|
|
auto shadowedRect = myrtlrect(contentLeft(), 0, contentWidth(), height() - st::mediaPlayerPanelMarginBottom);
|
|
auto shadowedSides = (rtl() ? Ui::RectShadow::Side::Right : Ui::RectShadow::Side::Left) | Ui::RectShadow::Side::Bottom;
|
|
_shadow.paint(p, shadowedRect, st::defaultInnerDropdown.shadowShift, shadowedSides);
|
|
p.fillRect(shadowedRect, st::windowBg);
|
|
}
|
|
|
|
void Panel::enterEvent(QEvent *e) {
|
|
_hideTimer.stop();
|
|
if (_a_appearance.animating(getms())) {
|
|
onShowStart();
|
|
} else {
|
|
_showTimer.start(0);
|
|
}
|
|
return TWidget::enterEvent(e);
|
|
}
|
|
|
|
void Panel::leaveEvent(QEvent *e) {
|
|
_showTimer.stop();
|
|
if (_a_appearance.animating(getms())) {
|
|
onHideStart();
|
|
} else {
|
|
_hideTimer.start(300);
|
|
}
|
|
return TWidget::leaveEvent(e);
|
|
}
|
|
|
|
void Panel::otherEnter() {
|
|
_hideTimer.stop();
|
|
if (_a_appearance.animating(getms())) {
|
|
onShowStart();
|
|
} else {
|
|
_showTimer.start(300);
|
|
}
|
|
}
|
|
|
|
void Panel::otherLeave() {
|
|
_showTimer.stop();
|
|
if (_a_appearance.animating(getms())) {
|
|
onHideStart();
|
|
} else {
|
|
_hideTimer.start(0);
|
|
}
|
|
}
|
|
|
|
void Panel::setPinCallback(PinCallback &&callback) {
|
|
if (_cover) {
|
|
_cover->setPinCallback(std_::move(callback));
|
|
}
|
|
}
|
|
|
|
Panel::~Panel() {
|
|
if (exists()) {
|
|
instance()->destroyedNotifier().notify(Media::Player::PanelEvent(this), true);
|
|
}
|
|
}
|
|
|
|
void Panel::onShowStart() {
|
|
if (isHidden()) {
|
|
show();
|
|
} else if (!_hiding) {
|
|
return;
|
|
}
|
|
_hiding = false;
|
|
startAnimation();
|
|
}
|
|
|
|
void Panel::onHideStart() {
|
|
if (_hiding) return;
|
|
|
|
_hiding = true;
|
|
startAnimation();
|
|
}
|
|
|
|
void Panel::startAnimation() {
|
|
auto from = _hiding ? 1. : 0.;
|
|
auto to = _hiding ? 0. : 1.;
|
|
if (_cache.isNull()) {
|
|
showChildren();
|
|
_cache = myGrab(this);
|
|
}
|
|
hideChildren();
|
|
_a_appearance.start([this] { appearanceCallback(); }, from, to, st::defaultInnerDropdown.duration);
|
|
}
|
|
|
|
void Panel::appearanceCallback() {
|
|
if (!_a_appearance.animating() && _hiding) {
|
|
_hiding = false;
|
|
hidingFinished();
|
|
} else {
|
|
update();
|
|
}
|
|
}
|
|
|
|
void Panel::hidingFinished() {
|
|
hide();
|
|
_cache = QPixmap();
|
|
}
|
|
|
|
int Panel::contentLeft() const {
|
|
return st::mediaPlayerPanelMarginLeft;
|
|
}
|
|
|
|
int Panel::contentHeight() const {
|
|
return height() - st::mediaPlayerPanelMarginBottom;
|
|
}
|
|
|
|
bool Panel::eventFilter(QObject *obj, QEvent *e) {
|
|
if (e->type() == QEvent::Enter) {
|
|
otherEnter();
|
|
} else if (e->type() == QEvent::Leave) {
|
|
otherLeave();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace Player
|
|
} // namespace Media
|