2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00: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 13:16:42 +00: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 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 10:56:18 +00:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "gui/boxshadow.h"
|
|
|
|
|
2015-10-03 10:09:09 +00:00
|
|
|
class LayeredWidget : public TWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
virtual void showStep(float64 ms) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
virtual void parentResized() = 0;
|
|
|
|
virtual void startHide() {
|
|
|
|
}
|
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
virtual void setInnerFocus() {
|
|
|
|
setFocus();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
virtual void resizeEvent(QResizeEvent *e) {
|
|
|
|
emit resized();
|
|
|
|
}
|
|
|
|
|
2015-01-05 20:17:33 +00:00
|
|
|
void mousePressEvent(QMouseEvent *e) {
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
2015-10-01 14:05:05 +00: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 08:53:19 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void closed();
|
|
|
|
void resized();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class BackgroundWidget : public TWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
BackgroundWidget(QWidget *parent, LayeredWidget *w);
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
void showFast();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
2016-02-08 14:54:55 +00:00
|
|
|
void updateAdaptiveLayout();
|
2014-12-12 16:27:03 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void replaceInner(LayeredWidget *n);
|
2015-10-27 02:39:02 +00:00
|
|
|
void showLayerLast(LayeredWidget *n);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_background(float64 ms, bool timer);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
bool canSetFocus() const;
|
|
|
|
void setInnerFocus();
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
bool contentOverlapped(const QRect &globalRect);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
~BackgroundWidget();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClose();
|
2014-11-25 12:15:29 +00:00
|
|
|
bool onInnerClose();
|
2014-12-12 16:27:03 +00:00
|
|
|
void boxDestroyed(QObject *obj);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void startHide();
|
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
LayeredWidget *w;
|
|
|
|
typedef QList<LayeredWidget*> HiddenLayers;
|
|
|
|
HiddenLayers _hidden;
|
2015-12-08 12:33:37 +00:00
|
|
|
anim::fvalue a_bg;
|
|
|
|
Animation _a_background;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
bool hiding;
|
|
|
|
|
|
|
|
BoxShadow shadow;
|
|
|
|
};
|
2015-12-07 13:05:00 +00:00
|
|
|
|
|
|
|
class StickerPreviewWidget : public TWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
StickerPreviewWidget(QWidget *parent);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_shown(float64 ms, bool timer);
|
2015-12-07 13:05:00 +00:00
|
|
|
|
|
|
|
void showPreview(DocumentData *sticker);
|
|
|
|
void hidePreview();
|
|
|
|
|
|
|
|
~StickerPreviewWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
QSize currentDimensions() const;
|
|
|
|
QPixmap currentImage() const;
|
|
|
|
|
|
|
|
anim::fvalue a_shown;
|
|
|
|
Animation _a_shown;
|
|
|
|
DocumentData *_doc;
|
2015-12-27 21:37:48 +00:00
|
|
|
ClipReader *_gif;
|
|
|
|
bool gif() const {
|
|
|
|
return (!_gif || _gif == BadClipReader) ? false : true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clipCallback(ClipReaderNotification notification);
|
2015-12-07 13:05:00 +00:00
|
|
|
|
|
|
|
enum CacheStatus {
|
|
|
|
CacheNotLoaded,
|
|
|
|
CacheThumbLoaded,
|
|
|
|
CacheLoaded,
|
|
|
|
};
|
|
|
|
mutable CacheStatus _cacheStatus;
|
|
|
|
mutable QPixmap _cache;
|
|
|
|
|
|
|
|
};
|