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
|
2015-10-03 13:16:42 +00:00
|
|
|
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "gui/twidget.h"
|
|
|
|
#include "gui/boxshadow.h"
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class Dropdown : public TWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
Dropdown(QWidget *parent, const style::dropdown &st = st::dropdownDef);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
IconedButton *addButton(IconedButton *button);
|
2014-08-21 12:18:56 +00:00
|
|
|
void resetButtons();
|
2015-04-11 10:04:10 +00:00
|
|
|
void updateButtons();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
2015-04-11 10:04:10 +00:00
|
|
|
void keyPressEvent(QKeyEvent *e);
|
2014-05-30 08:53:19 +00:00
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
|
|
|
void fastHide();
|
2015-04-11 10:04:10 +00:00
|
|
|
void ignoreShow(bool ignore = true);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *e);
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
bool overlaps(const QRect &globalRect) {
|
2015-12-08 12:33:37 +00:00
|
|
|
if (isHidden() || _a_appearance.animating()) return false;
|
2015-10-01 14:05:05 +00:00
|
|
|
|
|
|
|
return QRect(_st.padding.left(),
|
|
|
|
_st.padding.top(),
|
|
|
|
_width - _st.padding.left() - _st.padding.right(),
|
|
|
|
_height - _st.padding.top() - _st.padding.bottom()
|
|
|
|
).contains(QRect(mapFromGlobal(globalRect.topLeft()), globalRect.size()));
|
|
|
|
}
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void hiding();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
void hideStart();
|
|
|
|
void hideFinish();
|
|
|
|
|
|
|
|
void showStart();
|
2015-02-09 13:26:59 +00:00
|
|
|
void onWndActiveChanged();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
void buttonStateChanged(int oldState, ButtonStateChangeSource source);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void adjustButtons();
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
bool _ignore;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
typedef QVector<IconedButton*> Buttons;
|
|
|
|
Buttons _buttons;
|
|
|
|
|
2015-04-11 10:04:10 +00:00
|
|
|
int32 _selected;
|
|
|
|
|
|
|
|
const style::dropdown &_st;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 _width, _height;
|
|
|
|
bool _hiding;
|
|
|
|
|
|
|
|
anim::fvalue a_opacity;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_appearance;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
QTimer _hideTimer;
|
|
|
|
|
|
|
|
BoxShadow _shadow;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class DragArea : public TWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
DragArea(QWidget *parent);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
void dragEnterEvent(QDragEnterEvent *e);
|
|
|
|
void dragLeaveEvent(QDragLeaveEvent *e);
|
|
|
|
void dropEvent(QDropEvent *e);
|
|
|
|
void dragMoveEvent(QDragMoveEvent *e);
|
|
|
|
|
|
|
|
void setText(const QString &text, const QString &subtext);
|
|
|
|
|
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
|
|
|
void fastHide();
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
bool overlaps(const QRect &globalRect) {
|
2015-12-08 12:33:37 +00:00
|
|
|
if (isHidden() || _a_appearance.animating()) return false;
|
2015-10-01 14:05:05 +00:00
|
|
|
|
|
|
|
return QRect(st::dragPadding.left(),
|
|
|
|
st::dragPadding.top(),
|
|
|
|
width() - st::dragPadding.left() - st::dragPadding.right(),
|
|
|
|
height() - st::dragPadding.top() - st::dragPadding.bottom()
|
|
|
|
).contains(QRect(mapFromGlobal(globalRect.topLeft()), globalRect.size()));
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
signals:
|
|
|
|
|
2015-06-26 09:07:59 +00:00
|
|
|
void dropped(const QMimeData *data);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void hideStart();
|
|
|
|
void hideFinish();
|
|
|
|
|
|
|
|
void showStart();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool _hiding, _in;
|
|
|
|
|
|
|
|
anim::fvalue a_opacity;
|
|
|
|
anim::cvalue a_color;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_appearance;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
BoxShadow _shadow;
|
|
|
|
|
|
|
|
QString _text, _subtext;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
class EmojiPanel;
|
2015-05-08 12:45:14 +00:00
|
|
|
static const int EmojiColorsCount = 5;
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class EmojiColorPicker : public TWidget {
|
2015-05-08 12:45:14 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
EmojiColorPicker();
|
2015-05-08 12:45:14 +00:00
|
|
|
|
|
|
|
void showEmoji(uint32 code);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
|
|
|
void step_selected(uint64 ms, bool timer);
|
2015-05-08 12:45:14 +00:00
|
|
|
void showStart();
|
|
|
|
|
|
|
|
void clearSelection(bool fast = false);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void hideStart(bool fast = false);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void emojiSelected(EmojiPtr emoji);
|
|
|
|
void hidden();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void drawVariant(Painter &p, int variant);
|
|
|
|
|
|
|
|
void updateSelected();
|
|
|
|
|
|
|
|
bool _ignoreShow;
|
|
|
|
|
|
|
|
EmojiPtr _variants[EmojiColorsCount + 1];
|
|
|
|
|
|
|
|
typedef QMap<int32, uint64> EmojiAnimations; // index - showing, -index - hiding
|
|
|
|
EmojiAnimations _emojiAnimations;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_selected;
|
2015-05-08 12:45:14 +00:00
|
|
|
|
|
|
|
float64 _hovers[EmojiColorsCount + 1];
|
|
|
|
|
|
|
|
int32 _selected, _pressedSel;
|
|
|
|
QPoint _lastMousePos;
|
|
|
|
|
|
|
|
bool _hiding;
|
|
|
|
QPixmap _cache;
|
|
|
|
|
|
|
|
anim::fvalue a_opacity;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_appearance;
|
2015-05-08 12:45:14 +00:00
|
|
|
|
|
|
|
QTimer _hideTimer;
|
|
|
|
|
|
|
|
BoxShadow _shadow;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class EmojiPanInner : public TWidget {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
EmojiPanInner();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
void setMaxHeight(int32 h);
|
2014-05-30 08:53:19 +00:00
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
2015-05-08 12:45:14 +00:00
|
|
|
void leaveToChildEvent(QEvent *e);
|
|
|
|
void enterFromChildEvent(QEvent *e);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_selected(uint64 ms, bool timer);
|
2015-05-08 12:45:14 +00:00
|
|
|
void hideFinish();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void showEmojiPack(DBIEmojiTab packIndex);
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
void clearSelection(bool fast = false);
|
2015-05-08 12:45:14 +00:00
|
|
|
|
|
|
|
DBIEmojiTab currentTab(int yOffset) const;
|
|
|
|
|
|
|
|
void refreshRecent();
|
|
|
|
|
|
|
|
void setScrollTop(int top);
|
2015-10-01 14:05:05 +00:00
|
|
|
|
|
|
|
void fillPanels(QVector<EmojiPanel*> &panels);
|
|
|
|
void refreshPanels(QVector<EmojiPanel*> &panels);
|
2015-01-02 14:55:24 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
void updateSelected();
|
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
void onShowPicker();
|
|
|
|
void onPickerHidden();
|
|
|
|
void onColorSelected(EmojiPtr emoji);
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
bool checkPickerHide();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
signals:
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
void selected(EmojiPtr emoji);
|
|
|
|
|
|
|
|
void switchToStickers();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
void scrollToY(int y);
|
|
|
|
void disableScroll(bool dis);
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
void needRefreshPanels();
|
2015-12-27 21:37:48 +00:00
|
|
|
void saveConfigDelayed(int32 delay);
|
2015-10-01 14:05:05 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
private:
|
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
int32 _maxHeight;
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
int32 countHeight();
|
2015-05-08 12:45:14 +00:00
|
|
|
void selectEmoji(EmojiPtr emoji);
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
QRect emojiRect(int tab, int sel);
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
typedef QMap<int32, uint64> Animations; // index - showing, -index - hiding
|
|
|
|
Animations _animations;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_selected;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
int32 _top, _counts[emojiTabCount];
|
2015-05-08 12:45:14 +00:00
|
|
|
|
|
|
|
QVector<EmojiPtr> _emojis[emojiTabCount];
|
2015-05-19 15:46:45 +00:00
|
|
|
QVector<float64> _hovers[emojiTabCount];
|
2015-05-08 12:45:14 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
int32 _esize;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
int32 _selected, _pressedSel, _pickerSel;
|
2014-05-30 08:53:19 +00:00
|
|
|
QPoint _lastMousePos;
|
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
EmojiColorPicker _picker;
|
|
|
|
QTimer _showPickerTimer;
|
2015-05-19 15:46:45 +00:00
|
|
|
};
|
|
|
|
|
2015-06-05 15:02:20 +00:00
|
|
|
struct StickerIcon {
|
2015-12-27 21:37:48 +00:00
|
|
|
StickerIcon(uint64 setId) : setId(setId), sticker(0), pixw(0), pixh(0) {
|
2015-06-05 15:02:20 +00:00
|
|
|
}
|
|
|
|
StickerIcon(uint64 setId, DocumentData *sticker, int32 pixw, int32 pixh) : setId(setId), sticker(sticker), pixw(pixw), pixh(pixh) {
|
|
|
|
}
|
|
|
|
uint64 setId;
|
|
|
|
DocumentData *sticker;
|
|
|
|
int32 pixw, pixh;
|
|
|
|
};
|
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
struct ContextResult {
|
|
|
|
ContextResult(uint64 queryId)
|
|
|
|
: queryId(queryId)
|
|
|
|
, doc(0)
|
|
|
|
, photo(0)
|
|
|
|
, width(0)
|
|
|
|
, height(0)
|
|
|
|
, duration(0)
|
|
|
|
, noWebPage(false) {
|
|
|
|
}
|
|
|
|
uint64 queryId;
|
|
|
|
QString id, type;
|
|
|
|
DocumentData *doc;
|
|
|
|
PhotoData *photo;
|
|
|
|
QString title, description, url, thumb_url;
|
|
|
|
QString content_type, content_url;
|
|
|
|
int32 width, height, duration;
|
|
|
|
|
|
|
|
QString message; // botContextMessageText
|
|
|
|
bool noWebPage;
|
|
|
|
EntitiesInText entities;
|
|
|
|
QString caption; // if message.isEmpty() use botContextMessageMediaAuto
|
|
|
|
};
|
|
|
|
typedef QList<ContextResult*> ContextResults;
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
class StickerPanInner : public TWidget {
|
2015-05-19 15:46:45 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
StickerPanInner();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
void setMaxHeight(int32 h);
|
2015-05-19 15:46:45 +00:00
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
void leaveToChildEvent(QEvent *e);
|
|
|
|
void enterFromChildEvent(QEvent *e);
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_selected(uint64 ms, bool timer);
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
void hideFinish();
|
2015-05-19 15:46:45 +00:00
|
|
|
void showStickerSet(uint64 setId);
|
|
|
|
|
|
|
|
void clearSelection(bool fast = false);
|
|
|
|
|
|
|
|
void refreshStickers();
|
2015-12-27 21:37:48 +00:00
|
|
|
void refreshRecentStickers(bool resize = true);
|
|
|
|
void refreshSavedGifs();
|
2015-12-30 06:47:39 +00:00
|
|
|
void refreshContextRows(const ContextResults &results);
|
2015-12-27 21:37:48 +00:00
|
|
|
void refreshRecent();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
void fillIcons(QList<StickerIcon> &icons);
|
2015-10-01 14:05:05 +00:00
|
|
|
void fillPanels(QVector<EmojiPanel*> &panels);
|
|
|
|
void refreshPanels(QVector<EmojiPanel*> &panels);
|
2015-06-05 15:02:20 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
void setScrollTop(int top);
|
|
|
|
void preloadImages();
|
|
|
|
|
2015-06-05 15:02:20 +00:00
|
|
|
uint64 currentSet(int yOffset) const;
|
2015-12-30 06:47:39 +00:00
|
|
|
void refreshContextResults(const ContextResults &results);
|
|
|
|
void contextBotChanged();
|
2015-06-05 15:02:20 +00:00
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
void ui_repaintContextItem(const LayoutContextItem *layout);
|
|
|
|
bool ui_isContextItemVisible(const LayoutContextItem *layout);
|
|
|
|
bool ui_isContextItemBeingChosen();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
|
|
|
~StickerPanInner() {
|
2015-12-30 06:47:39 +00:00
|
|
|
clearContextRows();
|
|
|
|
deleteUnusedGifLayouts();
|
|
|
|
deleteUnusedContextLayouts();
|
2015-12-27 21:37:48 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
void updateSelected();
|
2015-12-02 17:17:53 +00:00
|
|
|
void onSettings();
|
2015-12-07 13:05:00 +00:00
|
|
|
void onPreview();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void selected(DocumentData *sticker);
|
2015-10-01 14:05:05 +00:00
|
|
|
void removing(quint64 setId);
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-06-05 15:02:20 +00:00
|
|
|
void refreshIcons();
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
void switchToEmoji();
|
|
|
|
|
|
|
|
void scrollToY(int y);
|
2015-12-27 21:37:48 +00:00
|
|
|
void scrollUpdated();
|
2015-05-19 15:46:45 +00:00
|
|
|
void disableScroll(bool dis);
|
2015-10-01 14:05:05 +00:00
|
|
|
void needRefreshPanels();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
void saveConfigDelayed(int32 delay);
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
private:
|
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
void paintContextItems(Painter &p, const QRect &r);
|
2015-12-27 21:37:48 +00:00
|
|
|
void paintStickers(Painter &p, const QRect &r);
|
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
int32 _maxHeight;
|
|
|
|
|
2015-05-21 10:44:26 +00:00
|
|
|
void appendSet(uint64 setId);
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
int32 countHeight();
|
|
|
|
void selectEmoji(EmojiPtr emoji);
|
2015-10-01 14:05:05 +00:00
|
|
|
QRect stickerRect(int tab, int sel);
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
typedef QMap<int32, uint64> Animations; // index - showing, -index - hiding
|
|
|
|
Animations _animations;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_selected;
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
int32 _top;
|
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
struct DisplayedSet {
|
|
|
|
DisplayedSet(uint64 id, int32 flags, const QString &title, int32 hoversSize, const StickerPack &pack = StickerPack()) : id(id), flags(flags), title(title), hovers(hoversSize, 0), pack(pack) {
|
|
|
|
}
|
|
|
|
uint64 id;
|
|
|
|
int32 flags;
|
|
|
|
QString title;
|
|
|
|
QVector<float64> hovers;
|
|
|
|
StickerPack pack;
|
|
|
|
};
|
|
|
|
QList<DisplayedSet> _sets;
|
2015-06-08 12:24:21 +00:00
|
|
|
QList<bool> _custom;
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
bool _showingSavedGifs, _showingContextItems;
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
typedef QList<LayoutContextItem*> ContextItems;
|
|
|
|
struct ContextRow {
|
|
|
|
ContextRow() : height(0) {
|
|
|
|
}
|
|
|
|
int32 height;
|
|
|
|
ContextItems items;
|
|
|
|
};
|
|
|
|
typedef QList<ContextRow> ContextRows;
|
|
|
|
ContextRows _contextRows;
|
|
|
|
void clearContextRows();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
typedef QMap<DocumentData*, LayoutContextGif*> GifLayouts;
|
2015-12-27 21:37:48 +00:00
|
|
|
GifLayouts _gifLayouts;
|
2015-12-30 06:47:39 +00:00
|
|
|
LayoutContextGif *layoutPrepare(DocumentData *doc, int32 position, int32 width);
|
|
|
|
|
|
|
|
typedef QMap<ContextResult*, LayoutContextItem*> ContextLayouts;
|
|
|
|
ContextLayouts _contextLayouts;
|
|
|
|
|
|
|
|
ContextRow &layoutContextRow(ContextRow &row, int32 *widths, int32 sumWidth);
|
|
|
|
void deleteUnusedGifLayouts();
|
|
|
|
|
|
|
|
void deleteUnusedContextLayouts();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
int32 _selected, _pressedSel;
|
|
|
|
QPoint _lastMousePos;
|
2015-12-02 17:17:53 +00:00
|
|
|
|
|
|
|
LinkButton _settings;
|
2015-12-07 13:05:00 +00:00
|
|
|
|
|
|
|
QTimer _previewTimer;
|
|
|
|
bool _previewShown;
|
2015-10-01 14:05:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class EmojiPanel : public TWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
EmojiPanel(QWidget *parent, const QString &text, uint64 setId, bool special, int32 wantedY); // NoneStickerSetId if in emoji
|
|
|
|
void setText(const QString &text);
|
|
|
|
void setDeleteVisible(bool isVisible);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
|
|
|
|
int32 wantedY() const {
|
|
|
|
return _wantedY;
|
|
|
|
}
|
|
|
|
void setWantedY(int32 y) {
|
|
|
|
_wantedY = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void deleteClicked(quint64 setId);
|
|
|
|
void mousePressed();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onDelete();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void updateText();
|
|
|
|
|
|
|
|
int32 _wantedY;
|
|
|
|
QString _text, _fullText;
|
|
|
|
uint64 _setId;
|
|
|
|
bool _special, _deleteVisible;
|
|
|
|
IconedButton *_delete;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class EmojiSwitchButton : public Button {
|
|
|
|
public:
|
|
|
|
|
|
|
|
EmojiSwitchButton(QWidget *parent, bool toStickers); // otherwise toEmoji
|
|
|
|
void paintEvent(QPaintEvent *e);
|
2015-12-27 21:37:48 +00:00
|
|
|
void updateText();
|
2015-10-01 14:05:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
bool _toStickers;
|
|
|
|
QString _text;
|
|
|
|
int32 _textWidth;
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
class EmojiPan : public TWidget, public RPCSender {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
EmojiPan(QWidget *parent);
|
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
void setMaxHeight(int32 h);
|
2014-05-30 08:53:19 +00:00
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
2015-06-05 15:02:20 +00:00
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
|
|
|
|
|
|
bool event(QEvent *e);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void fastHide();
|
2015-01-02 14:55:24 +00:00
|
|
|
bool hiding() const {
|
|
|
|
return _hiding || _hideTimer.isActive();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
|
|
|
void step_slide(float64 ms, bool timer);
|
|
|
|
void step_icons(uint64 ms, bool timer);
|
2015-06-05 15:02:20 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
bool eventFilter(QObject *obj, QEvent *e);
|
2015-05-19 15:46:45 +00:00
|
|
|
void stickersInstalled(uint64 setId);
|
2015-05-08 12:45:14 +00:00
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
void showContextResults(UserData *bot, QString query);
|
2015-12-30 06:47:39 +00:00
|
|
|
void contextBotChanged();
|
2015-12-30 00:15:22 +00:00
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
bool overlaps(const QRect &globalRect) {
|
|
|
|
if (isHidden() || !_cache.isNull()) return false;
|
|
|
|
|
|
|
|
return QRect(st::dropdownDef.padding.left(),
|
|
|
|
st::dropdownDef.padding.top(),
|
|
|
|
_width - st::dropdownDef.padding.left() - st::dropdownDef.padding.right(),
|
|
|
|
_height - st::dropdownDef.padding.top() - st::dropdownDef.padding.bottom()
|
|
|
|
).contains(QRect(mapFromGlobal(globalRect.topLeft()), globalRect.size()));
|
|
|
|
}
|
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
void ui_repaintContextItem(const LayoutContextItem *layout);
|
|
|
|
bool ui_isContextItemVisible(const LayoutContextItem *layout);
|
|
|
|
bool ui_isContextItemBeingChosen();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
public slots:
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
void refreshStickers();
|
2015-12-27 21:37:48 +00:00
|
|
|
void refreshSavedGifs();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void hideStart();
|
|
|
|
void hideFinish();
|
|
|
|
|
|
|
|
void showStart();
|
2015-02-09 13:26:59 +00:00
|
|
|
void onWndActiveChanged();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void onTabChange();
|
2015-05-08 12:45:14 +00:00
|
|
|
void onScroll();
|
2015-05-19 15:46:45 +00:00
|
|
|
void onSwitch();
|
|
|
|
|
2015-10-01 14:05:05 +00:00
|
|
|
void onRemoveSet(quint64 setId);
|
2015-05-19 15:46:45 +00:00
|
|
|
void onRemoveSetSure();
|
|
|
|
void onDelayedHide();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-06-05 15:02:20 +00:00
|
|
|
void onRefreshIcons();
|
2015-10-01 14:05:05 +00:00
|
|
|
void onRefreshPanels();
|
2015-06-05 15:02:20 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
void onSaveConfig();
|
|
|
|
void onSaveConfigDelayed(int32 delay);
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
void onContextRequest();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void emojiSelected(EmojiPtr emoji);
|
2015-01-02 14:55:24 +00:00
|
|
|
void stickerSelected(DocumentData *sticker);
|
|
|
|
void updateStickers();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
void validateSelectedIcon(bool animated = false);
|
|
|
|
|
2015-06-28 12:37:10 +00:00
|
|
|
int32 _maxHeight;
|
2015-06-05 15:02:20 +00:00
|
|
|
bool _horizontal;
|
|
|
|
|
|
|
|
void leaveToChildEvent(QEvent *e);
|
|
|
|
|
|
|
|
void updateSelected();
|
|
|
|
void updateIcons();
|
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
void prepareTab(int32 &left, int32 top, int32 _width, FlatRadiobutton &tab);
|
2015-10-01 14:05:05 +00:00
|
|
|
void updatePanelsPositions(const QVector<EmojiPanel*> &panels, int32 st);
|
2015-05-19 15:46:45 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void showAll();
|
|
|
|
void hideAll();
|
|
|
|
|
2015-05-08 12:45:14 +00:00
|
|
|
bool _noTabUpdate;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 _width, _height;
|
|
|
|
bool _hiding;
|
|
|
|
QPixmap _cache;
|
|
|
|
|
|
|
|
anim::fvalue a_opacity;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_appearance;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
QTimer _hideTimer;
|
|
|
|
|
|
|
|
BoxShadow _shadow;
|
|
|
|
|
2015-11-27 17:10:16 +00:00
|
|
|
FlatRadiobutton _recent, _people, _nature, _food, _activity, _travel, _objects, _symbols;
|
2015-12-27 21:37:48 +00:00
|
|
|
QList<StickerIcon> _icons;
|
2015-06-05 15:02:20 +00:00
|
|
|
QVector<float64> _iconHovers;
|
|
|
|
int32 _iconOver, _iconSel, _iconDown;
|
|
|
|
bool _iconsDragging;
|
|
|
|
typedef QMap<int32, uint64> Animations; // index - showing, -index - hiding
|
|
|
|
Animations _iconAnimations;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_icons;
|
2015-06-05 15:02:20 +00:00
|
|
|
QPoint _iconsMousePos, _iconsMouseDown;
|
|
|
|
int32 _iconsLeft, _iconsTop;
|
2015-06-05 15:37:11 +00:00
|
|
|
int32 _iconsStartX, _iconsMax;
|
2015-06-18 17:24:54 +00:00
|
|
|
anim::ivalue _iconsX, _iconSelX;
|
2015-06-05 15:37:11 +00:00
|
|
|
uint64 _iconsStartAnim;
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
bool _stickersShown;
|
|
|
|
QPixmap _fromCache, _toCache;
|
|
|
|
anim::ivalue a_fromCoord, a_toCoord;
|
|
|
|
anim::fvalue a_fromAlpha, a_toAlpha;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_slide;
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
ScrollArea e_scroll;
|
|
|
|
EmojiPanInner e_inner;
|
2015-10-01 14:05:05 +00:00
|
|
|
QVector<EmojiPanel*> e_panels;
|
|
|
|
EmojiSwitchButton e_switch;
|
2015-05-19 15:46:45 +00:00
|
|
|
ScrollArea s_scroll;
|
|
|
|
StickerPanInner s_inner;
|
2015-10-01 14:05:05 +00:00
|
|
|
QVector<EmojiPanel*> s_panels;
|
|
|
|
EmojiSwitchButton s_switch;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
uint64 _removingSetId;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
QTimer _saveConfigTimer;
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
// context bots
|
|
|
|
struct ContextCacheEntry {
|
2015-12-30 06:47:39 +00:00
|
|
|
~ContextCacheEntry() {
|
|
|
|
clearResults();
|
|
|
|
}
|
2015-12-30 00:15:22 +00:00
|
|
|
QString nextOffset;
|
2015-12-30 06:47:39 +00:00
|
|
|
ContextResults results;
|
|
|
|
void clearResults() {
|
|
|
|
for (int32 i = 0, l = results.size(); i < l; ++i) {
|
|
|
|
delete results.at(i);
|
|
|
|
}
|
|
|
|
results.clear();
|
|
|
|
}
|
2015-12-30 00:15:22 +00:00
|
|
|
};
|
2015-12-30 06:47:39 +00:00
|
|
|
typedef QMap<QString, ContextCacheEntry*> ContextCache;
|
2015-12-30 00:15:22 +00:00
|
|
|
ContextCache _contextCache;
|
|
|
|
QTimer _contextRequestTimer;
|
|
|
|
|
2015-12-30 06:47:39 +00:00
|
|
|
void refreshContextRows(bool newResults);
|
2015-12-30 00:15:22 +00:00
|
|
|
UserData *_contextBot;
|
|
|
|
QString _contextQuery, _contextNextQuery, _contextNextOffset;
|
|
|
|
mtpRequestId _contextRequestId;
|
|
|
|
void contextResultsDone(const MTPmessages_BotResults &result);
|
|
|
|
bool contextResultsFail(const RPCError &error);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|
2015-01-02 14:55:24 +00:00
|
|
|
|
2015-03-19 09:18:19 +00:00
|
|
|
typedef QList<UserData*> MentionRows;
|
2015-03-24 10:00:27 +00:00
|
|
|
typedef QList<QString> HashtagRows;
|
2015-07-03 15:55:22 +00:00
|
|
|
typedef QList<QPair<UserData*, const BotCommand*> > BotCommandRows;
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
class MentionsDropdown;
|
2015-12-08 12:33:37 +00:00
|
|
|
class MentionsInner : public TWidget {
|
2015-03-19 09:18:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
MentionsInner(MentionsDropdown *parent, MentionRows *mrows, HashtagRows *hrows, BotCommandRows *brows);
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
|
|
|
|
void clearSel();
|
|
|
|
bool moveSel(int direction);
|
|
|
|
bool select();
|
|
|
|
|
2015-07-03 08:47:16 +00:00
|
|
|
QString getSelected() const;
|
|
|
|
|
2015-03-19 09:18:19 +00:00
|
|
|
signals:
|
|
|
|
|
2015-03-24 10:00:27 +00:00
|
|
|
void chosen(QString mentionOrHashtag);
|
2015-03-19 09:18:19 +00:00
|
|
|
void mustScrollTo(int scrollToTop, int scrollToBottom);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onParentGeometryChanged();
|
|
|
|
void onUpdateSelected(bool force = false);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void setSel(int sel, bool scroll = false);
|
|
|
|
|
|
|
|
MentionsDropdown *_parent;
|
2015-12-29 17:29:24 +00:00
|
|
|
MentionRows *_mrows;
|
2015-03-24 10:00:27 +00:00
|
|
|
HashtagRows *_hrows;
|
2015-12-29 17:29:24 +00:00
|
|
|
BotCommandRows *_brows;
|
2015-03-19 09:18:19 +00:00
|
|
|
int32 _sel;
|
|
|
|
bool _mouseSel;
|
|
|
|
QPoint _mousePos;
|
|
|
|
|
2015-03-24 15:18:20 +00:00
|
|
|
bool _overDelete;
|
2015-03-19 09:18:19 +00:00
|
|
|
};
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
class MentionsDropdown : public TWidget {
|
2015-03-19 09:18:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MentionsDropdown(QWidget *parent);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
|
|
|
|
void fastHide();
|
|
|
|
|
2015-12-29 17:29:24 +00:00
|
|
|
bool clearFilteredBotCommands();
|
2015-06-15 17:19:24 +00:00
|
|
|
void showFiltered(PeerData *peer, QString start);
|
2015-03-24 15:18:20 +00:00
|
|
|
void updateFiltered(bool toDown = false);
|
2015-03-19 09:18:19 +00:00
|
|
|
void setBoundings(QRect boundings);
|
|
|
|
|
2015-12-08 12:33:37 +00:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
2015-03-19 09:18:19 +00:00
|
|
|
|
2015-03-25 15:42:15 +00:00
|
|
|
const QString &filter() const;
|
2015-06-15 17:19:24 +00:00
|
|
|
ChatData *chat() const;
|
2015-11-09 09:51:22 +00:00
|
|
|
ChannelData *channel() const;
|
|
|
|
UserData *user() const;
|
2015-03-25 15:42:15 +00:00
|
|
|
|
2015-03-19 09:18:19 +00:00
|
|
|
int32 innerTop();
|
|
|
|
int32 innerBottom();
|
|
|
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *e);
|
2015-07-03 08:47:16 +00:00
|
|
|
QString getSelected() const;
|
2015-03-19 09:18:19 +00:00
|
|
|
|
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()));
|
|
|
|
}
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-03-19 09:18:19 +00:00
|
|
|
~MentionsDropdown();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
2015-03-24 10:00:27 +00:00
|
|
|
void chosen(QString mentionOrHashtag);
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void hideStart();
|
|
|
|
void hideFinish();
|
|
|
|
|
|
|
|
void showStart();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void recount(bool toDown = false);
|
|
|
|
|
|
|
|
QPixmap _cache;
|
2015-12-29 17:29:24 +00:00
|
|
|
MentionRows _mrows;
|
2015-03-24 10:00:27 +00:00
|
|
|
HashtagRows _hrows;
|
2015-12-29 17:29:24 +00:00
|
|
|
BotCommandRows _brows;
|
|
|
|
|
2015-12-30 00:15:22 +00:00
|
|
|
void rowsUpdated(const MentionRows &rows, const HashtagRows &hrows, const BotCommandRows &brows, bool toDown);
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
ScrollArea _scroll;
|
|
|
|
MentionsInner _inner;
|
|
|
|
|
|
|
|
ChatData *_chat;
|
2015-06-15 17:19:24 +00:00
|
|
|
UserData *_user;
|
2015-09-06 10:17:09 +00:00
|
|
|
ChannelData *_channel;
|
2015-03-19 09:18:19 +00:00
|
|
|
QString _filter;
|
|
|
|
QRect _boundings;
|
|
|
|
|
|
|
|
int32 _width, _height;
|
|
|
|
bool _hiding;
|
|
|
|
|
|
|
|
anim::fvalue a_opacity;
|
2015-12-08 12:33:37 +00:00
|
|
|
Animation _a_appearance;
|
2015-03-19 09:18:19 +00:00
|
|
|
|
|
|
|
QTimer _hideTimer;
|
|
|
|
|
|
|
|
BoxShadow _shadow;
|
|
|
|
|
|
|
|
};
|