2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 13:47:38 +03:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2015-10-03 16:16:42 +03:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 13:56:18 +03:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-04-07 22:05:28 +04:00
|
|
|
#include "ui/boxshadow.h"
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-10-03 13:09:09 +03:00
|
|
|
class LayeredWidget : public TWidget {
|
2014-05-30 12:53:19 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
virtual void showStep(float64 ms) {
|
2014-05-30 12:53:19 +04:00
|
|
|
}
|
|
|
|
virtual void parentResized() = 0;
|
|
|
|
virtual void startHide() {
|
|
|
|
}
|
|
|
|
|
2015-09-16 16:04:08 +03:00
|
|
|
virtual void setInnerFocus() {
|
|
|
|
setFocus();
|
|
|
|
}
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
virtual void resizeEvent(QResizeEvent *e) {
|
|
|
|
emit resized();
|
|
|
|
}
|
|
|
|
|
2015-01-05 23:17:33 +03:00
|
|
|
void mousePressEvent(QMouseEvent *e) {
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
2015-10-01 17:05:05 +03:00
|
|
|
bool overlaps(const QRect &globalRect) {
|
|
|
|
if (isHidden() || !testAttribute(Qt::WA_OpaquePaintEvent)) return false;
|
|
|
|
return rect().contains(QRect(mapFromGlobal(globalRect.topLeft()), globalRect.size()));
|
|
|
|
}
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void closed();
|
|
|
|
void resized();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
class BackgroundWidget : public TWidget {
|
2014-05-30 12:53:19 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
BackgroundWidget(QWidget *parent, LayeredWidget *w);
|
|
|
|
|
2014-12-12 19:27:03 +03:00
|
|
|
void showFast();
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
2016-02-08 17:54:55 +03:00
|
|
|
void updateAdaptiveLayout();
|
2014-12-12 19:27:03 +03:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
void replaceInner(LayeredWidget *n);
|
2015-10-26 22:39:02 -04:00
|
|
|
void showLayerLast(LayeredWidget *n);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_background(float64 ms, bool timer);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-09-16 16:04:08 +03:00
|
|
|
bool canSetFocus() const;
|
|
|
|
void setInnerFocus();
|
|
|
|
|
2015-10-01 17:05:05 +03:00
|
|
|
bool contentOverlapped(const QRect &globalRect);
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
~BackgroundWidget();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClose();
|
2014-11-25 15:15:29 +03:00
|
|
|
bool onInnerClose();
|
2014-12-12 19:27:03 +03:00
|
|
|
void boxDestroyed(QObject *obj);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void startHide();
|
|
|
|
|
2015-09-16 16:04:08 +03:00
|
|
|
LayeredWidget *w;
|
|
|
|
typedef QList<LayeredWidget*> HiddenLayers;
|
|
|
|
HiddenLayers _hidden;
|
2015-12-08 15:33:37 +03:00
|
|
|
anim::fvalue a_bg;
|
|
|
|
Animation _a_background;
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
bool hiding;
|
|
|
|
|
|
|
|
BoxShadow shadow;
|
|
|
|
};
|
2015-12-07 16:05:00 +03:00
|
|
|
|
2016-04-10 22:18:26 +04:00
|
|
|
class MediaPreviewWidget : public TWidget {
|
2015-12-07 16:05:00 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-04-10 22:18:26 +04:00
|
|
|
MediaPreviewWidget(QWidget *parent);
|
2015-12-07 16:05:00 +03:00
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_shown(float64 ms, bool timer);
|
2015-12-07 16:05:00 +03:00
|
|
|
|
2016-04-10 22:18:26 +04:00
|
|
|
void showPreview(DocumentData *document);
|
|
|
|
void showPreview(PhotoData *photo);
|
2015-12-07 16:05:00 +03:00
|
|
|
void hidePreview();
|
|
|
|
|
2016-04-10 22:18:26 +04:00
|
|
|
~MediaPreviewWidget();
|
2015-12-07 16:05:00 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
QSize currentDimensions() const;
|
|
|
|
QPixmap currentImage() const;
|
2016-04-10 22:18:26 +04:00
|
|
|
void startShow();
|
|
|
|
void resetGifAndCache();
|
2015-12-07 16:05:00 +03:00
|
|
|
|
|
|
|
anim::fvalue a_shown;
|
|
|
|
Animation _a_shown;
|
2016-04-10 22:18:26 +04:00
|
|
|
DocumentData *_document = nullptr;
|
|
|
|
PhotoData *_photo = nullptr;
|
2016-06-24 13:37:29 +03:00
|
|
|
Media::Clip::Reader *_gif = nullptr;
|
2015-12-28 00:37:48 +03:00
|
|
|
bool gif() const {
|
2016-06-24 13:37:29 +03:00
|
|
|
return (!_gif || _gif == Media::Clip::BadReader) ? false : true;
|
2015-12-28 00:37:48 +03:00
|
|
|
}
|
|
|
|
|
2016-06-24 13:37:29 +03:00
|
|
|
void clipCallback(Media::Clip::Notification notification);
|
2015-12-07 16:05:00 +03:00
|
|
|
|
|
|
|
enum CacheStatus {
|
|
|
|
CacheNotLoaded,
|
|
|
|
CacheThumbLoaded,
|
|
|
|
CacheLoaded,
|
|
|
|
};
|
2016-04-10 22:18:26 +04:00
|
|
|
mutable CacheStatus _cacheStatus = CacheNotLoaded;
|
2015-12-07 16:05:00 +03:00
|
|
|
mutable QPixmap _cache;
|
2016-04-10 22:18:26 +04:00
|
|
|
mutable QSize _cachedSize;
|
2015-12-07 16:05:00 +03:00
|
|
|
|
|
|
|
};
|