diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 11459bc37..fadd7bf62 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -424,6 +424,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org "lng_profile_delete_channel" = "Delete channel"; "lng_profile_leave_group" = "Leave group"; "lng_profile_delete_group" = "Delete group"; +"lng_profile_report" = "Report"; "lng_profile_search_messages" = "Search for messages"; "lng_profile_block_user" = "Block user"; "lng_profile_unblock_user" = "Unblock user"; @@ -465,6 +466,15 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org "lng_profile_drop_area_subtitle_channel" = "to set it as a channel photo"; "lng_profile_top_bar_share_contact" = "Share"; +"lng_report_title" = "Report channel"; +"lng_report_reason_spam" = "Spam"; +"lng_report_reason_violence" = "Violence"; +"lng_report_reason_pornography" = "Pornography"; +"lng_report_reason_other" = "Other"; +"lng_report_reason_description" = "Description"; +"lng_report_button" = "Report"; +"lng_report_thanks" = "Thank you! Your report will be reviewed by our team very soon."; + "lng_channel_add_admins" = "New administrator"; "lng_channel_add_members" = "Add members"; "lng_channel_members" = "Members"; diff --git a/Telegram/SourceFiles/boxes/report_box.cpp b/Telegram/SourceFiles/boxes/report_box.cpp new file mode 100644 index 000000000..aec3dbc3f --- /dev/null +++ b/Telegram/SourceFiles/boxes/report_box.cpp @@ -0,0 +1,147 @@ +/* +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 +Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org +*/ +#include "stdafx.h" +#include "report_box.h" + +#include "lang.h" +#include "styles/style_profile.h" +#include "boxes/confirmbox.h" + +ReportBox::ReportBox(ChannelData *channel) : AbstractBox(st::boxWidth) +, _channel(channel) +, _reasonSpam(this, qsl("report_reason"), ReasonSpam, lang(lng_report_reason_spam), true) +, _reasonViolence(this, qsl("report_reason"), ReasonViolence, lang(lng_report_reason_violence)) +, _reasonPornography(this, qsl("report_reason"), ReasonPornography, lang(lng_report_reason_pornography)) +, _reasonOther(this, qsl("report_reason"), ReasonOther, lang(lng_report_reason_other)) +, _report(this, lang(lng_report_button), st::defaultBoxButton) +, _cancel(this, lang(lng_cancel), st::cancelBoxButton) { + connect(_report, SIGNAL(clicked()), this, SLOT(onReport())); + connect(_cancel, SIGNAL(clicked()), this, SLOT(onClose())); + + connect(_reasonSpam, SIGNAL(changed()), this, SLOT(onChange())); + connect(_reasonViolence, SIGNAL(changed()), this, SLOT(onChange())); + connect(_reasonPornography, SIGNAL(changed()), this, SLOT(onChange())); + connect(_reasonOther, SIGNAL(changed()), this, SLOT(onChange())); + + updateMaxHeight(); + + prepare(); +} + +void ReportBox::paintEvent(QPaintEvent *e) { + Painter p(this); + if (paint(p)) return; + + paintTitle(p, lang(lng_report_title)); +} + +void ReportBox::resizeEvent(QResizeEvent *e) { + _reasonSpam->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), st::boxTitleHeight + st::boxOptionListPadding.top()); + _reasonViolence->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), _reasonSpam->y() + _reasonSpam->height() + st::boxOptionListPadding.top()); + _reasonPornography->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), _reasonViolence->y() + _reasonViolence->height() + st::boxOptionListPadding.top()); + _reasonOther->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), _reasonPornography->y() + _reasonPornography->height() + st::boxOptionListPadding.top()); + + if (_reasonOtherText) { + _reasonOtherText->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left() - st::defaultInputField.textMargins.left(), _reasonOther->y() + _reasonOther->height() + st::newGroupDescriptionPadding.top()); + } + + _report->moveToRight(st::boxButtonPadding.right(), height() - st::boxButtonPadding.bottom() - _report->height()); + _cancel->moveToRight(st::boxButtonPadding.right() + _report->width() + st::boxButtonPadding.left(), _report->y()); +} + +void ReportBox::onChange() { + if (_reasonOther->checked()) { + if (!_reasonOtherText) { + _reasonOtherText = new InputArea(this, st::profileReportReasonOther, lang(lng_report_reason_description)); + _reasonOtherText->show(); + _reasonOtherText->setCtrlEnterSubmit(CtrlEnterSubmitBoth); + _reasonOtherText->setMaxLength(MaxPhotoCaption); + _reasonOtherText->resize(width() - (st::boxPadding.left() + st::boxOptionListPadding.left() + st::boxPadding.right()), _reasonOtherText->height()); + + updateMaxHeight(); + connect(_reasonOtherText, SIGNAL(resized()), this, SLOT(onDescriptionResized())); + connect(_reasonOtherText, SIGNAL(submitted(bool)), this, SLOT(onReport())); + connect(_reasonOtherText, SIGNAL(cancelled()), this, SLOT(onClose())); + } + } else if (_reasonOtherText) { + _reasonOtherText.destroy(); + updateMaxHeight(); + } + setInnerFocus(); +} + +void ReportBox::setInnerFocus() { + if (_reasonOtherText) { + _reasonOtherText->setFocus(); + } else { + setFocus(); + } +} + +void ReportBox::onDescriptionResized() { + updateMaxHeight(); + update(); +} + +void ReportBox::onReport() { + if (_requestId) return; + + if (_reasonOtherText && _reasonOtherText->getLastText().trimmed().isEmpty()) { + _reasonOtherText->showError(); + return; + } + + auto getReason = [this]() { + if (_reasonViolence->checked()) { + return MTP_inputReportReasonViolence(); + } else if (_reasonPornography->checked()) { + return MTP_inputReportReasonPornography(); + } else if (_reasonOtherText) { + return MTP_inputReportReasonOther(MTP_string(_reasonOtherText->getLastText())); + } else { + return MTP_inputReportReasonSpam(); + } + }; + _requestId = MTP::send(MTPaccount_ReportPeer(_channel->input, getReason()), rpcDone(&ReportBox::reportDone), rpcFail(&ReportBox::reportFail)); +} + +void ReportBox::reportDone(const MTPBool &result) { + _requestId = 0; + Ui::showLayer(new InformBox(lang(lng_report_thanks))); +} + +bool ReportBox::reportFail(const RPCError &error) { + if (MTP::isDefaultHandledError(error)) return false; + + _requestId = 0; + if (_reasonOtherText) { + _reasonOtherText->showError(); + } + return true; +} + +void ReportBox::updateMaxHeight() { + int32 h = st::boxTitleHeight + 4 * (st::boxOptionListPadding.top() + _reasonSpam->height()) + st::boxButtonPadding.top() + _report->height() + st::boxButtonPadding.bottom(); + if (_reasonOtherText) { + h += st::newGroupDescriptionPadding.top() + _reasonOtherText->height() + st::newGroupDescriptionPadding.bottom(); + } + setMaxHeight(h); +} diff --git a/Telegram/SourceFiles/boxes/report_box.h b/Telegram/SourceFiles/boxes/report_box.h new file mode 100644 index 000000000..d4d08eb16 --- /dev/null +++ b/Telegram/SourceFiles/boxes/report_box.h @@ -0,0 +1,72 @@ +/* +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 +Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org +*/ +#pragma once + +#include "abstractbox.h" + +class ReportBox : public AbstractBox, public RPCSender { + Q_OBJECT + +public: + ReportBox(ChannelData *channel); + +private slots: + void onReport(); + void onChange(); + void onDescriptionResized(); + +protected: + void paintEvent(QPaintEvent *e) override; + void resizeEvent(QResizeEvent *e) override; + + void showAll() override { + showChildren(); + } + void hideAll() override { + hideChildren(); + } + void setInnerFocus() override; + +private: + void updateMaxHeight(); + + void reportDone(const MTPBool &result); + bool reportFail(const RPCError &error); + + ChannelData *_channel; + + ChildWidget _reasonSpam; + ChildWidget _reasonViolence; + ChildWidget _reasonPornography; + ChildWidget _reasonOther; + ChildWidget _reasonOtherText = { nullptr }; + + ChildWidget _report, _cancel; + + enum Reason { + ReasonSpam, + ReasonViolence, + ReasonPornography, + ReasonOther, + }; + mtpRequestId _requestId = 0; + +}; diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index ff5f1bf4d..062af9a1d 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -29,7 +29,6 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org #include "apiwrap.h" #include "dialogswidget.h" #include "historywidget.h" -#include "profilewidget.h" #include "overviewwidget.h" #include "playerwidget.h" #include "lang.h" diff --git a/Telegram/SourceFiles/profile/profile.style b/Telegram/SourceFiles/profile/profile.style index beb9382d2..3b8b93ab1 100644 --- a/Telegram/SourceFiles/profile/profile.style +++ b/Telegram/SourceFiles/profile/profile.style @@ -162,3 +162,8 @@ profileLimitReachedLabel: flatLabel(labelDefFlat) { profileLimitReachedStyle: textStyle(defaultTextStyle) { lineHeight: 19px; } + +profileReportReasonOther: InputArea(defaultInputArea) { + textMargins: margins(1px, 6px, 1px, 4px); + heightMax: 115px; +} diff --git a/Telegram/SourceFiles/profile/profile_actions_widget.cpp b/Telegram/SourceFiles/profile/profile_actions_widget.cpp index df424a4b9..079969b48 100644 --- a/Telegram/SourceFiles/profile/profile_actions_widget.cpp +++ b/Telegram/SourceFiles/profile/profile_actions_widget.cpp @@ -24,6 +24,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org #include "styles/style_profile.h" #include "ui/buttons/left_outline_button.h" #include "boxes/confirmbox.h" +#include "boxes/report_box.h" #include "mainwidget.h" #include "observer_peer.h" #include "apiwrap.h" @@ -135,7 +136,9 @@ void ActionsWidget::refreshButtons() { addButton(lang(lng_profile_clear_history), SLOT(onClearHistory())); addButton(lang(lng_profile_clear_and_exit), SLOT(onDeleteConversation())); } else if (auto channel = peer()->asChannel()) { -// addButton(lang(lng_profile_report), SLOT(onReport())); + if (!channel->amCreator()) { + addButton(lang(lng_profile_report), SLOT(onReport())); + } refreshDeleteChannel(); refreshLeaveChannel(); } @@ -351,4 +354,10 @@ void ActionsWidget::onLeaveChannelSure() { App::api()->leaveChannel(peer()->asChannel()); } +void ActionsWidget::onReport() { + if (auto channel = peer()->asChannel()) { + Ui::showLayer(new ReportBox(channel)); + } +} + } // namespace Profile diff --git a/Telegram/SourceFiles/profile/profile_actions_widget.h b/Telegram/SourceFiles/profile/profile_actions_widget.h index 895f066b1..08474c84e 100644 --- a/Telegram/SourceFiles/profile/profile_actions_widget.h +++ b/Telegram/SourceFiles/profile/profile_actions_widget.h @@ -55,6 +55,7 @@ private slots: void onDeleteChannelSure(); void onLeaveChannel(); void onLeaveChannelSure(); + void onReport(); private: // Observed notifications. diff --git a/Telegram/SourceFiles/profilewidget.cpp b/Telegram/SourceFiles/profilewidget.cpp deleted file mode 100644 index f792c03a1..000000000 --- a/Telegram/SourceFiles/profilewidget.cpp +++ /dev/null @@ -1,2071 +0,0 @@ -/* -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 -Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org -*/ -#include "stdafx.h" - -#include "lang.h" -#include "mainwindow.h" -#include "mainwidget.h" -#include "profilewidget.h" -#include "boxes/addcontactbox.h" -#include "boxes/confirmbox.h" -#include "boxes/photocropbox.h" -#include "application.h" -#include "boxes/contactsbox.h" -#include "ui/filedialog.h" -#include "apiwrap.h" -#include "window/top_bar_widget.h" - -ProfileInner::ProfileInner(ProfileWidget *profile, PeerData *peer) : TWidget(0) -, _profile(profile) -, _peer(peer->migrateTo() ? peer->migrateTo() : peer) -, _peerUser(_peer->asUser()) -, _peerChat(_peer->asChat()) -, _peerChannel(_peer->asChannel()) -, _migrated(_peer->migrateFrom() ? App::history(_peer->migrateFrom()->id) : 0) -, _history(App::history(_peer->id)) -, _amCreator(_peerChat ? _peerChat->amCreator() : (_peerChannel ? _peerChannel->amCreator() : false)) - -, _width(0) -, _left(0) -, _addToHeight(0) - -// profile -, _nameCache(_peer->name) -, _uploadPhoto(this, lang(lng_profile_set_group_photo), st::btnShareContact) -, _addParticipant(this, lang(lng_profile_add_participant), st::btnShareContact) -, _sendMessage(this, lang(lng_profile_send_message), st::btnShareContact) -, _shareContact(this, lang(lng_profile_share_contact), st::btnShareContact) -, _inviteToGroup(this, lang(lng_profile_invite_to_group), st::btnShareContact) -, _cancelPhoto(this, lang(lng_cancel)) -, _createInvitationLink(this, lang(lng_group_invite_create)) -, _invitationLink(this, qsl("telegram.me/joinchat/")) -, _botSettings(this, lang(lng_profile_bot_settings)) -, _botHelp(this, lang(lng_profile_bot_help)) -, _pinnedMessage(this, lang(lng_pinned_message)) -, _username(this, (_peerChannel && _peerChannel->isPublic()) ? (qsl("telegram.me/") + _peerChannel->username) : lang(lng_profile_create_public_link)) -, _members(this, lng_channel_members_link(lt_count, (_peerChannel && _peerChannel->membersCount() > 0) ? _peerChannel->membersCount() : 1)) -, _admins(this, lng_channel_admins_link(lt_count, (_peerChannel ? (_peerChannel->adminsCount() > 0 ? _peerChannel->adminsCount() : 1) : ((_peerChat && _peerChat->adminsEnabled()) ? (_peerChat->admins.size() + 1) : 0)))) - -// about -, _about(st::wndMinWidth - st::profilePadding.left() - st::profilePadding.right()) -, _aboutTop(0) -, _aboutHeight(0) - -, a_photoOver(0) -, _a_photo(animation(this, &ProfileInner::step_photo)) -, _photoOver(false) - -// migrate to megagroup -, _showMigrate(_peerChat && _amCreator && !_peerChat->isMigrated() && _peerChat->count >= Global::ChatSizeMax()) -, _forceShowMigrate(false) -, _aboutMigrate(st::normalFont, lang(lng_profile_migrate_about), _defaultOptions, st::wndMinWidth - st::profilePadding.left() - st::profilePadding.right()) -, _migrate(this, lang(lng_profile_migrate_button), st::btnMigrateToMega) - -// settings -, _enableNotifications(this, lang(lng_profile_enable_notifications)) - -// shared media -, _notAllMediaLoaded(false) - -// actions -, _searchInPeer(this, lang(lng_profile_search_messages)) -, _convertToSupergroup(this, lang(lng_profile_convert_button)) -, _clearHistory(this, lang(lng_profile_clear_history)) -, _deleteConversation(this, lang(_peer->isUser() ? lng_profile_delete_conversation : (_peer->isChat() ? lng_profile_clear_and_exit : (_peer->isMegagroup() ? lng_profile_leave_group : lng_profile_leave_channel)))) -//, _wasBlocked(_peerUser ? _peerUser->blocked : UserBlockUnknown) -, _blockRequest(0) -, _blockUser(this, lang((_peerUser && _peerUser->botInfo) ? lng_profile_block_bot : lng_profile_block_user), st::btnRedLink) -, _deleteChannel(this, lang(_peer->isMegagroup() ? lng_profile_delete_group : lng_profile_delete_channel), st::btnRedLink) - -// participants -, _pHeight(st::profileListPhotoSize + st::profileListPadding.height() * 2) -, _kickWidth(st::linkFont->width(lang(lng_profile_kick))) -, _selectedRow(-1) -, _lastPreload(0) -, _contactId(0) -, _kickOver(0) -, _kickDown(0) -, _kickConfirm(0) - -, _menu(0) -, _updateDelayed(false) { - connect(App::wnd(), SIGNAL(imageLoaded()), this, SLOT(update())); - - connect(App::api(), SIGNAL(fullPeerUpdated(PeerData*)), this, SLOT(onFullPeerUpdated(PeerData*))); - - if (_peerUser) { - //if (_peerUser->blocked == UserIsBlocked) { - // _blockUser.setText(lang(_peerUser->botInfo ? lng_profile_unblock_bot : lng_profile_unblock_user)); - //} - _phoneText = App::formatPhone(_peerUser->phone().isEmpty() ? App::phoneFromSharedContact(peerToUser(_peerUser->id)) : _peerUser->phone()); - PhotoData *userPhoto = (_peerUser->photoId && _peerUser->photoId != UnknownPeerPhotoId) ? App::photo(_peerUser->photoId) : 0; - if (userPhoto && userPhoto->date) { - _photoLink.reset(new PhotoOpenClickHandler(userPhoto, _peer)); - } - //if ((_peerUser->botInfo && !_peerUser->botInfo->inited) || (_peerUser->photoId == UnknownPeerPhotoId) || (_peerUser->photoId && !userPhoto->date) || (_peerUser->blocked == UserBlockUnknown)) { - // if (App::api()) App::api()->requestFullPeer(_peer); - //} - } else if (_peerChat) { - PhotoData *chatPhoto = (_peerChat->photoId && _peerChat->photoId != UnknownPeerPhotoId) ? App::photo(_peerChat->photoId) : 0; - if (chatPhoto && chatPhoto->date) { - _photoLink.reset(new PhotoOpenClickHandler(chatPhoto, _peer)); - } - if (_peerChat->photoId == UnknownPeerPhotoId) { - if (App::api()) App::api()->requestFullPeer(_peer); - } - } else if (_peerChannel) { - PhotoData *chatPhoto = (_peerChannel->photoId && _peerChannel->photoId != UnknownPeerPhotoId) ? App::photo(_peerChannel->photoId) : 0; - if (chatPhoto && chatPhoto->date) { - _photoLink.reset(new PhotoOpenClickHandler(chatPhoto, _peer)); - } - bool needAdmins = (_peerChannel->isMegagroup() && _peerChannel->amEditor()), adminsOutdated = (_peerChannel->isMegagroup() && (_peerChannel->mgInfo->lastParticipantsStatus & MegagroupInfo::LastParticipantsAdminsOutdated)); - if (_peerChannel->isMegagroup() && (_peerChannel->mgInfo->lastParticipants.isEmpty() || (needAdmins && adminsOutdated) || _peerChannel->lastParticipantsCountOutdated())) { - if (App::api()) App::api()->requestLastParticipants(_peerChannel); - } - _peerChannel->updateFull(); - } - - // profile -// _nameText.setText(st::profileNameFont, _nameCache, _textNameOptions); - connect(&_uploadPhoto, SIGNAL(clicked()), this, SLOT(onUpdatePhoto())); - connect(&_addParticipant, SIGNAL(clicked()), this, SLOT(onAddParticipant())); - connect(&_sendMessage, SIGNAL(clicked()), this, SLOT(onSendMessage())); - connect(&_shareContact, SIGNAL(clicked()), this, SLOT(onShareContact())); - connect(&_inviteToGroup, SIGNAL(clicked()), this, SLOT(onInviteToGroup())); - connect(&_cancelPhoto, SIGNAL(clicked()), this, SLOT(onUpdatePhotoCancel())); - connect(&_createInvitationLink, SIGNAL(clicked()), this, SLOT(onCreateInvitationLink())); - connect(&_invitationLink, SIGNAL(clicked()), this, SLOT(onInvitationLink())); - connect(&_username, SIGNAL(clicked()), this, SLOT(onPublicLink())); - connect(&_members, SIGNAL(clicked()), this, SLOT(onMembers())); - connect(&_admins, SIGNAL(clicked()), this, SLOT(onAdmins())); - _invitationLink.setAcceptBoth(true); - _username.setAcceptBoth(true); - updateInvitationLink(); - - if (_peerChat) { - QString maxStr = lang(_uploadPhoto.textWidth() > _addParticipant.textWidth() ? lng_profile_set_group_photo : lng_profile_add_participant); - _uploadPhoto.setAutoFontSize(st::profileMinBtnPadding, maxStr); - _addParticipant.setAutoFontSize(st::profileMinBtnPadding, maxStr); - } else if (_peerUser) { - QString maxStr; - if (_peerUser->botInfo && !_peerUser->botInfo->cantJoinGroups) { - maxStr = lang(_sendMessage.textWidth() > _inviteToGroup.textWidth() ? lng_profile_send_message : lng_profile_invite_to_group); - } else if (!_peerUser->phone().isEmpty()) { - maxStr = lang(_sendMessage.textWidth() > _shareContact.textWidth() ? lng_profile_send_message : lng_profile_share_contact); - } else { - maxStr = lang(lng_profile_send_message); - } - _sendMessage.setAutoFontSize(st::profileMinBtnPadding, maxStr); - _shareContact.setAutoFontSize(st::profileMinBtnPadding, maxStr); - _inviteToGroup.setAutoFontSize(st::profileMinBtnPadding, maxStr); - } else if (_peerChannel && _amCreator) { - _uploadPhoto.setAutoFontSize(st::profileMinBtnPadding, lang(lng_profile_set_group_photo)); - } - - connect(&_botSettings, SIGNAL(clicked()), this, SLOT(onBotSettings())); - connect(&_botHelp, SIGNAL(clicked()), this, SLOT(onBotHelp())); - connect(&_pinnedMessage, SIGNAL(clicked()), this, SLOT(onPinnedMessage())); - - connect(App::app(), SIGNAL(peerPhotoDone(PeerId)), this, SLOT(onPhotoUpdateDone(PeerId))); - connect(App::app(), SIGNAL(peerPhotoFail(PeerId)), this, SLOT(onPhotoUpdateFail(PeerId))); - - connect(App::main(), SIGNAL(peerPhotoChanged(PeerData *)), this, SLOT(peerUpdated(PeerData *))); - connect(App::main(), SIGNAL(peerUpdated(PeerData *)), this, SLOT(peerUpdated(PeerData *))); - connect(App::main(), SIGNAL(peerNameChanged(PeerData *, const PeerData::Names &, const PeerData::NameFirstChars &)), this, SLOT(peerUpdated(PeerData *))); - - // about - if (_peerUser) { - if (!_peerUser->about().isEmpty()) { - _about.setText(st::linkFont, _peerUser->about(), _peerUser->botInfo ? _historyBotNoMonoOptions : _historyTextNoMonoOptions); - } - updateBotLinksVisibility(); - } else { - if (_peerChannel && !_peerChannel->about().isEmpty()) { - _about.setText(st::linkFont, _peerChannel->about(), _historyTextNoMonoOptions); - } - _botSettings.hide(); - _botHelp.hide(); - } - updatePinnedMessageVisibility(); - - // migrate to megagroup - connect(&_migrate, SIGNAL(clicked()), this, SLOT(onMigrate())); - - // settings - connect(&_enableNotifications, SIGNAL(clicked()), this, SLOT(onEnableNotifications())); - - // shared media - connect((_mediaButtons[OverviewPhotos] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaPhotos())); - connect((_mediaButtons[OverviewVideos] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaVideos())); - connect((_mediaButtons[OverviewMusicFiles] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaSongs())); - connect((_mediaButtons[OverviewFiles] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaDocuments())); - connect((_mediaButtons[OverviewVoiceFiles] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaAudios())); - connect((_mediaButtons[OverviewLinks] = new LinkButton(this, QString())), SIGNAL(clicked()), this, SLOT(onMediaLinks())); - updateMediaLinks(); - - // actions - connect(&_searchInPeer, SIGNAL(clicked()), this, SLOT(onSearchInPeer())); - connect(&_convertToSupergroup, SIGNAL(clicked()), this, SLOT(onConvertToSupergroup())); - connect(&_clearHistory, SIGNAL(clicked()), this, SLOT(onClearHistory())); - connect(&_deleteConversation, SIGNAL(clicked()), this, SLOT(onDeleteConversation())); - connect(&_blockUser, SIGNAL(clicked()), this, SLOT(onBlockUser())); - connect(&_deleteChannel, SIGNAL(clicked()), this, SLOT(onDeleteChannel())); - - App::contextItem(0); - - resizeEvent(0); - showAll(); -} - -void ProfileInner::onShareContact() { - App::main()->shareContactLayer(_peerUser); -} - -void ProfileInner::onInviteToGroup() { - Ui::showLayer(new ContactsBox(_peerUser)); -} - -void ProfileInner::onSendMessage() { - Ui::showPeerHistory(_peer, ShowAtUnreadMsgId); -} - -void ProfileInner::onSearchInPeer() { - App::main()->searchInPeer(_peer); -} - -void ProfileInner::onConvertToSupergroup() { - Ui::showLayer(new ConvertToSupergroupBox(_peerChat)); -} - -void ProfileInner::onEnableNotifications() { - App::main()->updateNotifySetting(_peer, _enableNotifications.checked() ? NotifySettingSetNotify : NotifySettingSetMuted); -} - -void ProfileInner::saveError(const QString &str) { - _errorText = str; - resizeEvent(0); - showAll(); - update(); -} - -void ProfileInner::loadProfilePhotos(int32 yFrom) { - _lastPreload = yFrom; - - int32 yTo = yFrom + (parentWidget() ? parentWidget()->height() : App::wnd()->height()) * 5; - MTP::clearLoaderPriorities(); - - int32 partfrom = _mediaButtons[OverviewVoiceFiles]->y() + _mediaButtons[OverviewVoiceFiles]->height() + st::profileHeaderSkip; - yFrom -= partfrom; - yTo -= partfrom; - - if (yTo < 0) return; - if (yFrom < 0) yFrom = 0; - yFrom /= _pHeight; - yTo = yTo / _pHeight + 1; - if (yFrom >= _participants.size()) return; - if (yTo > _participants.size()) yTo = _participants.size(); - for (int32 i = yFrom; i < yTo; ++i) { - _participants[i]->loadUserpic(); - } -} - -void ProfileInner::onUpdatePhoto() { - saveError(); - - QStringList imgExtensions(cImgExtensions()); - QString filter(qsl("Image files (*") + imgExtensions.join(qsl(" *")) + qsl(");;All files (*.*)")); - - QImage img; - QString file; - QByteArray remoteContent; - if (filedialogGetOpenFile(file, remoteContent, lang(lng_choose_images), filter)) { - if (!remoteContent.isEmpty()) { - img = App::readImage(remoteContent); - } else { - if (!file.isEmpty()) { - img = App::readImage(file); - } - } - } else { - return; - } - - if (img.isNull() || img.width() > 10 * img.height() || img.height() > 10 * img.width()) { - saveError(lang(lng_bad_photo)); - return; - } - PhotoCropBox *box = new PhotoCropBox(img, _peer); - connect(box, SIGNAL(closed()), this, SLOT(onPhotoUpdateStart())); - Ui::showLayer(box); -} - -void ProfileInner::onClearHistory() { - if (_peerChannel) return; - ConfirmBox *box = new ConfirmBox(_peer->isUser() ? lng_sure_delete_history(lt_contact, _peer->name) : lng_sure_delete_group_history(lt_group, _peer->name), lang(lng_box_delete), st::attentionBoxButton); - connect(box, SIGNAL(confirmed()), this, SLOT(onClearHistorySure())); - Ui::showLayer(box); -} - -void ProfileInner::onClearHistorySure() { - Ui::hideLayer(); - App::main()->clearHistory(_peer); -} - -void ProfileInner::onDeleteConversation() { - ConfirmBox *box = new ConfirmBox(_peer->isUser() ? lng_sure_delete_history(lt_contact, _peer->name) : (_peer->isChat() ? lng_sure_delete_and_exit(lt_group, _peer->name) : lang(_peer->isMegagroup() ? lng_sure_leave_group : lng_sure_leave_channel)), lang(_peer->isUser() ? lng_box_delete : lng_box_leave), _peer->isChannel() ? st::defaultBoxButton : st::attentionBoxButton); - connect(box, SIGNAL(confirmed()), this, SLOT(onDeleteConversationSure())); - Ui::showLayer(box); -} - -void ProfileInner::onDeleteConversationSure() { - Ui::hideLayer(); - if (_peerUser) { - App::main()->deleteConversation(_peer); - } else if (_peerChat) { - Ui::showChatsList(); - MTP::send(MTPmessages_DeleteChatUser(_peerChat->inputChat, App::self()->inputUser), App::main()->rpcDone(&MainWidget::deleteHistoryAfterLeave, _peer), App::main()->rpcFail(&MainWidget::leaveChatFailed, _peer)); - } else if (_peerChannel) { - Ui::showChatsList(); - if (_peerChannel->migrateFrom()) { - App::main()->deleteConversation(_peerChannel->migrateFrom()); - } - MTP::send(MTPchannels_LeaveChannel(_peerChannel->inputChannel), App::main()->rpcDone(&MainWidget::sentUpdatesReceived)); - } -} - -void ProfileInner::onDeleteChannel() { - if (!_peerChannel) return; - ConfirmBox *box = new ConfirmBox(lang(_peer->isMegagroup() ? lng_sure_delete_group : lng_sure_delete_channel), lang(lng_box_delete), st::attentionBoxButton); - connect(box, SIGNAL(confirmed()), this, SLOT(onDeleteChannelSure())); - Ui::showLayer(box); -} - -void ProfileInner::onDeleteChannelSure() { - if (_peerChannel) { - Ui::hideLayer(); - Ui::showChatsList(); - if (_peerChannel->migrateFrom()) { - App::main()->deleteConversation(_peerChannel->migrateFrom()); - } - MTP::send(MTPchannels_DeleteChannel(_peerChannel->inputChannel), App::main()->rpcDone(&MainWidget::sentUpdatesReceived), App::main()->rpcFail(&MainWidget::deleteChannelFailed)); - } -} -void ProfileInner::onBlockUser() { - if (!_peerUser || _blockRequest) return; -// if (_peerUser->blocked == UserIsBlocked) { -// _blockRequest = MTP::send(MTPcontacts_Unblock(_peerUser->inputUser), rpcDone(&ProfileInner::blockDone, false), rpcFail(&ProfileInner::blockFail)); -// } else { -// _blockRequest = MTP::send(MTPcontacts_Block(_peerUser->inputUser), rpcDone(&ProfileInner::blockDone, true), rpcFail(&ProfileInner::blockFail)); -// } -} -// -//void ProfileInner::blockDone(bool blocked, const MTPBool &result) { -// _blockRequest = 0; -// if (!_peerUser) return; -// _peerUser->blocked = blocked ? UserIsBlocked : UserIsNotBlocked; -// emit App::main()->peerUpdated(_peerUser); -//} -// -//bool ProfileInner::blockFail(const RPCError &error) { -// if (MTP::isDefaultHandledError(error)) return false; -// -// _blockRequest = 0; -// return false; -//} - -void ProfileInner::onAddParticipant() { - if (_peerChat) { - Ui::showLayer(new ContactsBox(_peerChat, MembersFilterRecent)); - } else if (_peerChannel && _peerChannel->mgInfo) { - MembersAlreadyIn already; - for_const (auto user, _peerChannel->mgInfo->lastParticipants) { - already.insert(user); - } - Ui::showLayer(new ContactsBox(_peerChannel, MembersFilterRecent, already)); - } -} - -void ProfileInner::onMigrate() { - if (!_peerChat) return; - - ConfirmBox *box = new ConfirmBox(lang(lng_profile_migrate_sure)); - connect(box, SIGNAL(confirmed()), this, SLOT(onMigrateSure())); - Ui::showLayer(box); -} - -void ProfileInner::onMigrateSure() { - if (!_peerChat) return; - - MTP::send(MTPmessages_MigrateChat(_peerChat->inputChat), rpcDone(&ProfileInner::migrateDone), rpcFail(&ProfileInner::migrateFail)); -} - -void ProfileInner::onUpdatePhotoCancel() { - App::app()->cancelPhotoUpdate(_peer->id); - showAll(); - update(); -} - -void ProfileInner::onPhotoUpdateStart() { - showAll(); - update(); -} - -void ProfileInner::onPhotoUpdateFail(PeerId peer) { - if (_peer->id != peer) return; - saveError(lang(lng_bad_photo)); - showAll(); - update(); -} - -void ProfileInner::onPhotoUpdateDone(PeerId peer) { - if (_peer->id != peer) return; - saveError(); - showAll(); - update(); -} - -void ProfileInner::onMediaPhotos() { - App::main()->showMediaOverview(_peer, OverviewPhotos); -} - -void ProfileInner::onMediaVideos() { - App::main()->showMediaOverview(_peer, OverviewVideos); -} - -void ProfileInner::onMediaSongs() { - App::main()->showMediaOverview(_peer, OverviewMusicFiles); -} - -void ProfileInner::onMediaDocuments() { - App::main()->showMediaOverview(_peer, OverviewFiles); -} - -void ProfileInner::onMediaAudios() { - App::main()->showMediaOverview(_peer, OverviewVoiceFiles); -} - -void ProfileInner::onMediaLinks() { - App::main()->showMediaOverview(_peer, OverviewLinks); -} - -void ProfileInner::onInvitationLink() { - if (!_peerChat && !_peerChannel) return; - -// QApplication::clipboard()->setText(_peerChat ? _peerChat->invitationUrl : (_peerChannel ? _peerChannel->invitationUrl : QString())); - Ui::showLayer(new InformBox(lang(lng_group_invite_copied))); -} - -void ProfileInner::onPublicLink() { - if (!_peerChannel) return; - - if (_peerChannel->isPublic()) { - QApplication::clipboard()->setText(qsl("https://telegram.me/") + _peerChannel->username); - Ui::showLayer(new InformBox(lang(lng_channel_public_link_copied))); - } else { - Ui::showLayer(new SetupChannelBox(_peerChannel, true)); - } -} - -void ProfileInner::onMembers() { - if (!_peerChannel) return; - Ui::showLayer(new MembersBox(_peerChannel, MembersFilterRecent)); -} - -void ProfileInner::onAdmins() { - if (_peerChannel) { - Ui::showLayer(new MembersBox(_peerChannel, MembersFilterAdmins)); - } else if (_peerChat) { - Ui::showLayer(new ContactsBox(_peerChat, MembersFilterAdmins)); - } -} - -void ProfileInner::onCreateInvitationLink() { - if (!_peerChat && !_peerChannel) return; - -// ConfirmBox *box = new ConfirmBox(lang(((_peerChat && _peerChat->invitationUrl.isEmpty()) || (_peerChannel && _peerChannel->invitationUrl.isEmpty())) ? lng_group_invite_about : lng_group_invite_about_new)); -// connect(box, SIGNAL(confirmed()), this, SLOT(onCreateInvitationLinkSure())); -// Ui::showLayer(box); -} - -void ProfileInner::onCreateInvitationLinkSure() { - if (!_peerChat && !_peerChannel) return; - if (_peerChat) { - MTP::send(MTPmessages_ExportChatInvite(_peerChat->inputChat), rpcDone(&ProfileInner::chatInviteDone)); - } else if (_peerChannel) { - MTP::send(MTPchannels_ExportInvite(_peerChannel->inputChannel), rpcDone(&ProfileInner::chatInviteDone)); - } -} - -void ProfileInner::chatInviteDone(const MTPExportedChatInvite &result) { - if (!_peerChat && !_peerChannel) return; - - if (_peerChat) { -// _peerChat->invitationUrl = (result.type() == mtpc_chatInviteExported) ? qs(result.c_chatInviteExported().vlink) : QString(); - } else { -// _peerChannel->invitationUrl = (result.type() == mtpc_chatInviteExported) ? qs(result.c_chatInviteExported().vlink) : QString(); - } - updateInvitationLink(); - showAll(); - resizeEvent(0); - Ui::hideLayer(); -} - -void ProfileInner::onFullPeerUpdated(PeerData *peer) { - if (peer != _peer) return; - if (_peerUser) { - PhotoData *userPhoto = (_peerUser->photoId && _peerUser->photoId != UnknownPeerPhotoId) ? App::photo(_peerUser->photoId) : 0; - if (userPhoto && userPhoto->date) { - _photoLink.reset(new PhotoOpenClickHandler(userPhoto, _peer)); - } else { - _photoLink.clear(); - } - if (_peerUser) { - if (_peerUser->about().isEmpty()) { - _about = Text(st::wndMinWidth - st::profilePadding.left() - st::profilePadding.right()); - } else { - _about.setText(st::linkFont, _peerUser->about(), _peerUser->botInfo ? _historyBotNoMonoOptions : _historyTextNoMonoOptions); - } - updateBotLinksVisibility(); - resizeEvent(0); - } - } else if (_peerChat) { - updateInvitationLink(); - _showMigrate = (_peerChat && _amCreator && !_peerChat->isMigrated() && (_forceShowMigrate || _peerChat->count >= Global::ChatSizeMax())); - showAll(); - resizeEvent(0); - _admins.setText(lng_channel_admins_link(lt_count, _peerChat->adminsEnabled() ? (_peerChat->admins.size() + 1) : 0)); - } else if (_peerChannel) { - updateInvitationLink(); - _members.setText(lng_channel_members_link(lt_count, (_peerChannel->membersCount() > 0) ? _peerChannel->membersCount() : 1)); - _admins.setText(lng_channel_admins_link(lt_count, (_peerChannel->adminsCount() > 0) ? _peerChannel->adminsCount() : 1)); - _onlineText = (_peerChannel->membersCount() > 0) ? lng_chat_status_members(lt_count, _peerChannel->membersCount()) : lang(_peerChannel->isMegagroup() ? lng_group_status : lng_channel_status); - if (_peerChannel->about().isEmpty()) { - _about = Text(st::wndMinWidth - st::profilePadding.left() - st::profilePadding.right()); - } else { - _about.setText(st::linkFont, _peerChannel->about(), _historyTextNoMonoOptions); - } - showAll(); - resizeEvent(0); - } -} - -void ProfileInner::onBotSettings() { - if (!_peerUser || !_peerUser->botInfo) return; - - for (int32 i = 0, l = _peerUser->botInfo->commands.size(); i != l; ++i) { - QString cmd = _peerUser->botInfo->commands.at(i).command; - if (!cmd.compare(qsl("settings"), Qt::CaseInsensitive)) { - Ui::showPeerHistory(_peer, ShowAtTheEndMsgId); - App::sendBotCommand(_peerUser, _peerUser, '/' + cmd); - return; - } - } - updateBotLinksVisibility(); -} - -void ProfileInner::onBotHelp() { - if (!_peerUser || !_peerUser->botInfo) return; - - for (int32 i = 0, l = _peerUser->botInfo->commands.size(); i != l; ++i) { - QString cmd = _peerUser->botInfo->commands.at(i).command; - if (!cmd.compare(qsl("help"), Qt::CaseInsensitive)) { - Ui::showPeerHistory(_peer, ShowAtTheEndMsgId); - App::sendBotCommand(_peerUser, _peerUser, '/' + cmd); - return; - } - } - updateBotLinksVisibility(); -} - -void ProfileInner::onPinnedMessage() { - if (!_peerChannel || !_peerChannel->isMegagroup() || !_peerChannel->mgInfo->pinnedMsgId) { - updatePinnedMessageVisibility(); - return; - } - Ui::showPeerHistory(_peer, _peerChannel->mgInfo->pinnedMsgId); -} - -void ProfileInner::peerUpdated(PeerData *data) { - if (data == _peer) { - PhotoData *photo = 0; - if (_peerUser) { - _phoneText = App::formatPhone(_peerUser->phone().isEmpty() ? App::phoneFromSharedContact(peerToUser(_peerUser->id)) : _peerUser->phone()); - if (_peerUser->photoId && _peerUser->photoId != UnknownPeerPhotoId) photo = App::photo(_peerUser->photoId); - //if (_wasBlocked != _peerUser->blocked) { - // _wasBlocked = _peerUser->blocked; - // _blockUser.setText(lang((_peerUser->blocked == UserIsBlocked) ? (_peerUser->botInfo ? lng_profile_unblock_bot : lng_profile_unblock_user) : (_peerUser->botInfo ? lng_profile_block_bot : lng_profile_block_user))); - //} - } else if (_peerChat) { - if (_peerChat->photoId && _peerChat->photoId != UnknownPeerPhotoId) photo = App::photo(_peerChat->photoId); - _admins.setText(lng_channel_admins_link(lt_count, _peerChat->adminsEnabled() ? (_peerChat->admins.size() + 1) : 0)); - _showMigrate = (_peerChat && _amCreator && !_peerChat->isMigrated() && (_forceShowMigrate || _peerChat->count >= Global::ChatSizeMax())); - if (App::main()) App::main()->topBar()->showAll(); - } else if (_peerChannel) { - if (_peerChannel->photoId && _peerChannel->photoId != UnknownPeerPhotoId) photo = App::photo(_peerChannel->photoId); - if (_peerChannel->isPublic() != _invitationLink.isHidden()) { - peerUsernameChanged(); - } - _members.setText(lng_channel_members_link(lt_count, (_peerChannel->membersCount() > 0) ? _peerChannel->membersCount() : 1)); - _admins.setText(lng_channel_admins_link(lt_count, (_peerChannel->adminsCount() > 0) ? _peerChannel->adminsCount() : 1)); - _onlineText = (_peerChannel->membersCount() > 0) ? lng_chat_status_members(lt_count, _peerChannel->membersCount()) : lang(_peerChannel->isMegagroup() ? lng_group_status : lng_channel_status); - updatePinnedMessageVisibility(); - } - if (photo && photo->date) { - _photoLink.reset(new PhotoOpenClickHandler(photo, _peer)); - } else { - _photoLink.clear(); - } - if (_peer->name != _nameCache) { - _nameCache = _peer->name; -// _nameText.setText(st::profileNameFont, _nameCache, _textNameOptions); - } - } - if (!_updateDelayed) { - _updateDelayed = true; - QMetaObject::invokeMethod(this, "onUpdateDelayed", Qt::QueuedConnection); - } -} - -void ProfileInner::onUpdateDelayed() { - _updateDelayed = false; - showAll(); - resizeEvent(0); - update(); -} - -void ProfileInner::updateOnlineDisplay() { - reorderParticipants(); - update(); -} - -void ProfileInner::updateOnlineDisplayTimer() { - int32 t = unixtime(), minIn = 86400; - if (_peerUser) { - minIn = App::onlineWillChangeIn(_peerUser, t); - } else if (_peerChat) { - if (_peerChat->participants.isEmpty()) return; - - for (ChatData::Participants::const_iterator i = _peerChat->participants.cbegin(), e = _peerChat->participants.cend(); i != e; ++i) { - int32 onlineWillChangeIn = App::onlineWillChangeIn(i.key(), t); - if (onlineWillChangeIn < minIn) { - minIn = onlineWillChangeIn; - } - } - } else if (_peerChannel) { - } - App::main()->updateOnlineDisplayIn(minIn * 1000); -} - -void ProfileInner::reorderParticipants() { - int32 was = _participants.size(), t = unixtime(), onlineCount = 0; - if (_peerChat && _peerChat->amIn()) { - if (!_peerChat->participants.isEmpty()) { - _participants.clear(); - for (ParticipantsData::iterator i = _participantsData.begin(), e = _participantsData.end(); i != e; ++i) { - if (*i) { - delete *i; - *i = 0; - } - } - _participants.reserve(_peerChat->participants.size()); - _participantsData.resize(_peerChat->participants.size()); - } - UserData *self = App::self(); - bool onlyMe = true; - for (ChatData::Participants::const_iterator i = _peerChat->participants.cbegin(), e = _peerChat->participants.cend(); i != e; ++i) { - UserData *user = i.key(); - int32 until = App::onlineForSort(user, t); - Participants::iterator before = _participants.begin(); - if (user != self) { - if (before != _participants.end() && (*before) == self) { - ++before; - } - while (before != _participants.end() && App::onlineForSort(*before, t) >= until) { - ++before; - } - if (until > t && onlyMe) onlyMe = false; - } - _participants.insert(before, user); - if (until > t) { - ++onlineCount; - } - } - if (_peerChat->noParticipantInfo()) { - if (App::api()) App::api()->requestFullPeer(_peer); - if (_onlineText.isEmpty()) _onlineText = lng_chat_status_members(lt_count, _peerChat->count); - } else if (onlineCount && !onlyMe) { - _onlineText = lng_chat_status_members_online(lt_count, _participants.size(), lt_count_online, onlineCount); - } else { - _onlineText = lng_chat_status_members(lt_count, _participants.size()); - } - loadProfilePhotos(_lastPreload); - } else if (_peerChannel && _peerChannel->isMegagroup() && _peerChannel->amIn() && !_peerChannel->mgInfo->lastParticipants.isEmpty()) { - bool needAdmins = true, adminsOutdated = (_peerChannel->mgInfo->lastParticipantsStatus & MegagroupInfo::LastParticipantsAdminsOutdated); - bool orderByOnline = (_peerChannel->membersCount() > 0) && (_peerChannel->membersCount() <= Global::ChatSizeMax()); - - _onlineText.clear(); - if (_peerChannel->mgInfo->lastParticipants.isEmpty() || (needAdmins && adminsOutdated) || _peerChannel->lastParticipantsCountOutdated()) { - if (App::api()) App::api()->requestLastParticipants(_peerChannel); - } else if (!_peerChannel->mgInfo->lastParticipants.isEmpty()) { - const MegagroupInfo::LastParticipants &list(_peerChannel->mgInfo->lastParticipants); - int32 s = list.size(); - if (orderByOnline) { - _participants.clear(); - for (ParticipantsData::iterator i = _participantsData.begin(), e = _participantsData.end(); i != e; ++i) { - if (*i) { - delete *i; - *i = 0; - } - } - _participants.reserve(s); - - UserData *self = App::self(); - bool onlyMe = true; - for (int32 i = 0; i < s; ++i) { - UserData *user = list.at(i); - int32 until = App::onlineForSort(user, t); - Participants::iterator before = _participants.begin(); - if (user != self) { - if (before != _participants.end() && (*before) == self) { - ++before; - } - while (before != _participants.end() && App::onlineForSort(*before, t) >= until) { - ++before; - } - if (until > t && onlyMe) onlyMe = false; - } - _participants.insert(before, user); - if (until > t) { - ++onlineCount; - } - } - if (onlineCount && !onlyMe) { - _onlineText = lng_chat_status_members_online(lt_count, _peerChannel->membersCount(), lt_count_online, onlineCount); - } else { - _onlineText = lng_chat_status_members(lt_count, _peerChannel->membersCount()); - } - } else { - for (int32 i = 0, l = _participants.size(); i < l; ++i) { - if (i >= s || _participants.at(i) != list.at(i)) { - if (_participantsData.at(i)) { - delete _participantsData.at(i); - _participantsData[i] = 0; - } - if (i < s) { - _participants[i] = list.at(i); - } - } - } - if (_participants.size() > s) { - _participants.resize(s); - } else { - _participants.reserve(s); - for (int32 i = _participants.size(); i < s; ++i) { - _participants.push_back(list.at(i)); - } - } - } - _participantsData.resize(s); - } - if (_onlineText.isEmpty()) { - _onlineText = (_peerChannel->membersCount() > 0) ? lng_chat_status_members(lt_count, _peerChannel->membersCount()) : lang(_peerChannel->isMegagroup() ? lng_group_status : lng_channel_status); - } - loadProfilePhotos(_lastPreload); - } else { - _participants.clear(); - if (_peerUser) { - _onlineText = App::onlineText(_peerUser, t, true); - } else if (_peerChannel) { - _onlineText = (_peerChannel->membersCount() > 0) ? lng_chat_status_members(lt_count, _peerChannel->membersCount()) : lang(_peerChannel->isMegagroup() ? lng_group_status : lng_channel_status); - } else { - _onlineText = lang(lng_chat_status_unaccessible); - } - } - if (was != _participants.size()) { - resizeEvent(0); - } -} - -void ProfileInner::start() { -} - -void ProfileInner::peerUsernameChanged() { - if (_peerChannel) { - _username.setText(_peerChannel->isPublic() ? (qsl("telegram.me/") + _peerChannel->username) : lang(lng_profile_create_public_link)); - resizeEvent(0); - showAll(); - } - update(); -} - -bool ProfileInner::event(QEvent *e) { - if (e->type() == QEvent::MouseMove) { - _lastPos = static_cast(e)->globalPos(); - updateSelected(); - } - return QWidget::event(e); -} - -void ProfileInner::paintEvent(QPaintEvent *e) { - if (App::wnd() && App::wnd()->contentOverlapped(this, e)) return; - - Painter p(this); - - QRect r(e->rect()); - p.setClipRect(r); - - int32 top = 0, l_time = unixtime(); - - // profile - top += st::profilePadding.top(); - if (_photoLink || _peerUser || (_peerChat && !_peerChat->canEdit()) || (_peerChannel && !_amCreator)) { -// _peer->paintUserpic(p, st::profilePhotoSize, _left, top); - } else { - if (a_photoOver.current() < 1) { - p.drawSprite(QPoint(_left, top), st::setPhotoImg); - } - if (a_photoOver.current() > 0) { - p.setOpacity(a_photoOver.current()); - p.drawSprite(QPoint(_left, top), st::setOverPhotoImg); - p.setOpacity(1); - } - } - -// int32 namew = _width - st::profilePhotoSize - st::profileNameLeft; - p.setPen(st::black->p); - if (_peer->isVerified()) { - //namew -= st::verifiedCheckProfile.pxWidth() + st::verifiedCheckProfilePos.x(); - //int32 cx = _left + st::profilePhotoSize + st::profileNameLeft + qMin(_nameText.maxWidth(), namew); - //p.drawSprite(QPoint(cx, top + st::profileNameTop) + st::verifiedCheckProfilePos, st::verifiedCheckProfile); - } -// _nameText.drawElided(p, _left + st::profilePhotoSize + st::profileNameLeft, top + st::profileNameTop, namew); - - //p.setFont(st::profileStatusFont->f); - int32 addbyname = 0; - if (_peerUser && !_peerUser->username.isEmpty()) { - //addbyname = st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent); - //p.setPen(st::black->p); - //p.drawText(_left + st::profilePhotoSize + st::profileStatusLeft, top + st::profileStatusTop + st::linkFont->ascent, '@' + _peerUser->username); - } else if (_peerChannel && (_peerChannel->isPublic() || _peerChannel->canEditUsername())) { -// addbyname = st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent); - } - if (!_peerChannel || !_peerChannel->canViewMembers() || _peerChannel->isMegagroup()) { - //p.setPen((_peerUser && App::onlineColorUse(_peerUser, l_time) ? st::profileOnlineColor : st::profileOfflineColor)->p); - //p.drawText(_left + st::profilePhotoSize + st::profileStatusLeft, top + addbyname + st::profileStatusTop + st::linkFont->ascent, _onlineText); - } - if (!_cancelPhoto.isHidden()) { - //p.setPen(st::profileOfflineColor->p); - //p.drawText(_left + st::profilePhotoSize + st::profilePhoneLeft, _cancelPhoto.y() + st::linkFont->ascent, lang(lng_settings_uploading_photo)); - } - - if (!_errorText.isEmpty()) { - p.setFont(st::setErrFont->f); - p.setPen(st::setErrColor->p); -// p.drawText(_left + st::profilePhotoSize + st::profilePhoneLeft, _cancelPhoto.y() + st::profilePhoneFont->ascent, _errorText); - } - if (!_phoneText.isEmpty()) { - p.setPen(st::black->p); - p.setFont(st::linkFont->f); -// p.drawText(_left + st::profilePhotoSize + st::profilePhoneLeft, top + addbyname + st::profilePhoneTop + st::profilePhoneFont->ascent, _phoneText); - } -// top += st::profilePhotoSize; -// top += st::profileButtonTop; - - if ((!_peerChat || _peerChat->canEdit()) && (!_peerChannel || _amCreator || (_peerChannel->canAddMembers() && _peerChannel->isMegagroup()))) { - top += _shareContact.height(); - } else { -// top -= st::profileButtonTop; - } - - // about - if (!_about.isEmpty()) { - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, lang(_peerChannel ? lng_profile_description_section : lng_profile_about_section)); - top += st::profileHeaderSkip; - - _about.draw(p, _left, top, _width); - top += _aboutHeight; - } - - // migrate to megagroup - if (_showMigrate) { - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, lng_profile_migrate_reached(lt_count, Global::ChatSizeMax())); - top += st::profileHeaderSkip; - - _aboutMigrate.draw(p, _left, top, _width); top += _aboutMigrate.countHeight(_width) + st::setLittleSkip; - p.setFont(st::normalFont); - p.setPen(st::black); - p.drawText(_left, top + st::normalFont->ascent, lng_profile_migrate_feature1(lt_count, Global::MegagroupSizeMax())); top += st::normalFont->height + st::setLittleSkip; - p.drawText(_left, top + st::normalFont->ascent, lang(lng_profile_migrate_feature2)); top += st::normalFont->height + st::setLittleSkip; - p.drawText(_left, top + st::normalFont->ascent, lang(lng_profile_migrate_feature3)); top += st::normalFont->height + st::setLittleSkip; - p.drawText(_left, top + st::normalFont->ascent, lang(lng_profile_migrate_feature4)); top += st::normalFont->height + st::setSectionSkip; - - top += _migrate.height(); - } - - // settings - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, lang(lng_profile_settings_section)); - top += st::profileHeaderSkip; - - // invite link stuff - if (_amCreator && ((_peerChat && _peerChat->canEdit()) || (_peerChannel && !_peerChannel->isPublic()))) { - //if ((_peerChat && !_peerChat->invitationUrl.isEmpty()) || (_peerChannel && !_peerChannel->invitationUrl.isEmpty())) { - // p.setPen(st::black); - // p.setFont(st::linkFont); - // p.drawText(_left, _invitationLink.y() + st::linkFont->ascent, lang(lng_group_invite_link)); - // top += _invitationLink.height() + st::setLittleSkip; - //} - top += _createInvitationLink.height() + st::setSectionSkip; - } - - top += _enableNotifications.height(); - - // shared media - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, lang(lng_profile_shared_media)); - top += st::profileHeaderSkip; - - p.setFont(st::linkFont->f); - p.setPen(st::black->p); - bool mediaFound = false; - for (int i = 0; i < OverviewCount; ++i) { - if (!_mediaButtons[i]->isHidden()) { - mediaFound = true; - top += _mediaButtons[i]->height() + st::setLittleSkip; - } - } - if (_notAllMediaLoaded || !mediaFound) { - p.drawText(_left, top + st::linkFont->ascent, lang(_notAllMediaLoaded ? lng_profile_loading : lng_profile_no_media)); - top += _mediaButtons[OverviewPhotos]->height(); - } else { - top -= st::setLittleSkip; - } - - // actions - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, lang(lng_profile_actions_section)); - top += st::profileHeaderSkip; - - top += _searchInPeer.height() + st::setLittleSkip; - if (_peerChat && _amCreator && !_showMigrate) { - top += _convertToSupergroup.height() + st::setLittleSkip; - } - if (_peerUser || _peerChat) { - top += _clearHistory.height() + st::setLittleSkip; - } - if (_peerUser || _peerChat || (_peerChannel->amIn() && !_amCreator)) { - top += _deleteConversation.height(); - } - if (_peerUser && peerToUser(_peerUser->id) != MTP::authedId()) { - top += st::setSectionSkip + _blockUser.height(); - } else if (canDeleteChannel()) { - top += (_peerChannel->isMegagroup() ? 0 : (st::setSectionSkip - st::setLittleSkip)) + _deleteChannel.height(); - } - - // participants - if ((_peerChat && _peerChat->amIn()) || (_peerChannel && _peerChannel->isMegagroup() && _peerChannel->amIn())) { - QString sectionHeader = lang(_participants.isEmpty() ? lng_profile_loading : lng_profile_participants_section); - p.setFont(st::profileHeaderFont->f); - p.setPen(st::profileHeaderColor->p); - p.drawText(_left + st::profileHeaderLeft, top + st::profileHeaderTop + st::profileHeaderFont->ascent, sectionHeader); - top += st::profileHeaderSkip; - - int32 partfrom = top; - if (!_participants.isEmpty()) { - if (App::self()) { - if (_peerChat) { - if (_peerChat->amAdmin() && _peerChat->admins.constFind(App::self()) == _peerChat->admins.cend()) { - _peerChat->admins.insert(App::self()); - } else if (!_peerChat->amAdmin() && _peerChat->admins.constFind(App::self()) != _peerChat->admins.cend()) { - _peerChat->admins.remove(App::self()); - } - } else if (_peerChannel && _peerChannel->isMegagroup()) { - if ((_peerChannel->amCreator() || _peerChannel->amEditor()) && _peerChannel->mgInfo->lastAdmins.constFind(App::self()) == _peerChannel->mgInfo->lastAdmins.cend()) { - _peerChannel->mgInfo->lastAdmins.insert(App::self()); - } else if (!_peerChannel->amCreator() && !_peerChannel->amEditor() && _peerChannel->mgInfo->lastAdmins.constFind(App::self()) != _peerChannel->mgInfo->lastAdmins.cend()) { - _peerChannel->mgInfo->lastAdmins.remove(App::self()); - } - } - } - - int32 cnt = 0, fullCnt = _participants.size(); - for (Participants::const_iterator i = _participants.cbegin(), e = _participants.cend(); i != e; ++i, ++cnt) { - int32 top = partfrom + cnt * _pHeight; - if (top + _pHeight <= r.top()) continue; - if (top >= r.y() + r.height()) break; - - if (_selectedRow == cnt) { - p.fillRect(_left - st::profileListPadding.width(), top, _width + 2 * st::profileListPadding.width(), _pHeight, st::profileHoverBG->b); - } - - UserData *user = *i; - user->paintUserpic(p, st::profileListPhotoSize, _left, top + st::profileListPadding.height()); - ParticipantData *data = _participantsData[cnt]; - if (!data) { - data = _participantsData[cnt] = new ParticipantData(); - data->name.setText(st::profileListNameFont, user->name, _textNameOptions); - if (_peerChat) { - data->admin = (peerFromUser(_peerChat->creator) == user->id) || (_peerChat->adminsEnabled() && (_peerChat->admins.constFind(user) != _peerChat->admins.cend())); - } else if (_peerChannel) { - data->admin = (_peerChannel->mgInfo->lastAdmins.constFind(user) != _peerChannel->mgInfo->lastAdmins.cend()); - } else { - data->admin = false; - } - if (user->botInfo) { - if (user->botInfo->readsAllHistory || data->admin) { - data->online = lang(lng_status_bot_reads_all); - } else { - data->online = lang(lng_status_bot_not_reads_all); - } - } else { - data->online = App::onlineText(user, l_time); - } - if (_amCreator) { - data->cankick = (user != App::self()); - } else if (_peerChat && _peerChat->amAdmin()) { - data->cankick = (user != App::self()) && !data->admin; - } else if (_peerChannel && _peerChannel->amEditor()) { - data->cankick = (user != App::self()) && !data->admin; - } else { - data->cankick = (user != App::self()) && !_peerChannel && (_peerChat->invitedByMe.constFind(user) != _peerChat->invitedByMe.cend()); - } - } - p.setPen(st::profileListNameColor); - p.setFont(st::linkFont); - data->name.drawElided(p, _left + st::profileListPhotoSize + st::profileListPadding.width(), top + st::profileListNameTop, _width - _kickWidth - st::profileListPadding.width() - st::profileListPhotoSize - st::profileListPadding.width()); - p.setFont(st::profileSubFont); - p.setPen(App::onlineColorUse(user, l_time) ? st::profileOnlineColor : st::profileOfflineColor); - p.drawText(_left + st::profileListPhotoSize + st::profileListPadding.width(), top + st::profileListPadding.height() + st::profileListPhotoSize - st::profileListStatusBottom, data->online); - - if (_selectedRow == cnt && data->cankick) { - bool over = (user == _kickOver && (!_kickDown || _kickDown == _kickOver)); - p.setFont((over ? st::linkOverFont : st::linkFont)->f); - if (user == _kickOver && _kickOver == _kickDown) { - p.setPen(st::btnDefLink.downColor->p); - } else { - p.setPen(st::btnDefLink.color->p); - } - p.drawTextRight(width() - _left - _width, top + st::profileListNameTop, width(), lang(lng_profile_kick), _kickWidth); - } else if (data->admin) { - p.setFont(st::profileSubFont); - p.setPen(st::profileOfflineColor); - p.drawTextRight(width() - _left - _width, top + st::profileListNameTop, width(), lang(lng_profile_admin)); - } - } - top += fullCnt * _pHeight; - } - } - - top += st::profileHeaderTop + st::profileHeaderFont->ascent - st::linkFont->ascent; - top += _clearHistory.height(); -} - -void ProfileInner::mouseMoveEvent(QMouseEvent *e) { - _lastPos = e->globalPos(); - updateSelected(); - - bool photoOver = QRect(_left, st::profilePadding.top(), st::setPhotoSize, st::setPhotoSize).contains(e->pos()); - if (photoOver != _photoOver) { - _photoOver = photoOver; - if (!_photoLink && ((_peerChat && _peerChat->canEdit()) || (_peerChannel && _amCreator))) { - a_photoOver.start(_photoOver ? 1 : 0); - _a_photo.start(); - } - } - if (!_photoLink && (_peerUser || (_peerChat && !_peerChat->canEdit()) || (_peerChannel && !_amCreator))) { - setCursor((_kickOver || _kickDown || ClickHandler::getActive()) ? style::cur_pointer : style::cur_default); - } else { - setCursor((_kickOver || _kickDown || _photoOver || ClickHandler::getActive()) ? style::cur_pointer : style::cur_default); - } -} - -void ProfileInner::clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) { - update(QRect(_left, _aboutTop, _width, _aboutHeight)); -} - -void ProfileInner::clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) { - update(QRect(_left, _aboutTop, _width, _aboutHeight)); -} - -void ProfileInner::updateSelected() { - if (!isVisible()) return; - - QPoint lp = mapFromGlobal(_lastPos); - - ClickHandlerPtr lnk; - ClickHandlerHost *lnkhost = nullptr; - if (!_about.isEmpty() && lp.y() >= _aboutTop && lp.y() < _aboutTop + _aboutHeight && lp.x() >= _left && lp.x() < _left + _width) { - auto textState = _about.getState(lp.x() - _left, lp.y() - _aboutTop, _width); - lnk = textState.link; - lnkhost = this; - } - ClickHandler::setActive(lnk, lnkhost); - - int32 participantsTop = 0; - if (canDeleteChannel()) { - participantsTop = _deleteChannel.y() + _deleteChannel.height(); - } else if (_peerChannel && _amCreator) { - participantsTop = _searchInPeer.y() + _searchInPeer.height(); - } else { - participantsTop = _deleteConversation.y() + _deleteConversation.height(); - } - participantsTop += st::profileHeaderSkip; - int32 newSelected = (lp.x() >= _left - st::profileListPadding.width() && lp.x() < _left + _width + st::profileListPadding.width() && lp.y() >= participantsTop) ? (lp.y() - participantsTop) / _pHeight : -1; - - UserData *newKickOver = 0; - if (newSelected >= 0 && newSelected < _participants.size()) { - ParticipantData *data = _participantsData[newSelected]; - if (data && data->cankick) { - int32 top = participantsTop + newSelected * _pHeight + st::profileListNameTop; - if ((lp.x() >= _left + _width - _kickWidth) && (lp.x() < _left + _width) && (lp.y() >= top) && (lp.y() < top + st::linkFont->height)) { - newKickOver = _participants[newSelected]; - } - } - } - if (_kickOver != newKickOver) { - _kickOver = newKickOver; - update(); - } - if (_kickDown) return; - - if (newSelected != _selectedRow) { - _selectedRow = newSelected; - update(); - } -} - -void ProfileInner::mousePressEvent(QMouseEvent *e) { - _lastPos = e->globalPos(); - updateSelected(); - - ClickHandler::pressed(); - - if (e->button() == Qt::LeftButton) { - if (_kickOver) { - _kickDown = _kickOver; - update(); - } else if (_selectedRow >= 0 && _selectedRow < _participants.size()) { - Ui::showPeerProfile(_participants[_selectedRow]); - } else if (QRect(_left, st::profilePadding.top(), st::setPhotoSize, st::setPhotoSize).contains(e->pos())) { - if (_photoLink) { - _photoLink->onClick(e->button()); - } else if ((_peerChat && _peerChat->canEdit()) || (_peerChannel && _amCreator)) { - onUpdatePhoto(); - } - } - } -} - -void ProfileInner::mouseReleaseEvent(QMouseEvent *e) { - _lastPos = e->globalPos(); - updateSelected(); - if (_kickDown && _kickDown == _kickOver) { - _kickConfirm = _kickOver; - ConfirmBox *box = new ConfirmBox(lng_profile_sure_kick(lt_user, _kickOver->firstName), lang(lng_box_remove)); - connect(box, SIGNAL(confirmed()), this, SLOT(onKickConfirm())); - Ui::showLayer(box); - } - - _kickDown = 0; - if (!_photoLink && (_peerUser || (_peerChat && !_peerChat->canEdit()) || (_peerChannel && !_amCreator))) { - setCursor((_kickOver || _kickDown || ClickHandler::getActive()) ? style::cur_pointer : style::cur_default); - } else { - setCursor((_kickOver || _kickDown || _photoOver || ClickHandler::getActive()) ? style::cur_pointer : style::cur_default); - } - update(); - - if (ClickHandlerPtr activated = ClickHandler::unpressed()) { - App::activateClickHandler(activated, e->button()); - } -} - -void ProfileInner::onKickConfirm() { - if (_peerChat) { - App::main()->kickParticipant(_peerChat, _kickConfirm); - } else if (_peerChannel) { - Ui::hideLayer(); - App::api()->kickParticipant(_peerChannel, _kickConfirm); - } -} - -void ProfileInner::keyPressEvent(QKeyEvent *e) { - if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Back) { - App::main()->showBackFromStack(); - } - _secretText += e->text().toLower(); - int32 size = _secretText.size(), from = 0; - while (size > from) { - QStringRef str(_secretText.midRef(from)); - if (str == qstr("tosupergroup")) { - _forceShowMigrate = true; - peerUpdated(_peer); - } else if (qsl("tosupergroup").startsWith(str)) { - break; - } - ++from; - } - _secretText = (size > from) ? _secretText.mid(from) : QString(); - -} - -void ProfileInner::enterEvent(QEvent *e) { - setMouseTracking(true); - _lastPos = QCursor::pos(); - updateSelected(); - return TWidget::enterEvent(e); -} - -void ProfileInner::leaveEvent(QEvent *e) { - setMouseTracking(false); - _lastPos = QCursor::pos(); - updateSelected(); - return TWidget::leaveEvent(e); -} - -void ProfileInner::leaveToChildEvent(QEvent *e) { - _lastPos = QCursor::pos(); - updateSelected(); - return TWidget::leaveToChildEvent(e); -} - -bool ProfileInner::updateMediaLinks(int32 *addToScroll) { - QPoint p(addToScroll ? mapFromGlobal(QCursor::pos()) : QPoint(0, 0)); - bool oneWasShown = false; - for (int i = 0; i < OverviewCount; ++i) { - if (!_mediaButtons[i]->isHidden()) { - oneWasShown = true; - break; - } - } - - bool newNotAllMediaLoaded = false, changed = false, substracted = !_notAllMediaLoaded && oneWasShown; - bool notAllHistoryLoaded = false, notAllMigratedLoaded = false; - - bool oneIsShown = false; - int32 y = _mediaButtons[OverviewPhotos]->y(); - if (addToScroll) *addToScroll = 0; - for (int i = 0; i < OverviewCount; ++i) { - int32 addToY = _mediaButtons[i]->height() + st::setLittleSkip; - - int32 count = _history->overviewCount(i), additional = _migrated ? _migrated->overviewCount(i) : 0; - int32 sum = (count > 0 ? count : 0) + (additional > 0 ? additional : 0); - if (sum > 0) { - _mediaButtons[i]->setText(overviewLinkText(i, sum)); - if (_mediaButtons[i]->isHidden()) { - _mediaButtons[i]->show(); - changed = true; - - if (addToScroll && p.y() >= y) { - p.setY(p.y() + addToY); - *addToScroll += addToY; - } - } - y += addToY; - oneIsShown = true; - } else { - if (!_mediaButtons[i]->isHidden()) { - _mediaButtons[i]->hide(); - changed = true; - - if (addToScroll && p.y() >= y + addToY) { - p.setY(p.y() - addToY); - *addToScroll -= addToY; - } - } - if (count < 0) { - notAllHistoryLoaded = true; - } - if (additional < 0) { - notAllMigratedLoaded = true; - } - } - } - newNotAllMediaLoaded = notAllHistoryLoaded || notAllMigratedLoaded; - if (newNotAllMediaLoaded != _notAllMediaLoaded) { - _notAllMediaLoaded = newNotAllMediaLoaded; - changed = true; - - int32 addToY = _mediaButtons[OverviewPhotos]->height(); - if (_notAllMediaLoaded) { - if (addToScroll && p.y() >= y) { - p.setY(p.y() + addToY); - *addToScroll += addToY; - } - } else { - if (addToScroll && p.y() >= y + addToY) { - p.setY(p.y() - addToY); - *addToScroll -= addToY; - } - } - - if (App::main()) { - if (notAllHistoryLoaded) App::main()->preloadOverviews(_peer); - if (notAllMigratedLoaded) App::main()->preloadOverviews(_migrated->peer); - } - } - bool newSubstracted = !_notAllMediaLoaded && oneIsShown; - if (newSubstracted && newSubstracted != substracted) { - int32 addToY = st::setLittleSkip; - if (addToScroll && p.y() >= y + addToY) { - p.setY(p.y() - addToY); - *addToScroll -= addToY; - } - } - return changed; -} - -void ProfileInner::migrateDone(const MTPUpdates &updates) { - Ui::hideLayer(); - App::main()->sentUpdatesReceived(updates); - const QVector *v = 0; - switch (updates.type()) { - case mtpc_updates: v = &updates.c_updates().vchats.c_vector().v; break; - case mtpc_updatesCombined: v = &updates.c_updatesCombined().vchats.c_vector().v; break; - default: LOG(("API Error: unexpected update cons %1 (ProfileInner::migrateDone)").arg(updates.type())); break; - } - - PeerData *peer = 0; - if (v && !v->isEmpty()) { - for (int32 i = 0, l = v->size(); i < l; ++i) { - if (v->at(i).type() == mtpc_channel) { - peer = App::channel(v->at(i).c_channel().vid.v); - Ui::showPeerHistory(peer, ShowAtUnreadMsgId); - QTimer::singleShot(ReloadChannelMembersTimeout, App::api(), SLOT(delayedRequestParticipantsCount())); - } - } - } - if (!peer) { - LOG(("API Error: channel not found in updates (ProfileInner::migrateDone)")); - } -} - -bool ProfileInner::migrateFail(const RPCError &error) { - if (MTP::isDefaultHandledError(error)) return false; - Ui::hideLayer(); - return true; -} - -bool ProfileInner::canDeleteChannel() const { - return _peerChannel && _amCreator && (_peerChannel->membersCount() <= 1000); -} - -void ProfileInner::resizeEvent(QResizeEvent *e) { - _width = qMin(width() - st::profilePadding.left() - st::profilePadding.right(), int(st::profileMaxWidth)); - _left = (width() - _width) / 2; - - int32 top = 0, btnWidth = 0;// (_width - st::profileButtonSkip) / 2; - - // profile - top += st::profilePadding.top(); - int32 addbyname = 0; - if (_peerChannel && (_peerChannel->isPublic() || _peerChannel->canEditUsername())) { - //_username.move(_left + st::profilePhotoSize + st::profileStatusLeft, top + st::profileStatusTop); - //addbyname = st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent); - } - //_members.move(_left + st::profilePhotoSize + st::profileStatusLeft, top + addbyname + st::profileStatusTop); - //addbyname += st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent); - if (!_admins.isHidden()) { - //_admins.move(_left + st::profilePhotoSize + st::profileStatusLeft, top + addbyname + st::profileStatusTop); - //addbyname += st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent); - } - if ((_peerChat && _amCreator && _peerChat->canEdit()) || (_peerChannel && (_amCreator || _peerChannel->amEditor() || _peerChannel->amModerator()))) { -// _cancelPhoto.move(_left + _width - _cancelPhoto.width(), top + st::profilePhotoSize - st::linkFont->height); - } else { - _cancelPhoto.move(_left + _width - _cancelPhoto.width(), top + st::profilePhoneTop); - // _botSettings.move(_left + st::profilePhotoSize + st::profilePhoneLeft, top + st::profileStatusTop + st::linkFont->ascent - (st::profileNameTop + st::profileNameFont->ascent) + st::profilePhoneTop); - _botHelp.move(_botSettings.x() + (_botSettings.isHidden() ? 0 : _botSettings.width() + st::profilePhoneLeft), _botSettings.y()); - } - //_pinnedMessage.move(_left + st::profilePhotoSize + st::profileStatusLeft, top + addbyname + st::profileStatusTop); - //top += st::profilePhotoSize; - - //top += st::profileButtonTop; - - _uploadPhoto.setGeometry(_left, top, btnWidth, _uploadPhoto.height()); - if (_peerChannel && _peerChannel->membersCount() < Global::MegagroupSizeMax() && _peerChannel->isMegagroup() && !_amCreator && !_peerChannel->amEditor() && _peerChannel->canAddMembers()) { - _addParticipant.setGeometry(_left, top, btnWidth, _addParticipant.height()); - } else { - _addParticipant.setGeometry(_left + _width - btnWidth, top, btnWidth, _addParticipant.height()); - } - - _sendMessage.setGeometry(_left, top, btnWidth, _sendMessage.height()); - _shareContact.setGeometry(_left + _width - btnWidth, top, btnWidth, _shareContact.height()); - _inviteToGroup.setGeometry(_left + _width - btnWidth, top, btnWidth, _inviteToGroup.height()); - - if ((!_peerChat || _peerChat->canEdit()) && (!_peerChannel || _amCreator || (_peerChannel->canAddMembers() && _peerChannel->isMegagroup()))) { - top += _shareContact.height(); - } else { - //top -= st::profileButtonTop; - } - - // about - if (!_about.isEmpty()) { - top += st::profileHeaderSkip; - _aboutTop = top; _aboutHeight = _about.countHeight(_width); top += _aboutHeight; - } else { - _aboutTop = _aboutHeight = 0; - } - - // migrate to megagroup - if (_showMigrate) { - top += st::profileHeaderSkip; - top += _aboutMigrate.countHeight(_width) + st::setLittleSkip; - top += st::normalFont->height * 4 + st::setLittleSkip * 3 + st::setSectionSkip; - _migrate.move(_left, top); top += _migrate.height(); - } - - // settings - top += st::profileHeaderSkip; - - // invite link stuff - int32 _inviteLinkTextWidth(st::linkFont->width(lang(lng_group_invite_link)) + st::linkFont->spacew); - if (_amCreator && ((_peerChat && _peerChat->canEdit()) || (_peerChannel && !_peerChannel->isPublic()))) { - if (!_invitationText.isEmpty()) { - _invitationLink.setText(st::linkFont->elided(_invitationText, _width - _inviteLinkTextWidth)); - } - //if ((_peerChat && !_peerChat->invitationUrl.isEmpty()) || (_peerChannel && !_peerChannel->invitationUrl.isEmpty())) { - // _invitationLink.move(_left + _inviteLinkTextWidth, top); - // top += _invitationLink.height() + st::setLittleSkip; - // _createInvitationLink.move(_left, top); - //} else { - // _createInvitationLink.move(_left, top); - //} - top += _createInvitationLink.height() + st::setSectionSkip; - } - - _enableNotifications.move(_left, top); top += _enableNotifications.height(); - - // shared media - top += st::profileHeaderSkip; - - bool mediaFound = false; - for (int i = 0; i < OverviewCount; ++i) { - _mediaButtons[i]->move(_left, top); - if (!_mediaButtons[i]->isHidden()) { - mediaFound = true; - top += _mediaButtons[i]->height() + st::setLittleSkip; - } - } - if (_notAllMediaLoaded || !mediaFound) { - top += _mediaButtons[OverviewPhotos]->height(); - } else { - top -= st::setLittleSkip; - } - - // actions - top += st::profileHeaderSkip; - _searchInPeer.move(_left, top); top += _searchInPeer.height() + st::setLittleSkip; - if (_peerChat && _amCreator && !_showMigrate) { - _convertToSupergroup.move(_left, top); top += _convertToSupergroup.height() + st::setLittleSkip; - } - if (_peerUser || _peerChat) { - _clearHistory.move(_left, top); top += _clearHistory.height() + st::setLittleSkip; - } - if (_peerUser || _peerChat || (_peerChannel->amIn() && !_amCreator)) { - _deleteConversation.move(_left, top); top += _deleteConversation.height(); - } - if (_peerUser && peerToUser(_peerUser->id) != MTP::authedId()) { - top += st::setSectionSkip; - _blockUser.move(_left, top); top += _blockUser.height(); - } else if (canDeleteChannel()) { - top += (_peerChannel->isMegagroup() ? 0 : (st::setSectionSkip - st::setLittleSkip)); - _deleteChannel.move(_left, top); top += _deleteChannel.height(); - } - - // participants - if ((_peerChat && _peerChat->amIn()) || (_peerChannel && _peerChannel->isMegagroup() && _peerChannel->amIn())) { - top += st::profileHeaderSkip; - if (!_participants.isEmpty()) { - int32 fullCnt = _participants.size(); - top += fullCnt * _pHeight; - } - } - top += st::profileHeaderTop + st::profileHeaderFont->ascent - st::linkFont->ascent; -} - -void ProfileInner::contextMenuEvent(QContextMenuEvent *e) { - if (_menu) { - _menu->deleteLater(); - _menu = 0; - } - if (!_phoneText.isEmpty() || _peerUser) { -// QRect info(_left + st::profilePhotoSize + st::profilePhoneLeft, st::profilePadding.top(), _width - st::profilePhotoSize - st::profilePhoneLeft, st::profilePhotoSize); - //if (info.contains(mapFromGlobal(e->globalPos()))) { - // _menu = new PopupMenu(); - // if (_peerUser) { - // _menu->addAction(lang(lng_profile_copy_fullname), this, SLOT(onCopyFullName()))->setEnabled(true); - // } - // if (!_phoneText.isEmpty()) { - // _menu->addAction(lang(lng_profile_copy_phone), this, SLOT(onCopyPhone()))->setEnabled(true); - // } - // if (_peerUser && !_peerUser->username.isEmpty()) { - // _menu->addAction(lang(lng_context_copy_mention), this, SLOT(onCopyUsername()))->setEnabled(true); - // } - // connect(_menu, SIGNAL(destroyed(QObject*)), this, SLOT(onMenuDestroy(QObject*))); - // _menu->popup(e->globalPos()); - // e->accept(); - //} - } -} - -void ProfileInner::onMenuDestroy(QObject *obj) { - if (_menu == obj) { - _menu = 0; - } -} - -void ProfileInner::onCopyFullName() { - if (!_peerUser) return; - QApplication::clipboard()->setText(lng_full_name(lt_first_name, _peerUser->firstName, lt_last_name, _peerUser->lastName).trimmed()); -} - -void ProfileInner::onCopyPhone() { - QApplication::clipboard()->setText(_phoneText); -} - -void ProfileInner::onCopyUsername() { - if (!_peerUser) return; - QApplication::clipboard()->setText('@' + _peerUser->username); -} - -void ProfileInner::step_photo(float64 ms, bool timer) { - float64 dt = ms / st::setPhotoDuration; - if (dt >= 1) { - _a_photo.stop(); - a_photoOver.finish(); - } else { - a_photoOver.update(dt, anim::linear); - } - if (timer) update(_left, st::profilePadding.top(), st::setPhotoSize, st::setPhotoSize); -} - -PeerData *ProfileInner::peer() const { - return _peer; -} - -ProfileInner::~ProfileInner() { - for (ParticipantsData::iterator i = _participantsData.begin(), e = _participantsData.end(); i != e; ++i) { - delete *i; - } - _participantsData.clear(); -} - -void ProfileInner::openContextImage() { -} - -void ProfileInner::deleteContextImage() { -} - -void ProfileInner::updateNotifySettings() { - _enableNotifications.setChecked(_peer->notify == EmptyNotifySettings || _peer->notify == UnknownNotifySettings || _peer->notify->mute < unixtime()); -} - -int32 ProfileInner::mediaOverviewUpdated(PeerData *peer, MediaOverviewType type) { - int32 result = 0; - if (peer == _peer || (_migrated && _migrated->peer == peer)) { - if (updateMediaLinks(&result)) { - showAll(); - resizeEvent(0); - update(); - } - } - return result; -} - -void ProfileInner::requestHeight(int32 newHeight) { - if (newHeight > height()) { - _addToHeight += newHeight - height(); - showAll(); - } -} - -int32 ProfileInner::countMinHeight() { - int32 h = 0; - if (_peerUser) { - if (peerToUser(_peerUser->id) == MTP::authedId()) { - h = _deleteConversation.y() + _deleteConversation.height() + st::profileHeaderSkip; - } else { - h = _blockUser.y() + _blockUser.height() + st::profileHeaderSkip; - } - } else if (_peerChat) { - h = _deleteConversation.y() + _deleteConversation.height() + st::profileHeaderSkip; - if (!_participants.isEmpty()) { - h += st::profileHeaderSkip + _participants.size() * _pHeight; - } else if (_peerChat->amIn()) { - h += st::profileHeaderSkip; - } - } else if (_peerChannel) { - if (canDeleteChannel()) { - h = _deleteChannel.y() + _deleteChannel.height() + st::profileHeaderSkip; - } else if (_peerChannel->amIn() && !_amCreator) { - h = _deleteConversation.y() + _deleteConversation.height() + st::profileHeaderSkip; - } else { - h = _searchInPeer.y() + _searchInPeer.height() + st::profileHeaderSkip; - } - if (_peerChannel->isMegagroup()) { - if (!_participants.isEmpty()) { - h += st::profileHeaderSkip + _participants.size() * _pHeight; - } else if (_peerChannel->amIn()) { - h += st::profileHeaderSkip; - } - } - } - return h; -} - -void ProfileInner::allowDecreaseHeight(int32 decreaseBy) { - if (decreaseBy > 0 && _addToHeight > 0) { - _addToHeight -= qMin(decreaseBy, _addToHeight); - showAll(); - } -} - -void ProfileInner::showAll() { - _searchInPeer.show(); - if (_peerChat && _amCreator && !_showMigrate) { - _convertToSupergroup.show(); - } else { - _convertToSupergroup.hide(); - } - if (_peerUser || _peerChat) { - _clearHistory.show(); - } else { - _clearHistory.hide(); - } - if (_peerUser || _peerChat || (_peerChannel->amIn() && !_amCreator)) { - _deleteConversation.show(); - } else { - _deleteConversation.hide(); - } - if (_peerUser) { - _uploadPhoto.hide(); - _cancelPhoto.hide(); - _addParticipant.hide(); - _createInvitationLink.hide(); - _invitationLink.hide(); - _sendMessage.show(); - if (_peerUser->phone().isEmpty()) { - _shareContact.hide(); - if (_peerUser->botInfo && !_peerUser->botInfo->cantJoinGroups) { - _inviteToGroup.show(); - } else { - _inviteToGroup.hide(); - } - } else { - _shareContact.show(); - _inviteToGroup.hide(); - } - _clearHistory.show(); - if (peerToUser(_peerUser->id) != MTP::authedId()) { - _blockUser.show(); - } else { - _blockUser.hide(); - } - _deleteChannel.hide(); - _username.hide(); - _members.hide(); - _admins.hide(); - } else if (_peerChat) { - _sendMessage.hide(); - _shareContact.hide(); - _inviteToGroup.hide(); - if (!_peerChat->canEdit()) { - _uploadPhoto.hide(); - _cancelPhoto.hide(); - _addParticipant.hide(); - _createInvitationLink.hide(); - _invitationLink.hide(); - } else { - if (App::app()->isPhotoUpdating(_peer->id)) { - _uploadPhoto.hide(); - _cancelPhoto.show(); - } else { - _uploadPhoto.show(); - _cancelPhoto.hide(); - } - if (_amCreator) { - _createInvitationLink.show(); - //if (_peerChat->invitationUrl.isEmpty()) { - // _invitationLink.hide(); - //} else { - // _invitationLink.show(); - //} - } else { - _createInvitationLink.hide(); - _invitationLink.hide(); - } - if (_peerChat->count < Global::ChatSizeMax() && !_showMigrate) { - _addParticipant.show(); - } else { - _addParticipant.hide(); - } - } - _blockUser.hide(); - _deleteChannel.hide(); - _username.hide(); - _members.hide(); - if (_amCreator && _peerChat->canEdit()) { - _admins.show(); - } else { - _admins.hide(); - } - } else if (_peerChannel) { - _sendMessage.hide(); - _shareContact.hide(); - _inviteToGroup.hide(); - if (_peerChannel->isForbidden) { - _uploadPhoto.hide(); - _cancelPhoto.hide(); - _createInvitationLink.hide(); - _invitationLink.hide(); - } else { - if (App::app()->isPhotoUpdating(_peer->id)) { - _uploadPhoto.hide(); - _cancelPhoto.show(); - } else { - if (_amCreator || (_peerChannel->amEditor() && _peerChannel->isMegagroup())) { - _uploadPhoto.show(); - } else { - _uploadPhoto.hide(); - } - _cancelPhoto.hide(); - } - if (_amCreator && !_peerChannel->isPublic()) { - _createInvitationLink.show(); - //if (_peerChannel->invitationUrl.isEmpty()) { - // _invitationLink.hide(); - //} else { - // _invitationLink.show(); - //} - } else { - _createInvitationLink.hide(); - _invitationLink.hide(); - } - } - if (_peerChannel->membersCount() < Global::MegagroupSizeMax() && _peerChannel->isMegagroup() && _peerChannel->canAddMembers()) { - _addParticipant.show(); - } else { - _addParticipant.hide(); - } - _blockUser.hide(); - if (canDeleteChannel()) { - _deleteChannel.show(); - } else { - _deleteChannel.hide(); - } - if (_peerChannel->isPublic() || _peerChannel->canEditUsername()) { - _username.show(); - } else { - _username.hide(); - } - if (_amCreator || _peerChannel->amEditor() || _peerChannel->amModerator()) { - _admins.show(); - } else { - _admins.hide(); - } - if (_peerChannel->canViewMembers() && !_peerChannel->isMegagroup()) { - _members.show(); - } else { - _members.hide(); - } - } - if (_showMigrate) { - _migrate.show(); - } else { - _migrate.hide(); - } - _enableNotifications.show(); - updateNotifySettings(); - - // participants - reorderParticipants(); - resize(width(), countMinHeight() + _addToHeight); -} - -void ProfileInner::updateInvitationLink() { - if (!_peerChat && !_peerChannel) return; - - //if ((_peerChat && _peerChat->invitationUrl.isEmpty()) || (_peerChannel && _peerChannel->invitationUrl.isEmpty())) { - // _createInvitationLink.setText(lang(lng_group_invite_create)); - //} else { - // _createInvitationLink.setText(lang(lng_group_invite_create_new)); - // _invitationText = _peerChat ? _peerChat->invitationUrl : _peerChannel->invitationUrl; - // if (_invitationText.startsWith(qstr("http://"), Qt::CaseInsensitive)) { - // _invitationText = _invitationText.mid(7); - // } else if (_invitationText.startsWith(qstr("https://"), Qt::CaseInsensitive)) { - // _invitationText = _invitationText.mid(8); - // } - //} -} - -void ProfileInner::updatePinnedMessageVisibility() { - if (_peerChannel && _peerChannel->isMegagroup() && _peerChannel->mgInfo->pinnedMsgId && !_amCreator && !_peerChannel->amEditor()) { - _pinnedMessage.show(); - } else { - _pinnedMessage.hide(); - } -} - -void ProfileInner::updateBotLinksVisibility() { - if (!_peerUser || !_peerUser->botInfo || _peerUser->botInfo->commands.isEmpty()) { - _botSettings.hide(); - _botHelp.hide(); - return; - } - - bool hasSettings = false, hasHelp = false; - for (int32 i = 0, l = _peerUser->botInfo->commands.size(); i != l; ++i) { - QString cmd = _peerUser->botInfo->commands.at(i).command; - hasSettings |= !cmd.compare(qsl("settings"), Qt::CaseInsensitive); - hasHelp |= !cmd.compare(qsl("help"), Qt::CaseInsensitive); - if (hasSettings && hasHelp) break; - } - _botSettings.setVisible(hasSettings); - _botHelp.setVisible(hasHelp); -} - -QString ProfileInner::overviewLinkText(int32 type, int32 count) { - switch (type) { - case OverviewPhotos: return lng_profile_photos(lt_count, count); - case OverviewVideos: return lng_profile_videos(lt_count, count); - case OverviewMusicFiles: return lng_profile_songs(lt_count, count); - case OverviewFiles: return lng_profile_files(lt_count, count); - case OverviewVoiceFiles: return lng_profile_audios(lt_count, count); - case OverviewLinks: return lng_profile_shared_links(lt_count, count); - } - return QString(); -} - -ProfileWidget::ProfileWidget(QWidget *parent, PeerData *peer) : TWidget(parent) -, _scroll(this, st::setScroll) -, _inner(this, peer) -, _a_show(animation(this, &ProfileWidget::step_show)) -, _topShadow(this, st::shadowColor) -, _inGrab(false) { - _scroll.setWidget(&_inner); - _scroll.move(0, 0); - _inner.move(0, 0); - _scroll.show(); - - connect(&_scroll, SIGNAL(scrolled()), &_inner, SLOT(updateSelected())); - connect(&_scroll, SIGNAL(scrolled()), this, SLOT(onScroll())); -} - -void ProfileWidget::onScroll() { - _inner.loadProfilePhotos(_scroll.scrollTop()); - if (!_scroll.isHidden() && _scroll.scrollTop() < _scroll.scrollTopMax()) { - _inner.allowDecreaseHeight(_scroll.scrollTopMax() - _scroll.scrollTop()); - } - if (peer()->isMegagroup() && !peer()->asChannel()->mgInfo->lastParticipants.isEmpty() && peer()->asChannel()->mgInfo->lastParticipants.size() < peer()->asChannel()->membersCount()) { - if (_scroll.scrollTop() + PreloadHeightsCount * _scroll.height() > _scroll.scrollTopMax()) { - App::api()->requestLastParticipants(peer()->asChannel(), false); - } - } -} - -void ProfileWidget::resizeEvent(QResizeEvent *e) { - int32 addToY = App::main() ? App::main()->contentScrollAddToY() : 0; - int32 newScrollY = _scroll.scrollTop() + addToY; - _scroll.resize(size()); - _inner.resize(width(), _inner.height()); - if (!_scroll.isHidden()) { - if (addToY) { - _scroll.scrollToY(newScrollY); - } - if (_scroll.scrollTop() < _scroll.scrollTopMax()) { - _inner.allowDecreaseHeight(_scroll.scrollTopMax() - _scroll.scrollTop()); - } - } - - _topShadow.resize(width() - ((!Adaptive::OneColumn() && !_inGrab) ? st::lineWidth : 0), st::lineWidth); - _topShadow.moveToLeft((!Adaptive::OneColumn() && !_inGrab) ? st::lineWidth : 0, 0); -} - -void ProfileWidget::mousePressEvent(QMouseEvent *e) { -} - -void ProfileWidget::paintEvent(QPaintEvent *e) { - if (App::wnd() && App::wnd()->contentOverlapped(this, e)) return; - - Painter p(this); - if (_a_show.animating()) { - if (a_coordOver.current() > 0) { - p.drawPixmap(QRect(0, 0, a_coordOver.current(), height()), _cacheUnder, QRect(-a_coordUnder.current() * cRetinaFactor(), 0, a_coordOver.current() * cRetinaFactor(), height() * cRetinaFactor())); - p.setOpacity(a_shadow.current() * st::slideFadeOut); - p.fillRect(0, 0, a_coordOver.current(), height(), st::black->b); - p.setOpacity(1); - } - p.drawPixmap(a_coordOver.current(), 0, _cacheOver); - p.setOpacity(a_shadow.current()); - p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), height()), App::sprite(), st::slideShadow.rect()); - } else { - p.fillRect(e->rect(), st::white->b); - } -} - -void ProfileWidget::dragEnterEvent(QDragEnterEvent *e) { -} - -void ProfileWidget::dropEvent(QDropEvent *e) { -} - -void ProfileWidget::keyPressEvent(QKeyEvent *e) { - return _inner.keyPressEvent(e); -} - -void ProfileWidget::paintTopBar(Painter &p, float64 over, int32 decreaseWidth) { - if (_a_show.animating()) { - p.drawPixmap(a_coordUnder.current(), 0, _cacheTopBarUnder); - p.drawPixmap(a_coordOver.current(), 0, _cacheTopBarOver); - p.setOpacity(a_shadow.current()); - p.drawPixmap(QRect(a_coordOver.current() - st::slideShadow.pxWidth(), 0, st::slideShadow.pxWidth(), st::topBarHeight), App::sprite(), st::slideShadow.rect()); - return; - } - - p.setOpacity(st::topBarBackAlpha + (1 - st::topBarBackAlpha) * over); - p.drawSprite(QPoint(st::topBarBackPadding.left(), (st::topBarHeight - st::topBarBackImg.pxHeight()) / 2), st::topBarBackImg); - p.setFont(st::topBarBackFont->f); - p.setPen(st::topBarBackColor->p); -// p.drawText(st::topBarBackPadding.left() + st::topBarBackImg.pxWidth() + st::topBarBackPadding.right(), (st::topBarHeight - st::topBarBackFont->height) / 2 + st::topBarBackFont->ascent, lang(peer()->isUser() ? lng_profile_info : ((peer()->isChat() || peer()->isMegagroup()) ? lng_profile_group_info : lng_profile_channel_info))); -} - -void ProfileWidget::topBarClick() { - App::main()->showBackFromStack(); -} - -PeerData *ProfileWidget::peer() const { - return _inner.peer(); -} - -int32 ProfileWidget::lastScrollTop() const { - return _scroll.scrollTop(); -} - -void ProfileWidget::animShow(const QPixmap &bgAnimCache, const QPixmap &bgAnimTopBarCache, bool back, int32 lastScrollTop) { - if (App::app()) App::app()->mtpPause(); - - if (!cAutoPlayGif()) { - App::stopGifItems(); - } - - (back ? _cacheOver : _cacheUnder) = bgAnimCache; - (back ? _cacheTopBarOver : _cacheTopBarUnder) = bgAnimTopBarCache; - if (lastScrollTop >= 0) _scroll.scrollToY(lastScrollTop); - (back ? _cacheUnder : _cacheOver) = myGrab(this); - App::main()->topBar()->stopAnim(); - (back ? _cacheTopBarUnder : _cacheTopBarOver) = myGrab(App::main()->topBar()); - App::main()->topBar()->startAnim(); - - _scroll.hide(); - _topShadow.hide(); - - a_coordUnder = back ? anim::ivalue(-st::slideShift, 0) : anim::ivalue(0, -st::slideShift); - a_coordOver = back ? anim::ivalue(0, width()) : anim::ivalue(width(), 0); - a_shadow = back ? anim::fvalue(1, 0) : anim::fvalue(0, 1); - _a_show.start(); - - show(); - - App::main()->topBar()->update(); - _inner.setFocus(); -} - -void ProfileWidget::step_show(float64 ms, bool timer) { - float64 dt = ms / st::slideDuration; - if (dt >= 1) { - _a_show.stop(); - _topShadow.show(); - - a_coordUnder.finish(); - a_coordOver.finish(); - a_shadow.finish(); - _cacheUnder = _cacheOver = _cacheTopBarUnder = _cacheTopBarOver = QPixmap(); - App::main()->topBar()->stopAnim(); - - _scroll.show(); - _inner.start(); - activate(); - - if (App::app()) App::app()->mtpUnpause(); - } else { - a_coordUnder.update(dt, st::slideFunction); - a_coordOver.update(dt, st::slideFunction); - a_shadow.update(dt, st::slideFunction); - } - if (timer) { - update(); - App::main()->topBar()->update(); - } -} - -void ProfileWidget::updateOnlineDisplay() { - _inner.updateOnlineDisplay(); - updateOnlineDisplayTimer(); -} - -void ProfileWidget::updateOnlineDisplayTimer() { - _inner.updateOnlineDisplayTimer(); -} - -void ProfileWidget::peerUsernameChanged() { - _inner.peerUsernameChanged(); -} - -void ProfileWidget::updateNotifySettings() { - _inner.updateNotifySettings(); -} - -void ProfileWidget::mediaOverviewUpdated(PeerData *peer, MediaOverviewType type) { - int32 addToScroll = _inner.mediaOverviewUpdated(peer, type); - if (!_scroll.isHidden() && addToScroll && _scroll.geometry().contains(mapFromGlobal(QCursor::pos()))) { - if (addToScroll > 0 && _scroll.scrollTop() + addToScroll > _scroll.scrollTopMax()) { - _inner.requestHeight(_scroll.scrollTop() + addToScroll + _scroll.height()); - } - _scroll.scrollToY(_scroll.scrollTop() + addToScroll); - } -} - -PeerData *ProfileWidget::ui_getPeerForMouseAction() { - return _inner.peer(); -} - -void ProfileWidget::clear() { - if (_inner.peer() && _inner.peer()->isUser() && _inner.peer()->asUser()->botInfo) { - _inner.peer()->asUser()->botInfo->startGroupToken = QString(); - } -} - -ProfileWidget::~ProfileWidget() { -} - -void ProfileWidget::activate() { - if (_scroll.isHidden()) { - setFocus(); - } else { - _inner.setFocus(); - } -} diff --git a/Telegram/SourceFiles/profilewidget.h b/Telegram/SourceFiles/profilewidget.h deleted file mode 100644 index fd0ce236d..000000000 --- a/Telegram/SourceFiles/profilewidget.h +++ /dev/null @@ -1,298 +0,0 @@ -/* -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 -Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org -*/ -#pragma once - -class ProfileWidget; -class ProfileInner : public TWidget, public RPCSender, public ClickHandlerHost { - Q_OBJECT - -public: - - ProfileInner(ProfileWidget *profile, PeerData *peer); - - void start(); - - void peerUsernameChanged(); - - bool event(QEvent *e) override; - void paintEvent(QPaintEvent *e) override; - void mouseMoveEvent(QMouseEvent *e) override; - void mousePressEvent(QMouseEvent *e) override; - void mouseReleaseEvent(QMouseEvent *e) override; - void keyPressEvent(QKeyEvent *e) override; - void enterEvent(QEvent *e) override; - void leaveEvent(QEvent *e) override; - void leaveToChildEvent(QEvent *e) override; - void resizeEvent(QResizeEvent *e) override; - void contextMenuEvent(QContextMenuEvent *e) override; - - void step_photo(float64 ms, bool timer); - - PeerData *peer() const; - bool allMediaShown() const; - - void updateOnlineDisplay(); - void updateOnlineDisplayTimer(); - void reorderParticipants(); - - void saveError(const QString &str = QString()); - - void loadProfilePhotos(int32 yFrom); - - void updateNotifySettings(); - int32 mediaOverviewUpdated(PeerData *peer, MediaOverviewType type); // returns scroll shift - - void requestHeight(int32 newHeight); - int32 countMinHeight(); - void allowDecreaseHeight(int32 decreaseBy); - - ~ProfileInner(); - - // ClickHandlerHost interface - void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override; - void clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) override; - -public slots: - - void peerUpdated(PeerData *data); - void updateSelected(); - - void openContextImage(); - void deleteContextImage(); - - void onShareContact(); - void onInviteToGroup(); - void onSendMessage(); - void onSearchInPeer(); - void onConvertToSupergroup(); - void onEnableNotifications(); - - void onClearHistory(); - void onClearHistorySure(); - void onDeleteConversation(); - void onDeleteConversationSure(); - void onDeleteChannel(); - void onDeleteChannelSure(); - void onBlockUser(); - void onAddParticipant(); - void onMigrate(); - void onMigrateSure(); - - void onUpdatePhoto(); - void onUpdatePhotoCancel(); - - void onPhotoUpdateDone(PeerId peer); - void onPhotoUpdateFail(PeerId peer); - void onPhotoUpdateStart(); - - void onKickConfirm(); - - void onMediaPhotos(); - void onMediaVideos(); - void onMediaSongs(); - void onMediaDocuments(); - void onMediaAudios(); - void onMediaLinks(); - - void onMenuDestroy(QObject *obj); - void onCopyFullName(); - void onCopyPhone(); - void onCopyUsername(); - - void onInvitationLink(); - void onCreateInvitationLink(); - void onCreateInvitationLinkSure(); - 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); - bool updateMediaLinks(int32 *addToScroll = 0); // returns if anything changed - - void migrateDone(const MTPUpdates &updates); - bool migrateFail(const RPCError &error); - - ProfileWidget *_profile; - - PeerData *_peer; - UserData *_peerUser; - ChatData *_peerChat; - ChannelData *_peerChannel; - History *_migrated, *_history; - bool _amCreator; - - int32 _width, _left, _addToHeight; - - // profile - Text _nameText; - QString _nameCache; - QString _phoneText; - ClickHandlerPtr _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; - - anim::fvalue a_photoOver; - Animation _a_photo; - bool _photoOver; - - QString _errorText; - - // migrate to megagroup - bool _showMigrate, _forceShowMigrate; - Text _aboutMigrate; - FlatButton _migrate; - - // settings - FlatCheckbox _enableNotifications; - - // shared media - bool _notAllMediaLoaded; - LinkButton *_mediaButtons[OverviewCount]; - QString overviewLinkText(int32 type, int32 count); - - // actions - LinkButton _searchInPeer, _convertToSupergroup, _clearHistory, _deleteConversation; - //UserBlockedStatus _wasBlocked; - mtpRequestId _blockRequest; - 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 Participants; - Participants _participants; - typedef QVector ParticipantsData; - ParticipantsData _participantsData; - - QPoint _lastPos; - - QString _onlineText; - PopupMenu *_menu; - - QString _secretText; - - bool _updateDelayed; - - void blockDone(bool blocked, const MTPBool &result); - bool blockFail(const RPCError &error); - -}; - -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(Painter &p, float64 over, int32 decreaseWidth); - void topBarClick(); - - PeerData *peer() const; - int32 lastScrollTop() const; - - void animShow(const QPixmap &oldAnimCache, const QPixmap &bgAnimTopBarCache, bool back = false, int32 lastScrollTop = -1); - void step_show(float64 ms, bool timer); - - void updateOnlineDisplay(); - void updateOnlineDisplayTimer(); - - void peerUsernameChanged(); - - void updateNotifySettings(); - void mediaOverviewUpdated(PeerData *peer, MediaOverviewType type); - - void grabStart() override { - _inGrab = true; - resizeEvent(0); - } - void grabFinish() override { - _inGrab = false; - resizeEvent(0); - } - void rpcClear() override { - _inner.rpcClear(); - RPCSender::rpcClear(); - } - - PeerData *ui_getPeerForMouseAction(); - - void clear(); - ~ProfileWidget(); - -public slots: - - void activate(); - void onScroll(); - -private: - - ScrollArea _scroll; - ProfileInner _inner; - - Animation _a_show; - QPixmap _cacheUnder, _cacheOver, _cacheTopBarUnder, _cacheTopBarOver; - anim::ivalue a_coordUnder, a_coordOver; - anim::fvalue a_shadow; - - PlainShadow _topShadow; - bool _inGrab; - -}; - diff --git a/Telegram/Telegram.pro b/Telegram/Telegram.pro index 0094427a1..89a1d4cdb 100644 --- a/Telegram/Telegram.pro +++ b/Telegram/Telegram.pro @@ -89,7 +89,6 @@ SOURCES += \ ./SourceFiles/mediaview.cpp \ ./SourceFiles/overviewwidget.cpp \ ./SourceFiles/passcodewidget.cpp \ - ./SourceFiles/profilewidget.cpp \ ./SourceFiles/playerwidget.cpp \ ./SourceFiles/localimageloader.cpp \ ./SourceFiles/localstorage.cpp \ @@ -209,7 +208,6 @@ HEADERS += \ ./SourceFiles/mediaview.h \ ./SourceFiles/overviewwidget.h \ ./SourceFiles/passcodewidget.h \ - ./SourceFiles/profilewidget.h \ ./SourceFiles/playerwidget.h \ ./SourceFiles/localimageloader.h \ ./SourceFiles/localstorage.h \ diff --git a/Telegram/Telegram.vcxproj b/Telegram/Telegram.vcxproj index d23d6d9d1..79c94b956 100644 --- a/Telegram/Telegram.vcxproj +++ b/Telegram/Telegram.vcxproj @@ -386,10 +386,6 @@ true true - - true - true - true true @@ -445,6 +441,10 @@ true true + + true + true + true true @@ -717,10 +717,6 @@ true true - - true - true - true true @@ -776,6 +772,10 @@ true true + + true + true + true true @@ -1074,10 +1074,6 @@ true true - - true - true - true true @@ -1133,6 +1129,10 @@ true true + + true + true + true true @@ -1204,6 +1204,7 @@ + @@ -1260,7 +1261,6 @@ - @@ -1413,6 +1413,20 @@ + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing report_box.h... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" "-fstdafx.h" "-f../../SourceFiles/boxes/report_box.h" -DAL_LIBTYPE_STATIC -DCUSTOM_API_ID -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing report_box.h... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" "-fstdafx.h" "-f../../SourceFiles/boxes/report_box.h" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl_debug\Debug\include" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing report_box.h... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" "-fstdafx.h" "-f../../SourceFiles/boxes/report_box.h" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include" + @@ -2465,20 +2479,6 @@ $(QTDIR)\bin\moc.exe;%(FullPath) $(QTDIR)\bin\moc.exe;%(FullPath) - - Moc%27ing profilewidget.h... - .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp - "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl_debug\Debug\include" "-fstdafx.h" "-f../../SourceFiles/profilewidget.h" - Moc%27ing profilewidget.h... - Moc%27ing profilewidget.h... - .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp - .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp - "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DAL_LIBTYPE_STATIC -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include" "-fstdafx.h" "-f../../SourceFiles/profilewidget.h" - "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DAL_LIBTYPE_STATIC -DCUSTOM_API_ID -DUNICODE -DWIN32 -DWIN64 -DHAVE_STDINT_H -DZLIB_WINAPI -DQT_NO_DEBUG -DNDEBUG -D_SCL_SECURE_NO_WARNINGS "-I.\SourceFiles" "-I.\GeneratedFiles" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include" "-I$(QTDIR)\include\QtCore\5.6.0\QtCore" "-I$(QTDIR)\include\QtGui\5.6.0\QtGui" "-I.\..\..\Libraries\breakpad\src" "-I.\..\..\Libraries\lzma\C" "-I.\..\..\Libraries\libexif-0.6.20" "-I.\..\..\Libraries\zlib-1.2.8" "-I.\..\..\Libraries\ffmpeg" "-I.\..\..\Libraries\openal-soft\include" "-I.\ThirdParty\minizip" "-I.\..\..\Libraries\openssl\Release\include" "-fstdafx.h" "-f../../SourceFiles/profilewidget.h" - $(QTDIR)\bin\moc.exe;%(FullPath) - $(QTDIR)\bin\moc.exe;%(FullPath) - $(QTDIR)\bin\moc.exe;%(FullPath) - Moc%27ing pspecific_win.h... .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp diff --git a/Telegram/Telegram.vcxproj.filters b/Telegram/Telegram.vcxproj.filters index c51141a60..0fe735d51 100644 --- a/Telegram/Telegram.vcxproj.filters +++ b/Telegram/Telegram.vcxproj.filters @@ -141,9 +141,6 @@ SourceFiles - - SourceFiles - SourceFiles @@ -225,15 +222,6 @@ GeneratedFiles\Release - - GeneratedFiles\Deploy - - - GeneratedFiles\Debug - - - GeneratedFiles\Release - GeneratedFiles\Deploy @@ -1272,6 +1260,18 @@ GeneratedFiles\Release + + GeneratedFiles\Deploy + + + SourceFiles\boxes + + + GeneratedFiles\Debug + + + GeneratedFiles\Release + @@ -1507,9 +1507,6 @@ SourceFiles - - SourceFiles - SourceFiles @@ -1759,6 +1756,9 @@ SourceFiles\profile + + SourceFiles\boxes + diff --git a/Telegram/Telegram.xcodeproj/project.pbxproj b/Telegram/Telegram.xcodeproj/project.pbxproj index fa9500d16..9da7b2f96 100644 --- a/Telegram/Telegram.xcodeproj/project.pbxproj +++ b/Telegram/Telegram.xcodeproj/project.pbxproj @@ -191,7 +191,6 @@ 832C50BFD7D09AF042A51D4F /* flatbutton.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = F1A04BDB750C2AE652797B04 /* flatbutton.cpp */; settings = {ATTRIBUTES = (); }; }; 8771A8C96E9C391044035D99 /* OpenGL.framework in Link Binary With Libraries */ = {isa = PBXBuildFile; fileRef = D4B32C2222F82AC56BADEB21 /* OpenGL.framework */; }; 8883FF366F2623E89D90A9E6 /* qgenericbearer in Link Binary With Libraries */ = {isa = PBXBuildFile; fileRef = 9A55B8F7C143D66AD9EAE304 /* qgenericbearer */; }; - 89ADB41E48A3B5E24ABB626C /* profilewidget.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = CF32DF59C7823E4F3397EF3C /* profilewidget.cpp */; settings = {ATTRIBUTES = (); }; }; 8B22E794EFF0EAFF964A3043 /* introstart.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = C34459FA465B57DF4DB80D12 /* introstart.cpp */; settings = {ATTRIBUTES = (); }; }; 8B71D1C7BB9DCEE6511219C2 /* moc_flatlabel.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 2181F5E34DE0A4B2F811E2E2 /* moc_flatlabel.cpp */; settings = {ATTRIBUTES = (); }; }; 8C4BA0DB55E2C40DE5F5E990 /* moc_pspecific_mac.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 74772222DA764BE4623EAC5D /* moc_pspecific_mac.cpp */; settings = {ATTRIBUTES = (); }; }; @@ -232,7 +231,6 @@ BE6AB9DF1C4880624131C669 /* Qt5Widgets in Link Binary With Libraries */ = {isa = PBXBuildFile; fileRef = 4689C06178B60B84E7F3A3B7 /* Qt5Widgets */; }; C03447C9A7D9FF73463B8BB5 /* countryinput.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 3E329D4547CC23585307FA32 /* countryinput.cpp */; settings = {ATTRIBUTES = (); }; }; C06DDE378A7AC1FA9E6FF69A /* qtiff in Link Binary With Libraries */ = {isa = PBXBuildFile; fileRef = F2453BA07315EB9F34F1CD57 /* qtiff */; }; - C14E6C902F6435B3149ECD64 /* moc_profilewidget.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = 48003469151B9DDE82E851FB /* moc_profilewidget.cpp */; settings = {ATTRIBUTES = (); }; }; C1F9D5CA8AF3AD8EBC9D7310 /* moc_application.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = E181C525E21A16F2D4396CA7 /* moc_application.cpp */; settings = {ATTRIBUTES = (); }; }; C329997D36D34D568CE16C9A /* moc_animation.cpp in Compile Sources */ = {isa = PBXBuildFile; fileRef = A1479F94376F9732B57C69DB /* moc_animation.cpp */; settings = {ATTRIBUTES = (); }; }; CCA737EE379CDB10CC9A0F23 /* AVFoundation.framework in Link Binary With Libraries */ = {isa = PBXBuildFile; fileRef = 21F907AB8D19BD779147A085 /* AVFoundation.framework */; }; @@ -541,7 +539,6 @@ 206B4F5CBD5354BCE19FF32F /* countries.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = countries.h; path = SourceFiles/countries.h; sourceTree = ""; }; 2181F5E34DE0A4B2F811E2E2 /* moc_flatlabel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_flatlabel.cpp; path = GeneratedFiles/Debug/moc_flatlabel.cpp; sourceTree = ""; }; 21F907AB8D19BD779147A085 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = /System/Library/Frameworks/AVFoundation.framework; sourceTree = ""; }; - 220B97F8F62C720E6059A64B /* profilewidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = profilewidget.h; path = SourceFiles/profilewidget.h; sourceTree = ""; }; 24F7D3E789E91B10E422C116 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = SourceFiles/config.h; sourceTree = ""; }; 25CA12A22B83B0B038C5B5DE /* langloaderplain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = langloaderplain.h; path = SourceFiles/langloaderplain.h; sourceTree = ""; }; 26083D8E535AFF927591E1A5 /* moc_contactsbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_contactsbox.cpp; path = GeneratedFiles/Debug/moc_contactsbox.cpp; sourceTree = ""; }; @@ -568,7 +565,6 @@ 4604687EBA85611C9E8A9CDF /* button.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = button.h; path = SourceFiles/ui/button.h; sourceTree = ""; }; 46292F489228B60010794CE4 /* moc_button.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_button.cpp; path = GeneratedFiles/Debug/moc_button.cpp; sourceTree = ""; }; 4689C06178B60B84E7F3A3B7 /* Qt5Widgets */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = Qt5Widgets; path = "$(QT_PATH)/lib/libQt5Widgets$(QT_LIBRARY_SUFFIX).a"; sourceTree = ""; }; - 48003469151B9DDE82E851FB /* moc_profilewidget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_profilewidget.cpp; path = GeneratedFiles/Debug/moc_profilewidget.cpp; sourceTree = ""; }; 4AF15B5A0A43EB62D6DAF211 /* libexif.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libexif.a; path = "../../Libraries/libexif-0.6.20/libexif/.libs/libexif.a"; sourceTree = ""; }; 4D1099F2D3696E8A0E17D37D /* session.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = session.h; path = SourceFiles/mtproto/session.h; sourceTree = ""; }; 4D504A849F15EB58E53A4E5F /* title.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = title.h; path = SourceFiles/title.h; sourceTree = ""; }; @@ -684,7 +680,6 @@ CE0D5EFE401BF9815FACE579 /* pspecific_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pspecific_mac.h; path = SourceFiles/pspecific_mac.h; sourceTree = ""; }; CE7FFE194127BD789A2C877A /* moc_confirmbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_confirmbox.cpp; path = GeneratedFiles/Debug/moc_confirmbox.cpp; sourceTree = ""; }; CF1690B68F3B278E78823DB9 /* history.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = history.h; path = SourceFiles/history.h; sourceTree = ""; }; - CF32DF59C7823E4F3397EF3C /* profilewidget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profilewidget.cpp; path = SourceFiles/profilewidget.cpp; sourceTree = ""; }; D12A6BD8EE80B8B308E481AD /* moc_flattextarea.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_flattextarea.cpp; path = GeneratedFiles/Debug/moc_flattextarea.cpp; sourceTree = ""; }; D1C9C77F1318F5A55C9BF289 /* photosendbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = photosendbox.cpp; path = SourceFiles/boxes/photosendbox.cpp; sourceTree = ""; }; D3D1BE0BEA3AEE0551AD39AC /* qdds */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = qdds; path = "$(QT_PATH)/plugins/imageformats/libqdds$(QT_LIBRARY_SUFFIX).a"; sourceTree = ""; }; @@ -1171,8 +1166,6 @@ 07DE92A21AA4924400A18F6F /* passcodewidget.h */, 07B604301B46A0EC00CA29FE /* playerwidget.cpp */, 07B604311B46A0EC00CA29FE /* playerwidget.h */, - CF32DF59C7823E4F3397EF3C /* profilewidget.cpp */, - 220B97F8F62C720E6059A64B /* profilewidget.h */, 83728F60A64483E0AA933D76 /* pspecific.h */, F4EECA1187A744AEF5165243 /* pspecific_mac.cpp */, CE0D5EFE401BF9815FACE579 /* pspecific_mac.h */, @@ -1243,7 +1236,6 @@ 2C99425D7670941EAF07B453 /* moc_historywidget.cpp */, 1FE45A67215BEA2434F588E8 /* moc_layerwidget.cpp */, 07A6933419927B160099CB9F /* moc_mediaview.cpp */, - 48003469151B9DDE82E851FB /* moc_profilewidget.cpp */, 1D7899ACAA9F973CADFA34C1 /* moc_localimageloader.cpp */, 3A220FD1AE5AD9FE3DC073A4 /* moc_mainwidget.cpp */, 93AFE74928551FC3D7E8390B /* moc_settingswidget.cpp */, @@ -1637,7 +1629,6 @@ 078A2FCD1A811CA600CCC7A0 /* backgroundbox.cpp in Compile Sources */, 37A3C6C782A0E4BC7B09536B /* langloaderplain.cpp in Compile Sources */, 19A66ECD6EE2F8356F27D32D /* layerwidget.cpp in Compile Sources */, - 89ADB41E48A3B5E24ABB626C /* profilewidget.cpp in Compile Sources */, 48D8FC93AA8FF5D184649F49 /* localimageloader.cpp in Compile Sources */, 113AA97DEE7847C7D2DCFF71 /* logs.cpp in Compile Sources */, E3194392BD6D0726F75FA72E /* mainwidget.cpp in Compile Sources */, @@ -1726,7 +1717,6 @@ 4B0036C794BEA27AF9419768 /* moc_layerwidget.cpp in Compile Sources */, 07C8FE101CB80890007A8702 /* toast.cpp in Compile Sources */, 077A4AF71CA41C38002188D2 /* connection_abstract.cpp in Compile Sources */, - C14E6C902F6435B3149ECD64 /* moc_profilewidget.cpp in Compile Sources */, 071AD8F81C5E99D6008C9E90 /* ioapi.c in Compile Sources */, 074756191A1372C600CA07F7 /* moc_basic_types.cpp in Compile Sources */, 98E4F55DB5D8E64AB9F08C83 /* moc_localimageloader.cpp in Compile Sources */, diff --git a/Telegram/Telegram.xcodeproj/qt_preprocess.mak b/Telegram/Telegram.xcodeproj/qt_preprocess.mak index 8547fc00a..bc076d32f 100644 --- a/Telegram/Telegram.xcodeproj/qt_preprocess.mak +++ b/Telegram/Telegram.xcodeproj/qt_preprocess.mak @@ -354,9 +354,6 @@ GeneratedFiles/Debug/moc_overviewwidget.cpp: SourceFiles/overviewwidget.h GeneratedFiles/Debug/moc_playerwidget.cpp: SourceFiles/playerwidget.h $(MOC_FILE) SourceFiles/playerwidget.h -o GeneratedFiles/Debug/moc_playerwidget.cpp -GeneratedFiles/Debug/moc_profilewidget.cpp: SourceFiles/profilewidget.h - $(MOC_FILE) SourceFiles/profilewidget.h -o GeneratedFiles/Debug/moc_profilewidget.cpp - GeneratedFiles/Debug/moc_passcodewidget.cpp: SourceFiles/passcodewidget.h $(MOC_FILE) SourceFiles/passcodewidget.h -o GeneratedFiles/Debug/moc_passcodewidget.cpp