116 lines
2.7 KiB
C++
116 lines
2.7 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-2017 John Preston, https://desktop.telegram.org
|
|
*/
|
|
#pragma once
|
|
|
|
namespace Ui {
|
|
class ScrollArea;
|
|
class Shadow;
|
|
} // namespace Ui
|
|
|
|
namespace Media {
|
|
namespace Player {
|
|
|
|
class CoverWidget;
|
|
class ListWidget;
|
|
|
|
class Panel : public TWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum class Layout {
|
|
Full,
|
|
OnlyPlaylist,
|
|
};
|
|
Panel(QWidget *parent, Layout layout);
|
|
|
|
bool overlaps(const QRect &globalRect);
|
|
|
|
void hideIgnoringEnterEvents();
|
|
|
|
void showFromOther();
|
|
void hideFromOther();
|
|
|
|
using ButtonCallback = base::lambda_copy<void()>;
|
|
void setPinCallback(ButtonCallback &&callback);
|
|
void setCloseCallback(ButtonCallback &&callback);
|
|
|
|
void ui_repaintHistoryItem(const HistoryItem *item);
|
|
|
|
int bestPositionFor(int left) const;
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
void paintEvent(QPaintEvent *e) override;
|
|
void enterEvent(QEvent *e) override;
|
|
void leaveEvent(QEvent *e) override;
|
|
|
|
private slots:
|
|
void onShowStart();
|
|
void onHideStart();
|
|
|
|
void onScroll();
|
|
void onListHeightUpdated();
|
|
void onWindowActiveChanged();
|
|
|
|
private:
|
|
void ensureCreated();
|
|
void performDestroy();
|
|
|
|
void updateControlsGeometry();
|
|
|
|
void updateSize();
|
|
void appearanceCallback();
|
|
void hideFinished();
|
|
int contentLeft() const;
|
|
int contentTop() const;
|
|
int contentRight() const;
|
|
int contentBottom() const;
|
|
int scrollMarginBottom() const;
|
|
int contentWidth() const {
|
|
return width() - contentLeft() - contentRight();
|
|
}
|
|
int contentHeight() const {
|
|
return height() - contentTop() - contentBottom();;
|
|
}
|
|
|
|
void startAnimation();
|
|
void scrollPlaylistToCurrentTrack();
|
|
|
|
Layout _layout;
|
|
bool _hiding = false;
|
|
|
|
QPixmap _cache;
|
|
Animation _a_appearance;
|
|
|
|
bool _ignoringEnterEvents = false;
|
|
|
|
QTimer _hideTimer, _showTimer;
|
|
|
|
ButtonCallback _pinCallback, _closeCallback;
|
|
object_ptr<CoverWidget> _cover = { nullptr };
|
|
object_ptr<Ui::ScrollArea> _scroll;
|
|
object_ptr<Ui::Shadow> _scrollShadow = { nullptr };
|
|
|
|
};
|
|
|
|
} // namespace Clip
|
|
} // namespace Media
|