2016-09-09 18:52:46 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 22:31:31 +04:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-09-09 18:52:46 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/twidget.h"
|
2016-11-11 16:46:04 +03:00
|
|
|
#include "ui/abstract_button.h"
|
2016-11-12 18:02:19 +03:00
|
|
|
#include "ui/effects/panel_animation.h"
|
2017-03-27 11:43:54 +03:00
|
|
|
#include "mtproto/sender.h"
|
2017-03-27 21:11:51 +03:00
|
|
|
#include "inline_bots/inline_bot_layout_item.h"
|
2017-03-28 15:30:38 +03:00
|
|
|
#include "auth_session.h"
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
namespace InlineBots {
|
|
|
|
namespace Layout {
|
|
|
|
class ItemBase;
|
|
|
|
} // namespace Layout
|
|
|
|
class Result;
|
|
|
|
} // namespace InlineBots
|
|
|
|
|
2016-10-27 17:10:28 +03:00
|
|
|
namespace Ui {
|
2017-03-28 15:30:38 +03:00
|
|
|
class PlainShadow;
|
2016-11-16 13:44:06 +03:00
|
|
|
class ScrollArea;
|
2016-10-27 17:10:28 +03:00
|
|
|
class IconButton;
|
2016-11-11 16:46:04 +03:00
|
|
|
class LinkButton;
|
|
|
|
class RoundButton;
|
2016-11-16 19:04:25 +03:00
|
|
|
class RippleAnimation;
|
2017-03-28 15:30:38 +03:00
|
|
|
class SettingsSlider;
|
2016-10-27 17:10:28 +03:00
|
|
|
} // namesapce Ui
|
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
namespace ChatHelpers {
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
class EmojiListWidget;
|
|
|
|
class StickersListWidget;
|
|
|
|
class GifsListWidget;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
using InlineResult = InlineBots::Result;
|
2017-03-27 11:43:54 +03:00
|
|
|
using InlineResults = std::vector<std::unique_ptr<InlineResult>>;
|
2016-09-09 18:52:46 +03:00
|
|
|
using InlineItem = InlineBots::Layout::ItemBase;
|
|
|
|
|
|
|
|
struct InlineCacheEntry {
|
|
|
|
QString nextOffset;
|
|
|
|
QString switchPmText, switchPmStartToken;
|
2017-03-27 11:43:54 +03:00
|
|
|
InlineResults results;
|
2016-09-09 18:52:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct StickerIcon {
|
|
|
|
StickerIcon(uint64 setId) : setId(setId) {
|
|
|
|
}
|
|
|
|
StickerIcon(uint64 setId, DocumentData *sticker, int32 pixw, int32 pixh) : setId(setId), sticker(sticker), pixw(pixw), pixh(pixh) {
|
|
|
|
}
|
2017-03-28 15:30:38 +03:00
|
|
|
uint64 setId = 0;
|
2016-09-09 18:52:46 +03:00
|
|
|
DocumentData *sticker = nullptr;
|
|
|
|
int pixw = 0;
|
|
|
|
int pixh = 0;
|
2017-03-28 15:30:38 +03:00
|
|
|
|
2016-09-09 18:52:46 +03:00
|
|
|
};
|
|
|
|
|
2017-03-29 14:50:09 +03:00
|
|
|
class EmojiPanel : public TWidget, private MTP::Sender {
|
2016-09-09 18:52:46 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-03-29 14:50:09 +03:00
|
|
|
EmojiPanel(QWidget *parent);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2017-01-07 15:55:05 +04:00
|
|
|
void setMinTop(int minTop);
|
|
|
|
void setMinBottom(int minBottom);
|
|
|
|
void moveBottom(int bottom);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2016-10-26 19:43:13 +03:00
|
|
|
void hideFast();
|
2016-09-09 18:52:46 +03:00
|
|
|
bool hiding() const {
|
|
|
|
return _hiding || _hideTimer.isActive();
|
|
|
|
}
|
|
|
|
|
2016-12-01 22:20:33 +03:00
|
|
|
void step_icons(TimeMs ms, bool timer);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2016-11-21 23:48:21 +03:00
|
|
|
void leaveToChildEvent(QEvent *e, QWidget *child) override;
|
|
|
|
|
2016-09-09 18:52:46 +03:00
|
|
|
void stickersInstalled(uint64 setId);
|
|
|
|
|
|
|
|
void queryInlineBot(UserData *bot, PeerData *peer, QString query);
|
|
|
|
void clearInlineBot();
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
bool overlaps(const QRect &globalRect) const;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
bool ui_isInlineItemBeingChosen();
|
|
|
|
|
2017-03-27 21:11:51 +03:00
|
|
|
void showAnimated();
|
2016-10-26 19:43:13 +03:00
|
|
|
void hideAnimated();
|
|
|
|
|
2017-03-29 14:50:09 +03:00
|
|
|
~EmojiPanel();
|
2016-11-12 18:02:19 +03:00
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
class Inner;
|
|
|
|
|
2016-11-19 12:22:53 +03:00
|
|
|
protected:
|
2017-02-11 14:24:37 +03:00
|
|
|
void enterEventHook(QEvent *e) override;
|
|
|
|
void leaveEventHook(QEvent *e) override;
|
2016-11-19 12:22:53 +03:00
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
|
|
|
bool event(QEvent *e) override;
|
|
|
|
bool eventFilter(QObject *obj, QEvent *e) override;
|
|
|
|
|
2016-11-06 21:08:52 +03:00
|
|
|
public slots:
|
2016-09-09 18:52:46 +03:00
|
|
|
void refreshStickers();
|
2016-09-19 13:18:21 +03:00
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
private slots:
|
2016-11-06 21:08:52 +03:00
|
|
|
void hideByTimerOrLeave();
|
2016-09-09 18:52:46 +03:00
|
|
|
void refreshSavedGifs();
|
|
|
|
|
|
|
|
void onWndActiveChanged();
|
2017-03-28 15:30:38 +03:00
|
|
|
void onScroll();
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
void onDisplaySet(quint64 setId);
|
|
|
|
void onInstallSet(quint64 setId);
|
|
|
|
void onRemoveSet(quint64 setId);
|
|
|
|
void onDelayedHide();
|
|
|
|
|
2016-09-19 13:18:21 +03:00
|
|
|
void onRefreshIcons(bool scrollAnimation);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
void onSaveConfig();
|
2017-03-28 15:30:38 +03:00
|
|
|
void onSaveConfigDelayed(int delay);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
void onInlineRequest();
|
|
|
|
void onEmptyInlineRows();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void emojiSelected(EmojiPtr emoji);
|
|
|
|
void stickerSelected(DocumentData *sticker);
|
|
|
|
void photoSelected(PhotoData *photo);
|
|
|
|
void inlineResultSelected(InlineBots::Result *result, UserData *bot);
|
|
|
|
|
|
|
|
void updateStickers();
|
|
|
|
|
|
|
|
private:
|
2017-03-29 14:50:09 +03:00
|
|
|
using TabType = EmojiPanelTab;
|
2017-03-28 15:30:38 +03:00
|
|
|
class Tab {
|
|
|
|
public:
|
|
|
|
static constexpr auto kCount = 3;
|
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
Tab(TabType type, object_ptr<Inner> widget);
|
2017-03-28 15:30:38 +03:00
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
object_ptr<Inner> takeWidget();
|
|
|
|
void returnWidget(object_ptr<Inner> widget);
|
2017-03-28 15:30:38 +03:00
|
|
|
|
|
|
|
TabType type() const {
|
|
|
|
return _type;
|
|
|
|
}
|
2017-03-29 17:04:00 +03:00
|
|
|
gsl::not_null<Inner*> widget() const {
|
2017-03-28 15:30:38 +03:00
|
|
|
return _weak;
|
|
|
|
}
|
|
|
|
|
|
|
|
void saveScrollTop();
|
|
|
|
void saveScrollTop(int scrollTop) {
|
|
|
|
_scrollTop = scrollTop;
|
|
|
|
}
|
|
|
|
int getScrollTop() const {
|
|
|
|
return _scrollTop;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TabType _type = TabType::Emoji;
|
2017-03-29 17:04:00 +03:00
|
|
|
object_ptr<Inner> _widget = { nullptr };
|
|
|
|
QPointer<Inner> _weak;
|
2017-03-28 15:30:38 +03:00
|
|
|
int _scrollTop = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
int marginTop() const;
|
|
|
|
int marginBottom() const;
|
2017-01-07 15:55:05 +04:00
|
|
|
int countBottom() const;
|
|
|
|
void moveByBottom();
|
2017-03-28 15:30:38 +03:00
|
|
|
void paintSlideFrame(Painter &p, TimeMs ms);
|
2016-11-12 18:02:19 +03:00
|
|
|
void paintContent(Painter &p);
|
|
|
|
|
|
|
|
style::margins innerPadding() const;
|
|
|
|
|
|
|
|
// Rounded rect which has shadow around it.
|
|
|
|
QRect innerRect() const;
|
|
|
|
|
|
|
|
// Inner rect with removed st::buttonRadius from top and bottom.
|
|
|
|
// This one is allowed to be not rounded.
|
|
|
|
QRect horizontalRect() const;
|
|
|
|
|
|
|
|
// Inner rect with removed st::buttonRadius from left and right.
|
|
|
|
// This one is allowed to be not rounded.
|
|
|
|
QRect verticalRect() const;
|
|
|
|
|
2017-03-28 15:30:38 +03:00
|
|
|
enum class GrabType {
|
|
|
|
Panel,
|
|
|
|
Slide,
|
|
|
|
};
|
|
|
|
QImage grabForComplexAnimation(GrabType type);
|
2016-11-12 18:02:19 +03:00
|
|
|
void startShowAnimation();
|
|
|
|
void startOpacityAnimation(bool hiding);
|
|
|
|
void prepareCache();
|
|
|
|
|
|
|
|
void opacityAnimationCallback();
|
|
|
|
|
|
|
|
void hideFinished();
|
|
|
|
void showStarted();
|
|
|
|
|
2016-09-09 18:52:46 +03:00
|
|
|
bool preventAutoHide() const;
|
2017-03-28 15:30:38 +03:00
|
|
|
void setActiveSection(DBIEmojiSection section);
|
|
|
|
void setCurrentSectionIcon(DBIEmojiSection section);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
void paintStickerSettingsIcon(Painter &p) const;
|
|
|
|
void paintFeaturedStickerSetsBadge(Painter &p, int iconLeft) const;
|
|
|
|
|
2016-09-19 13:18:21 +03:00
|
|
|
enum class ValidateIconAnimations {
|
|
|
|
Full,
|
|
|
|
Scroll,
|
|
|
|
None,
|
|
|
|
};
|
|
|
|
void validateSelectedIcon(ValidateIconAnimations animations);
|
2016-09-09 18:52:46 +03:00
|
|
|
void updateContentHeight();
|
|
|
|
|
|
|
|
void updateSelected();
|
|
|
|
void updateIcons();
|
|
|
|
|
2017-03-28 15:30:38 +03:00
|
|
|
void prepareSection(int &left, int top, int _width, Ui::IconButton *sectionIcon, DBIEmojiSection section);
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
void showAll();
|
2017-03-28 15:30:38 +03:00
|
|
|
void hideForSliding();
|
|
|
|
|
|
|
|
void setWidgetToScrollArea();
|
|
|
|
void createTabsSlider();
|
|
|
|
void switchTab();
|
|
|
|
gsl::not_null<Tab*> getTab(TabType type) {
|
|
|
|
return &_tabs[static_cast<int>(type)];
|
|
|
|
}
|
|
|
|
gsl::not_null<const Tab*> getTab(TabType type) const {
|
|
|
|
return &_tabs[static_cast<int>(type)];
|
|
|
|
}
|
|
|
|
gsl::not_null<Tab*> currentTab() {
|
|
|
|
return getTab(_currentTabType);
|
|
|
|
}
|
|
|
|
gsl::not_null<const Tab*> currentTab() const {
|
|
|
|
return getTab(_currentTabType);
|
|
|
|
}
|
2017-03-29 17:04:00 +03:00
|
|
|
gsl::not_null<EmojiListWidget*> emoji() const;
|
|
|
|
gsl::not_null<StickersListWidget*> stickers() const;
|
|
|
|
gsl::not_null<GifsListWidget*> gifs() const;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2017-01-07 15:55:05 +04:00
|
|
|
int _minTop = 0;
|
|
|
|
int _minBottom = 0;
|
2016-12-13 20:07:56 +03:00
|
|
|
int _contentMaxHeight = 0;
|
|
|
|
int _contentHeight = 0;
|
2016-09-09 18:52:46 +03:00
|
|
|
bool _horizontal = false;
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
int _width = 0;
|
|
|
|
int _height = 0;
|
|
|
|
int _bottom = 0;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2017-02-21 16:45:56 +03:00
|
|
|
std::unique_ptr<Ui::PanelAnimation> _showAnimation;
|
2016-12-07 16:32:25 +03:00
|
|
|
Animation _a_show;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2016-11-12 18:02:19 +03:00
|
|
|
bool _hiding = false;
|
2017-03-28 15:30:38 +03:00
|
|
|
bool _hideAfterSlide = false;
|
2016-11-12 18:02:19 +03:00
|
|
|
QPixmap _cache;
|
2016-12-07 16:32:25 +03:00
|
|
|
Animation _a_opacity;
|
2016-09-09 18:52:46 +03:00
|
|
|
QTimer _hideTimer;
|
2017-03-28 15:30:38 +03:00
|
|
|
bool _inComplrexGrab = false;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2016-11-12 18:02:19 +03:00
|
|
|
class SlideAnimation;
|
2017-02-21 16:45:56 +03:00
|
|
|
std::unique_ptr<SlideAnimation> _slideAnimation;
|
2016-12-07 16:32:25 +03:00
|
|
|
Animation _a_slide;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::IconButton> _recent;
|
|
|
|
object_ptr<Ui::IconButton> _people;
|
|
|
|
object_ptr<Ui::IconButton> _nature;
|
|
|
|
object_ptr<Ui::IconButton> _food;
|
|
|
|
object_ptr<Ui::IconButton> _activity;
|
|
|
|
object_ptr<Ui::IconButton> _travel;
|
|
|
|
object_ptr<Ui::IconButton> _objects;
|
|
|
|
object_ptr<Ui::IconButton> _symbols;
|
2016-10-27 17:10:28 +03:00
|
|
|
|
2017-03-29 17:04:00 +03:00
|
|
|
QList<StickerIcon> _icons;
|
2016-09-09 18:52:46 +03:00
|
|
|
int _iconOver = -1;
|
|
|
|
int _iconSel = 0;
|
|
|
|
int _iconDown = -1;
|
|
|
|
bool _iconsDragging = false;
|
2016-12-07 16:32:25 +03:00
|
|
|
BasicAnimation _a_icons;
|
2016-09-09 18:52:46 +03:00
|
|
|
QPoint _iconsMousePos, _iconsMouseDown;
|
|
|
|
int _iconsLeft = 0;
|
|
|
|
int _iconsTop = 0;
|
|
|
|
int _iconsStartX = 0;
|
|
|
|
int _iconsMax = 0;
|
2016-12-05 14:01:08 +03:00
|
|
|
anim::value _iconsX;
|
|
|
|
anim::value _iconSelX;
|
2016-12-01 22:20:33 +03:00
|
|
|
TimeMs _iconsStartAnim = 0;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
2017-03-28 15:30:38 +03:00
|
|
|
object_ptr<Ui::SettingsSlider> _tabsSlider = { nullptr };
|
|
|
|
object_ptr<Ui::PlainShadow> _topShadow;
|
|
|
|
object_ptr<Ui::PlainShadow> _bottomShadow;
|
|
|
|
object_ptr<Ui::ScrollArea> _scroll;
|
|
|
|
std::array<Tab, Tab::kCount> _tabs;
|
|
|
|
TabType _currentTabType = TabType::Emoji;
|
2016-09-09 18:52:46 +03:00
|
|
|
|
|
|
|
uint64 _displayingSetId = 0;
|
|
|
|
uint64 _removingSetId = 0;
|
|
|
|
|
|
|
|
QTimer _saveConfigTimer;
|
|
|
|
|
|
|
|
// inline bots
|
2017-03-29 17:04:00 +03:00
|
|
|
std::map<QString, std::unique_ptr<InlineCacheEntry>> _inlineCache;
|
2016-09-09 18:52:46 +03:00
|
|
|
QTimer _inlineRequestTimer;
|
|
|
|
|
|
|
|
void inlineBotChanged();
|
|
|
|
int32 showInlineRows(bool newResults);
|
|
|
|
bool refreshInlineRows(int32 *added = 0);
|
|
|
|
UserData *_inlineBot = nullptr;
|
|
|
|
PeerData *_inlineQueryPeer = nullptr;
|
|
|
|
QString _inlineQuery, _inlineNextQuery, _inlineNextOffset;
|
|
|
|
mtpRequestId _inlineRequestId = 0;
|
|
|
|
void inlineResultsDone(const MTPmessages_BotResults &result);
|
|
|
|
|
|
|
|
};
|
2017-03-29 17:04:00 +03:00
|
|
|
|
|
|
|
class EmojiPanel::Inner : public TWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Inner(QWidget *parent);
|
|
|
|
|
|
|
|
void setVisibleTopBottom(int visibleTop, int visibleBottom) override;
|
|
|
|
|
|
|
|
int getVisibleTop() const {
|
|
|
|
return _visibleTop;
|
|
|
|
}
|
|
|
|
int getVisibleBottom() const {
|
|
|
|
return _visibleBottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void refreshRecent() = 0;
|
|
|
|
virtual void preloadImages() {
|
|
|
|
}
|
|
|
|
virtual void hideFinish(bool completely) = 0;
|
|
|
|
virtual void clearSelection() = 0;
|
|
|
|
|
|
|
|
virtual object_ptr<TWidget> createController() = 0;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void scrollToY(int y);
|
|
|
|
void disableScroll(bool disabled);
|
|
|
|
void saveConfigDelayed(int delay);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual int countHeight() = 0;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _visibleTop = 0;
|
|
|
|
int _visibleBottom = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ChatHelpers
|