tdesktop/Telegram/SourceFiles/profilewidget.h

296 lines
6.9 KiB
C
Raw Normal View History

/*
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.
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.
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
*/
#pragma once
class ProfileWidget;
2015-12-08 12:33:37 +00:00
class ProfileInner : public TWidget, public RPCSender {
Q_OBJECT
public:
ProfileInner(ProfileWidget *profile, ScrollArea *scroll, PeerData *peer);
2015-06-17 19:43:03 +00:00
void start();
2015-09-21 20:57:42 +00:00
void peerUsernameChanged();
bool event(QEvent *e);
void paintEvent(QPaintEvent *e);
void mouseMoveEvent(QMouseEvent *e);
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void keyPressEvent(QKeyEvent *e);
void enterEvent(QEvent *e);
void leaveEvent(QEvent *e);
void leaveToChildEvent(QEvent *e);
void resizeEvent(QResizeEvent *e);
void contextMenuEvent(QContextMenuEvent *e);
2015-12-08 12:33:37 +00:00
void step_photo(float64 ms, bool timer);
PeerData *peer() const;
2014-08-15 11:19:32 +00:00
bool allMediaShown() const;
void updateOnlineDisplay();
void updateOnlineDisplayTimer();
void reorderParticipants();
void saveError(const QString &str = QString());
void loadProfilePhotos(int32 yFrom);
void updateNotifySettings();
2015-09-06 10:17:09 +00:00
int32 mediaOverviewUpdated(PeerData *peer, MediaOverviewType type); // returns scroll shift
void requestHeight(int32 newHeight);
2015-09-21 20:57:42 +00:00
int32 countMinHeight();
2015-09-06 10:17:09 +00:00
void allowDecreaseHeight(int32 decreaseBy);
~ProfileInner();
public slots:
void peerUpdated(PeerData *data);
void updateSelected();
void openContextImage();
void deleteContextImage();
void onShareContact();
void onInviteToGroup();
void onSendMessage();
void onSearchInPeer();
2016-03-04 22:04:15 +00:00
void onConvertToSupergroup();
void onEnableNotifications();
void onClearHistory();
void onClearHistorySure();
void onDeleteConversation();
void onDeleteConversationSure();
2015-09-21 20:57:42 +00:00
void onDeleteChannel();
void onDeleteChannelSure();
void onBlockUser();
void onAddParticipant();
2015-11-06 17:48:49 +00:00
void onMigrate();
void onMigrateSure();
void onUpdatePhoto();
void onUpdatePhotoCancel();
void onPhotoUpdateDone(PeerId peer);
void onPhotoUpdateFail(PeerId peer);
void onPhotoUpdateStart();
void onKickConfirm();
2014-08-15 11:19:32 +00:00
void onMediaPhotos();
void onMediaVideos();
void onMediaSongs();
2014-08-15 11:19:32 +00:00
void onMediaDocuments();
void onMediaAudios();
void onMediaLinks();
2014-08-15 11:19:32 +00:00
void onMenuDestroy(QObject *obj);
void onCopyPhone();
void onCopyUsername();
void onInvitationLink();
void onCreateInvitationLink();
void onCreateInvitationLinkSure();
2015-09-21 20:57:42 +00:00
void onPublicLink();
void onMembers();
void onAdmins();
void onFullPeerUpdated(PeerData *peer);
void onBotSettings();
void onBotHelp();
void onPinnedMessage();
void onUpdateDelayed();
private:
void showAll();
void updateInvitationLink();
void updateBotLinksVisibility();
void updatePinnedMessageVisibility();
void chatInviteDone(const MTPExportedChatInvite &result);
2015-09-06 10:17:09 +00:00
bool updateMediaLinks(int32 *addToScroll = 0); // returns if anything changed
2015-11-06 17:48:49 +00:00
void migrateDone(const MTPUpdates &updates);
bool migrateFail(const RPCError &error);
ProfileWidget *_profile;
ScrollArea *_scroll;
PeerData *_peer;
UserData *_peerUser;
ChatData *_peerChat;
ChannelData *_peerChannel;
History *_migrated, *_history;
2015-09-21 20:57:42 +00:00
bool _amCreator;
2015-09-06 10:17:09 +00:00
int32 _width, _left, _addToHeight;
// profile
Text _nameText;
QString _nameCache;
QString _phoneText;
TextLinkPtr _photoLink;
FlatButton _uploadPhoto, _addParticipant;
FlatButton _sendMessage, _shareContact, _inviteToGroup;
LinkButton _cancelPhoto, _createInvitationLink, _invitationLink;
QString _invitationText;
LinkButton _botSettings, _botHelp, _pinnedMessage, _username, _members, _admins;
Text _about;
int32 _aboutTop, _aboutHeight;
2015-12-08 12:33:37 +00:00
anim::fvalue a_photoOver;
Animation _a_photo;
bool _photoOver;
QString _errorText;
2015-11-06 17:48:49 +00:00
// migrate to megagroup
bool _showMigrate, _forceShowMigrate;
2015-11-06 17:48:49 +00:00
Text _aboutMigrate;
FlatButton _migrate;
// settings
FlatCheckbox _enableNotifications;
2014-08-15 11:19:32 +00:00
// shared media
2015-09-06 10:17:09 +00:00
bool _notAllMediaLoaded;
LinkButton *_mediaButtons[OverviewCount];
2014-08-15 11:19:32 +00:00
QString overviewLinkText(int32 type, int32 count);
// actions
2016-03-04 22:04:15 +00:00
LinkButton _searchInPeer, _convertToSupergroup, _clearHistory, _deleteConversation;
UserBlockedStatus _wasBlocked;
mtpRequestId _blockRequest;
2015-09-21 20:57:42 +00:00
LinkButton _blockUser, _deleteChannel;
bool canDeleteChannel() const;
// participants
int32 _pHeight;
int32 _kickWidth, _selectedRow, _lastPreload;
uint64 _contactId;
UserData *_kickOver, *_kickDown, *_kickConfirm;
struct ParticipantData {
Text name;
QString online;
bool cankick, admin;
};
typedef QVector<UserData*> Participants;
Participants _participants;
typedef QVector<ParticipantData*> ParticipantsData;
ParticipantsData _participantsData;
QPoint _lastPos;
QString _onlineText;
2015-10-23 16:15:24 +00:00
PopupMenu *_menu;
QString _secretText;
bool _updateDelayed;
void blockDone(bool blocked, const MTPBool &result);
bool blockFail(const RPCError &error);
};
2015-10-17 14:52:26 +00:00
class ProfileWidget : public TWidget, public RPCSender {
Q_OBJECT
public:
ProfileWidget(QWidget *parent, PeerData *peer);
void resizeEvent(QResizeEvent *e) override;
void mousePressEvent(QMouseEvent *e) override;
void paintEvent(QPaintEvent *e) override;
void dragEnterEvent(QDragEnterEvent *e) override;
void dropEvent(QDropEvent *e) override;
void keyPressEvent(QKeyEvent *e) override;
void paintTopBar(QPainter &p, float64 over, int32 decreaseWidth);
void topBarClick();
PeerData *peer() const;
2014-08-15 11:19:32 +00:00
int32 lastScrollTop() const;
2015-09-06 10:17:09 +00:00
void animShow(const QPixmap &oldAnimCache, const QPixmap &bgAnimTopBarCache, bool back = false, int32 lastScrollTop = -1);
2015-12-08 12:33:37 +00:00
void step_show(float64 ms, bool timer);
void updateOnlineDisplay();
void updateOnlineDisplayTimer();
2015-09-21 20:57:42 +00:00
void peerUsernameChanged();
void updateNotifySettings();
2015-07-03 08:47:16 +00:00
void mediaOverviewUpdated(PeerData *peer, MediaOverviewType type);
void updateAdaptiveLayout();
2015-10-17 14:52:26 +00:00
void grabStart() override {
2015-10-17 14:52:26 +00:00
_sideShadow.hide();
_inGrab = true;
resizeEvent(0);
}
void grabFinish() override {
_sideShadow.setVisible(!Adaptive::OneColumn());
2015-10-17 14:52:26 +00:00
_inGrab = false;
resizeEvent(0);
}
void rpcClear() override {
_inner.rpcClear();
RPCSender::rpcClear();
}
2015-06-17 19:43:03 +00:00
void clear();
~ProfileWidget();
public slots:
void activate();
void onScroll();
private:
ScrollArea _scroll;
ProfileInner _inner;
2015-10-17 14:52:26 +00:00
Animation _a_show;
QPixmap _cacheUnder, _cacheOver, _cacheTopBarUnder, _cacheTopBarOver;
anim::ivalue a_coordUnder, a_coordOver;
anim::fvalue a_shadow;
PlainShadow _sideShadow, _topShadow;
2015-10-17 14:52:26 +00:00
bool _inGrab;
};