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-12-31 15:27:21 +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-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);
|
|
|
|
|
2015-12-31 15:27:21 +00:00
|
|
|
bool showSectionIcons() const;
|
2015-05-19 15:46:45 +00:00
|
|
|
void clearSelection(bool fast = false);
|
|
|
|
|
|
|
|
void refreshStickers();
|
2015-12-27 21:37:48 +00:00
|
|
|
void refreshRecentStickers(bool resize = true);
|
|
|
|
void refreshSavedGifs();
|
2015-12-31 05:34:43 +00:00
|
|
|
void refreshInlineRows(UserData *bot, const InlineResults &results, bool resultsDeleted);
|
2015-12-27 21:37:48 +00:00
|
|
|
void refreshRecent();
|
2015-12-30 19:09:20 +00:00
|
|
|
void inlineBotChanged();
|
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 19:09:20 +00:00
|
|
|
void ui_repaintInlineItem(const LayoutInlineItem *layout);
|
|
|
|
bool ui_isInlineItemVisible(const LayoutInlineItem *layout);
|
|
|
|
bool ui_isInlineItemBeingChosen();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
bool inlineResultsShown() const {
|
|
|
|
return _showingInlineItems && !_showingSavedGifs;
|
2015-12-30 11:56:05 +00:00
|
|
|
}
|
|
|
|
|
2015-12-27 21:37:48 +00:00
|
|
|
~StickerPanInner() {
|
2015-12-31 05:34:43 +00:00
|
|
|
clearInlineRows(true);
|
2015-12-30 06:47:39 +00:00
|
|
|
deleteUnusedGifLayouts();
|
2015-12-30 19:09:20 +00:00
|
|
|
deleteUnusedInlineLayouts();
|
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-12-30 19:09:20 +00:00
|
|
|
void onUpdateInlineItems();
|
2015-05-19 15:46:45 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void selected(DocumentData *sticker);
|
2015-12-31 05:34:43 +00:00
|
|
|
void selected(PhotoData *photo);
|
|
|
|
void selected(InlineResult *result, UserData *bot);
|
|
|
|
|
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 19:09:20 +00:00
|
|
|
void paintInlineItems(Painter &p, const QRect &r);
|
2015-12-27 21:37:48 +00:00
|
|
|
void paintStickers(Painter &p, const QRect &r);
|
2015-12-31 15:27:21 +00:00
|
|
|
|
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 19:09:20 +00:00
|
|
|
bool _showingSavedGifs, _showingInlineItems;
|
2015-12-31 05:34:43 +00:00
|
|
|
UserData *_inlineBot;
|
2015-12-30 11:56:05 +00:00
|
|
|
QString _inlineBotTitle;
|
2015-12-29 17:33:56 +00:00
|
|
|
uint64 _lastScrolled;
|
2015-12-30 19:09:20 +00:00
|
|
|
QTimer _updateInlineItems;
|
2015-12-31 07:57:11 +00:00
|
|
|
bool _inlineWithThumb;
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
typedef QVector<LayoutInlineItem*> InlineItems;
|
|
|
|
struct InlineRow {
|
|
|
|
InlineRow() : height(0) {
|
2015-12-30 06:47:39 +00:00
|
|
|
}
|
|
|
|
int32 height;
|
2015-12-30 19:09:20 +00:00
|
|
|
InlineItems items;
|
2015-12-30 06:47:39 +00:00
|
|
|
};
|
2015-12-30 19:09:20 +00:00
|
|
|
typedef QVector<InlineRow> InlineRows;
|
|
|
|
InlineRows _inlineRows;
|
2015-12-31 05:34:43 +00:00
|
|
|
void clearInlineRows(bool resultsDeleted);
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
typedef QMap<DocumentData*, LayoutInlineGif*> GifLayouts;
|
2015-12-27 21:37:48 +00:00
|
|
|
GifLayouts _gifLayouts;
|
2015-12-30 19:09:20 +00:00
|
|
|
LayoutInlineGif *layoutPrepareSavedGif(DocumentData *doc, int32 position);
|
2015-12-30 06:47:39 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
typedef QMap<InlineResult*, LayoutInlineItem*> InlineLayouts;
|
|
|
|
InlineLayouts _inlineLayouts;
|
|
|
|
LayoutInlineItem *layoutPrepareInlineResult(InlineResult *result, int32 position);
|
2015-12-30 11:56:05 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
void inlineRowsAddItem(DocumentData *savedGif, InlineResult *result, InlineRow &row, int32 &sumWidth);
|
2015-12-31 05:34:43 +00:00
|
|
|
bool inlineRowFinalize(InlineRow &row, int32 &sumWidth, bool force = false);
|
2015-12-30 06:47:39 +00:00
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
InlineRow &layoutInlineRow(InlineRow &row, int32 sumWidth = 0);
|
2015-12-30 06:47:39 +00:00
|
|
|
void deleteUnusedGifLayouts();
|
|
|
|
|
2015-12-30 19:09:20 +00:00
|
|
|
void deleteUnusedInlineLayouts();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-05-19 15:46:45 +00:00
|
|
|
int32 _selected, _pressedSel;
|
|
|
|
QPoint _lastMousePos;
|
2015-12-30 08:36:04 +00:00
|
|
|
TextLinkPtr _linkOver, _linkDown;
|
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-31 15:27:21 +00:00
|
|
|
void updateText(const QString &inlineBotUsername = QString());
|
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);
|
|
|
|
|
2015-12-31 15:27:21 +00:00
|
|
|
void moveBottom(int32 bottom, bool force = false);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
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 19:09:20 +00:00
|
|
|
void queryInlineBot(UserData *bot, QString query);
|
2015-12-31 15:27:21 +00:00
|
|
|
void clearInlineBot();
|
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 19:09:20 +00:00
|
|
|
void ui_repaintInlineItem(const LayoutInlineItem *layout);
|
|
|
|
bool ui_isInlineItemVisible(const LayoutInlineItem *layout);
|
|
|
|
bool ui_isInlineItemBeingChosen();
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2015-12-31 15:27:21 +00:00
|
|
|
void notify_automaticLoadSettingsChangedGif();
|
|
|
|
|
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 19:09:20 +00:00
|
|
|
void onInlineRequest();
|
2015-12-30 00:15:22 +00:00
|
|
|
|
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);
|
2015-12-31 05:34:43 +00:00
|
|
|
void photoSelected(PhotoData *photo);
|
|
|
|
void inlineResultSelected(InlineResult *result, UserData *bot);
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
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-12-31 15:27:21 +00:00
|
|
|
int32 _maxHeight, _maxHeightEmoji, _maxHeightStickers;
|
2015-06-05 15:02:20 +00:00
|
|
|
bool _horizontal;
|
|
|
|
|
|
|
|
void leaveToChildEvent(QEvent *e);
|
2015-12-31 07:57:11 +00:00
|
|
|
void hideAnimated();
|
2015-06-05 15:02:20 +00:00
|
|
|
|
|
|
|
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 19:09:20 +00:00
|
|
|
// inline bots
|
|
|
|
struct InlineCacheEntry {
|
|
|
|
~InlineCacheEntry() {
|
2015-12-30 06:47:39 +00:00
|
|
|
clearResults();
|
|
|
|
}
|
2015-12-30 00:15:22 +00:00
|
|
|
QString nextOffset;
|
2015-12-30 19:09:20 +00:00
|
|
|
InlineResults results;
|
2015-12-30 06:47:39 +00:00
|
|
|
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 19:09:20 +00:00
|
|
|
typedef QMap<QString, InlineCacheEntry*> InlineCache;
|
|
|
|
InlineCache _inlineCache;
|
|
|
|
QTimer _inlineRequestTimer;
|
|
|
|
|
2015-12-31 15:27:21 +00:00
|
|
|
void inlineBotChanged();
|
2015-12-30 19:09:20 +00:00
|
|
|
void showInlineRows(bool newResults);
|
2015-12-31 15:27:21 +00:00
|
|
|
bool refreshInlineRows();
|
2015-12-30 19:09:20 +00:00
|
|
|
UserData *_inlineBot;
|
|
|
|
QString _inlineQuery, _inlineNextQuery, _inlineNextOffset;
|
|
|
|
mtpRequestId _inlineRequestId;
|
|
|
|
void inlineResultsDone(const MTPmessages_BotResults &result);
|
|
|
|
bool inlineResultsFail(const RPCError &error);
|
2015-12-30 00:15:22 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
};
|