| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /*
- 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 "media/stories/media_stories_view.h"
- #include "data/data_file_origin.h"
- #include "media/stories/media_stories_controller.h"
- #include "media/stories/media_stories_delegate.h"
- #include "media/stories/media_stories_header.h"
- #include "media/stories/media_stories_slider.h"
- #include "media/stories/media_stories_reply.h"
- namespace Media::Stories {
- View::View(not_null<Delegate*> delegate)
- : _controller(std::make_unique<Controller>(delegate)) {
- }
- View::~View() = default;
- void View::show(
- not_null<Data::Story*> story,
- Data::StoriesContext context) {
- _controller->show(story, context);
- }
- void View::ready() {
- _controller->ready();
- }
- Data::Story *View::story() const {
- return _controller->story();
- }
- QRect View::finalShownGeometry() const {
- return _controller->layout().content;
- }
- rpl::producer<QRect> View::finalShownGeometryValue() const {
- return _controller->layoutValue(
- ) | rpl::map([=](const Layout &layout) {
- return layout.content;
- }) | rpl::distinct_until_changed();
- }
- ContentLayout View::contentLayout() const {
- return _controller->contentLayout();
- }
- bool View::closeByClickAt(QPoint position) const {
- return _controller->closeByClickAt(position);
- }
- void View::updatePlayback(const Player::TrackState &state) {
- _controller->updateVideoPlayback(state);
- }
- ClickHandlerPtr View::lookupAreaHandler(QPoint point) const {
- return _controller->lookupAreaHandler(point);
- }
- bool View::subjumpAvailable(int delta) const {
- return _controller->subjumpAvailable(delta);
- }
- bool View::subjumpFor(int delta) const {
- return _controller->subjumpFor(delta);
- }
- bool View::jumpFor(int delta) const {
- return _controller->jumpFor(delta);
- }
- bool View::paused() const {
- return _controller->paused();
- }
- void View::togglePaused(bool paused) {
- _controller->togglePaused(paused);
- }
- void View::contentPressed(bool pressed) {
- _controller->contentPressed(pressed);
- }
- void View::menuShown(bool shown) {
- _controller->setMenuShown(shown);
- }
- void View::shareRequested() {
- _controller->shareRequested();
- }
- void View::deleteRequested() {
- _controller->deleteRequested();
- }
- void View::reportRequested() {
- _controller->reportRequested();
- }
- void View::toggleInProfileRequested(bool inProfile) {
- _controller->toggleInProfileRequested(inProfile);
- }
- bool View::ignoreWindowMove(QPoint position) const {
- return _controller->ignoreWindowMove(position);
- }
- void View::tryProcessKeyInput(not_null<QKeyEvent*> e) {
- _controller->tryProcessKeyInput(e);
- }
- bool View::allowStealthMode() const {
- return _controller->allowStealthMode();
- }
- void View::setupStealthMode() {
- _controller->setupStealthMode();
- }
- auto View::attachReactionsToMenu(
- not_null<Ui::PopupMenu*> menu,
- QPoint desiredPosition)
- -> AttachStripResult {
- return _controller->attachReactionsToMenu(menu, desiredPosition);
- }
- SiblingView View::sibling(SiblingType type) const {
- return _controller->sibling(type);
- }
- Data::FileOrigin View::fileOrigin() const {
- return _controller->fileOrigin();
- }
- TextWithEntities View::captionText() const {
- return _controller->captionText();
- }
- bool View::skipCaption() const {
- return _controller->skipCaption();
- }
- bool View::repost() const {
- return _controller->repost();
- }
- QMargins View::repostCaptionPadding() const {
- return _controller->repostCaptionPadding();
- }
- void View::drawRepostInfo(
- Painter &p,
- int x,
- int y,
- int availableWidth) const {
- _controller->drawRepostInfo(p, x, y, availableWidth);
- }
- RepostClickHandler View::lookupRepostHandler(QPoint position) const {
- return _controller->lookupRepostHandler(position);
- }
- void View::showFullCaption() {
- _controller->showFullCaption();
- }
- std::shared_ptr<ChatHelpers::Show> View::uiShow() const {
- return _controller->uiShow();
- }
- rpl::lifetime &View::lifetime() {
- return _controller->lifetime();
- }
- } // namespace Media::Stories
|