Layers show/hide rewritten, animated show over mainmenu and settings.

This commit is contained in:
John Preston 2016-11-18 16:34:58 +03:00
parent d0f7c6c210
commit 31a66d66e2
54 changed files with 584 additions and 824 deletions

View File

@ -315,10 +315,6 @@ searchedBarBG: #ebeef1;
searchedBarBorder: unreadBarBorder; searchedBarBorder: unreadBarBorder;
searchedBarColor: #a2aeb7; searchedBarColor: #a2aeb7;
layerSlideDuration: 200;
layerHideDuration: 200;
layerPadding: margins(10px, 10px, 10px, 10px);
simpleCloseIcon: icon {{ "simple_close", #c7c7c7 }}; simpleCloseIcon: icon {{ "simple_close", #c7c7c7 }};
simpleCloseIconOver: icon {{ "simple_close", #a3a3a3 }}; simpleCloseIconOver: icon {{ "simple_close", #a3a3a3 }};
dialogsForwardCancelIcon: icon {{ "simple_close", dialogsForwardFg }}; dialogsForwardCancelIcon: icon {{ "simple_close", dialogsForwardFg }};

View File

@ -834,7 +834,7 @@ void AppClass::cancelPhotoUpdate(const PeerId &peer) {
void AppClass::mtpPause() { void AppClass::mtpPause() {
MTP::pause(); MTP::pause();
_mtpUnpauseTimer.start(st::layerSlideDuration * 2); _mtpUnpauseTimer.start(st::slideDuration * 2);
} }
void AppClass::mtpUnpause() { void AppClass::mtpUnpause() {

View File

@ -49,14 +49,6 @@ AboutBox::AboutBox() : AbstractBox(st::aboutWidth)
setAcceptDrops(true); setAcceptDrops(true);
} }
void AboutBox::showAll() {
_version->show();
_text1->show();
_text2->show();
_text3->show();
_done->show();
}
void AboutBox::resizeEvent(QResizeEvent *e) { void AboutBox::resizeEvent(QResizeEvent *e) {
_version->moveToLeft(st::boxPadding.left(), titleHeight() + st::aboutVersionTop); _version->moveToLeft(st::boxPadding.left(), titleHeight() + st::aboutVersionTop);
_text1->moveToLeft(st::boxPadding.left(), titleHeight() + st::aboutTextTop); _text1->moveToLeft(st::boxPadding.left(), titleHeight() + st::aboutTextTop);

View File

@ -44,8 +44,6 @@ protected:
void dragEnterEvent(QDragEnterEvent *e) override; void dragEnterEvent(QDragEnterEvent *e) override;
void dropEvent(QDropEvent *e) override; void dropEvent(QDropEvent *e) override;
void showAll() override;
private: private:
ChildWidget<Ui::LinkButton> _version; ChildWidget<Ui::LinkButton> _version;
ChildWidget<Ui::FlatLabel> _text1; ChildWidget<Ui::FlatLabel> _text1;

View File

@ -36,7 +36,6 @@ AbstractBox::AbstractBox(int w) : LayerWidget(App::wnd()->bodyWidget()) {
void AbstractBox::prepare() { void AbstractBox::prepare() {
raiseShadow(); raiseShadow();
showAll();
} }
void AbstractBox::keyPressEvent(QKeyEvent *e) { void AbstractBox::keyPressEvent(QKeyEvent *e) {

View File

@ -35,9 +35,6 @@ class AbstractBox : public LayerWidget, protected base::Subscriber {
public: public:
AbstractBox(int w = 0); AbstractBox(int w = 0);
void parentResized() override; void parentResized() override;
void showDone() override {
showAll();
}
void setBlockTitle(bool block); void setBlockTitle(bool block);
void raiseShadow(); void raiseShadow();
@ -59,8 +56,6 @@ protected:
virtual void closePressed() { virtual void closePressed() {
} }
virtual void showAll() {
}
private: private:
int _maxHeight = 0; int _maxHeight = 0;

View File

@ -90,14 +90,6 @@ void AddContactBox::initBox() {
prepare(); prepare();
} }
void AddContactBox::showAll() {
_first->show();
_last->show();
_phone->show();
_save->show();
_cancel->show();
}
void AddContactBox::doSetInnerFocus() { void AddContactBox::doSetInnerFocus() {
if ((_first->getLastText().isEmpty() && _last->getLastText().isEmpty()) || !_phone->isEnabled()) { if ((_first->getLastText().isEmpty() && _last->getLastText().isEmpty()) || !_phone->isEnabled()) {
(_invertOrder ? _last : _first)->setFocus(); (_invertOrder ? _last : _first)->setFocus();
@ -230,10 +222,7 @@ void AddContactBox::onImportDone(const MTPcontacts_ImportedContacts &res) {
Notify::userIsContactChanged(user, true); Notify::userIsContactChanged(user, true);
Ui::hideLayer(); Ui::hideLayer();
} else { } else {
_save->hide(); hideChildren();
_first->hide();
_last->hide();
_phone->hide();
_retry->show(); _retry->show();
resizeEvent(0); resizeEvent(0);
update(); update();
@ -249,10 +238,9 @@ void AddContactBox::onSaveUserDone(const MTPcontacts_ImportedContacts &res) {
void AddContactBox::onRetry() { void AddContactBox::onRetry() {
_addRequest = 0; _addRequest = 0;
_contactId = 0; _contactId = 0;
_save->show(); showChildren();
_retry->hide(); _retry->hide();
resizeEvent(0); resizeEvent(0);
showAll();
_first->setText(QString()); _first->setText(QString());
_first->updatePlaceholder(); _first->updatePlaceholder();
_last->setText(QString()); _last->setText(QString());
@ -280,6 +268,7 @@ _creationRequestId(0), _createdChannel(0) {
_description->setMaxLength(MaxChannelDescription); _description->setMaxLength(MaxChannelDescription);
_description->resize(width() - st::boxPadding.left() - st::newGroupInfoPadding.left() - st::boxPadding.right(), _description->height()); _description->resize(width() - st::boxPadding.left() - st::newGroupInfoPadding.left() - st::boxPadding.right(), _description->height());
_description->setVisible(_creating == CreatingGroupChannel);
updateMaxHeight(); updateMaxHeight();
connect(_description, SIGNAL(resized()), this, SLOT(onDescriptionResized())); connect(_description, SIGNAL(resized()), this, SLOT(onDescriptionResized()));
@ -298,17 +287,6 @@ _creationRequestId(0), _createdChannel(0) {
prepare(); prepare();
} }
void GroupInfoBox::showAll() {
_title->show();
if (_creating == CreatingGroupChannel) {
_description->show();
} else {
_description->hide();
}
_cancel->show();
_next->show();
}
void GroupInfoBox::doSetInnerFocus() { void GroupInfoBox::doSetInnerFocus() {
_title->setFocus(); _title->setFocus();
} }
@ -554,6 +532,7 @@ SetupChannelBox::SetupChannelBox(ChannelData *channel, bool existing) : Abstract
connect(_skip, SIGNAL(clicked()), this, SLOT(onClose())); connect(_skip, SIGNAL(clicked()), this, SLOT(onClose()));
connect(_link, SIGNAL(changed()), this, SLOT(onChange())); connect(_link, SIGNAL(changed()), this, SLOT(onChange()));
_link->setVisible(_public->checked());
_checkTimer.setSingleShot(true); _checkTimer.setSingleShot(true);
connect(&_checkTimer, SIGNAL(timeout()), this, SLOT(onCheck())); connect(&_checkTimer, SIGNAL(timeout()), this, SLOT(onCheck()));
@ -564,18 +543,6 @@ SetupChannelBox::SetupChannelBox(ChannelData *channel, bool existing) : Abstract
prepare(); prepare();
} }
void SetupChannelBox::showAll() {
_public->show();
_private->show();
if (_public->checked()) {
_link->show();
} else {
_link->hide();
}
_save->show();
_skip->show();
}
void SetupChannelBox::doSetInnerFocus() { void SetupChannelBox::doSetInnerFocus() {
if (_link->isHidden()) { if (_link->isHidden()) {
setFocus(); setFocus();
@ -937,21 +904,11 @@ _invertOrder(!peer->isChat() && langFirstNameGoesSecond()) {
connect(_first, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); connect(_first, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
connect(_last, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); connect(_last, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
_last->setVisible(!_peer->isChat());
prepare(); prepare();
} }
void EditNameTitleBox::showAll() {
_first->show();
if (_peer->isChat()) {
_last->hide();
} else {
_last->show();
}
_save->show();
_cancel->show();
}
void EditNameTitleBox::doSetInnerFocus() { void EditNameTitleBox::doSetInnerFocus() {
(_invertOrder ? _last : _first)->setFocus(); (_invertOrder ? _last : _first)->setFocus();
} }
@ -1109,27 +1066,12 @@ EditChannelBox::EditChannelBox(ChannelData *channel) : AbstractBox()
connect(_cancel, SIGNAL(clicked()), this, SLOT(onClose())); connect(_cancel, SIGNAL(clicked()), this, SLOT(onClose()));
connect(_publicLink, SIGNAL(clicked()), this, SLOT(onPublicLink())); connect(_publicLink, SIGNAL(clicked()), this, SLOT(onPublicLink()));
_publicLink->setVisible(_channel->canEditUsername());
_sign->setVisible(!_channel->isMegagroup());
prepare(); prepare();
} }
void EditChannelBox::showAll() {
_title->show();
_description->show();
_save->show();
_cancel->show();
if (_channel->canEditUsername()) {
_publicLink->show();
} else {
_publicLink->hide();
}
if (_channel->isMegagroup()) {
_sign->hide();
} else {
_sign->show();
}
}
void EditChannelBox::doSetInnerFocus() { void EditChannelBox::doSetInnerFocus() {
_title->setFocus(); _title->setFocus();
} }

View File

@ -53,7 +53,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -104,7 +103,6 @@ protected:
void mousePressEvent(QMouseEvent *e) override; void mousePressEvent(QMouseEvent *e) override;
void leaveEvent(QEvent *e) override; void leaveEvent(QEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -165,7 +163,6 @@ protected:
void leaveEvent(QEvent *e) override; void leaveEvent(QEvent *e) override;
void closePressed() override; void closePressed() override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -226,7 +223,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -270,7 +266,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -55,13 +55,6 @@ _close(this, lang(lng_box_ok), st::defaultBoxButton) {
prepare(); prepare();
} }
void AutoLockBox::showAll() {
_close->show();
for (int32 i = 0, l = _options.size(); i < l; ++i) {
_options[i]->show();
}
}
void AutoLockBox::paintEvent(QPaintEvent *e) { void AutoLockBox::paintEvent(QPaintEvent *e) {
Painter p(this); Painter p(this);
if (paint(p)) return; if (paint(p)) return;

View File

@ -39,8 +39,6 @@ public slots:
protected: protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void showAll() override;
private: private:
QVector<Ui::Radiobutton*> _options; QVector<Ui::Radiobutton*> _options;
ChildWidget<Ui::RoundButton> _close; ChildWidget<Ui::RoundButton> _close;

View File

@ -23,6 +23,8 @@ using "basic.style";
using "ui/widgets/widgets.style"; using "ui/widgets/widgets.style";
using "intro/intro.style"; using "intro/intro.style";
boxDuration: 200;
boxButtonFont: font(boxFontSize semibold); boxButtonFont: font(boxFontSize semibold);
defaultBoxButton: RoundButton { defaultBoxButton: RoundButton {
textFg: #2f9fea; textFg: #2f9fea;
@ -297,15 +299,8 @@ contactsMultiSelect: MultiSelect {
fieldIcon: boxFieldSearchIcon; fieldIcon: boxFieldSearchIcon;
fieldIconSkip: 36px; fieldIconSkip: 36px;
fieldCancel: IconButton { fieldCancel: boxBlockTitleClose;
width: 41px; fieldCancelSkip: 40px;
height: 48px;
icon: boxSearchCancelIcon;
iconOver: boxSearchCancelIconOver;
iconPosition: point(8px, 18px);
}
fieldCancelSkip: 34px;
} }
contactsPhotoCheckbox: RoundImageCheckbox { contactsPhotoCheckbox: RoundImageCheckbox {
imageRadius: 21px; imageRadius: 21px;

View File

@ -145,15 +145,6 @@ void ConfirmBox::closePressed() {
emit cancelled(); emit cancelled();
} }
void ConfirmBox::showAll() {
if (_informative) {
_confirm->show();
} else {
_confirm->show();
_cancel->show();
}
}
void ConfirmBox::keyPressEvent(QKeyEvent *e) { void ConfirmBox::keyPressEvent(QKeyEvent *e) {
if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) { if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
onConfirmPressed(); onConfirmPressed();
@ -269,10 +260,6 @@ void MaxInviteBox::step_good(float64 ms, bool timer) {
if (timer) update(); if (timer) update();
} }
void MaxInviteBox::showAll() {
_close->show();
}
void MaxInviteBox::paintEvent(QPaintEvent *e) { void MaxInviteBox::paintEvent(QPaintEvent *e) {
Painter p(this); Painter p(this);
if (paint(p)) return; if (paint(p)) return;
@ -362,11 +349,6 @@ bool ConvertToSupergroupBox::convertFail(const RPCError &error) {
return true; return true;
} }
void ConvertToSupergroupBox::showAll() {
_convert->show();
_cancel->show();
}
void ConvertToSupergroupBox::keyPressEvent(QKeyEvent *e) { void ConvertToSupergroupBox::keyPressEvent(QKeyEvent *e) {
if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) { if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
onConvert(); onConvert();
@ -427,13 +409,6 @@ void PinMessageBox::onPin() {
_requestId = MTP::send(MTPchannels_UpdatePinnedMessage(MTP_flags(flags), _channel->inputChannel, MTP_int(_msgId)), rpcDone(&PinMessageBox::pinDone), rpcFail(&PinMessageBox::pinFail)); _requestId = MTP::send(MTPchannels_UpdatePinnedMessage(MTP_flags(flags), _channel->inputChannel, MTP_int(_msgId)), rpcDone(&PinMessageBox::pinDone), rpcFail(&PinMessageBox::pinFail));
} }
void PinMessageBox::showAll() {
_text->show();
_notify->show();
_pin->show();
_cancel->show();
}
void PinMessageBox::pinDone(const MTPUpdates &updates) { void PinMessageBox::pinDone(const MTPUpdates &updates) {
if (App::main()) { if (App::main()) {
App::main()->sentUpdatesReceived(updates); App::main()->sentUpdatesReceived(updates);
@ -499,15 +474,6 @@ void RichDeleteMessageBox::onDelete() {
Ui::hideLayer(); Ui::hideLayer();
} }
void RichDeleteMessageBox::showAll() {
_text->show();
_banUser->show();
_reportSpam->show();
_deleteAll->show();
_delete->show();
_cancel->show();
}
KickMemberBox::KickMemberBox(PeerData *chat, UserData *member) KickMemberBox::KickMemberBox(PeerData *chat, UserData *member)
: ConfirmBox(lng_profile_sure_kick(lt_user, member->firstName), lang(lng_box_remove)) : ConfirmBox(lng_profile_sure_kick(lt_user, member->firstName), lang(lng_box_remove))
, _chat(chat) , _chat(chat)
@ -599,7 +565,3 @@ void ConfirmInviteBox::paintEvent(QPaintEvent *e) {
left += _userWidth; left += _userWidth;
} }
} }
void ConfirmInviteBox::showAll() {
showChildren();
}

View File

@ -69,7 +69,6 @@ protected:
void leaveEvent(QEvent *e) override; void leaveEvent(QEvent *e) override;
void closePressed() override; void closePressed() override;
void showAll() override;
private slots: private slots:
void onConfirmPressed(); void onConfirmPressed();
@ -163,8 +162,6 @@ protected:
void mousePressEvent(QMouseEvent *e) override; void mousePressEvent(QMouseEvent *e) override;
void leaveEvent(QEvent *e) override; void leaveEvent(QEvent *e) override;
void showAll() override;
private: private:
void updateSelected(const QPoint &cursorGlobalPosition); void updateSelected(const QPoint &cursorGlobalPosition);
void step_good(float64 ms, bool timer); void step_good(float64 ms, bool timer);
@ -200,8 +197,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
void convertDone(const MTPUpdates &updates); void convertDone(const MTPUpdates &updates);
bool convertFail(const RPCError &error); bool convertFail(const RPCError &error);
@ -227,8 +222,6 @@ public slots:
protected: protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
void pinDone(const MTPUpdates &updates); void pinDone(const MTPUpdates &updates);
bool pinFail(const RPCError &error); bool pinFail(const RPCError &error);
@ -258,8 +251,6 @@ public slots:
protected: protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
ChannelData *_channel; ChannelData *_channel;
UserData *_from; UserData *_from;
@ -300,8 +291,6 @@ protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void showAll() override;
private: private:
ChildWidget<Ui::FlatLabel> _title; ChildWidget<Ui::FlatLabel> _title;
ChildWidget<Ui::FlatLabel> _status; ChildWidget<Ui::FlatLabel> _status;

View File

@ -123,6 +123,7 @@ void ConfirmPhoneBox::launch() {
connect(&_callTimer, SIGNAL(timeout()), this, SLOT(onCallStatusTimer())); connect(&_callTimer, SIGNAL(timeout()), this, SLOT(onCallStatusTimer()));
showChildren();
prepare(); prepare();
Ui::showLayer(this); Ui::showLayer(this);

View File

@ -44,9 +44,6 @@ private slots:
protected: protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override {
showChildren();
}
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -55,15 +55,12 @@ ConnectionBox::ConnectionBox() : AbstractBox(st::boxWidth)
connect(_userInput, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); connect(_userInput, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
connect(_passwordInput, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); connect(_passwordInput, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
updateControlsVisibility();
prepare(); prepare();
} }
void ConnectionBox::showAll() { void ConnectionBox::updateControlsVisibility() {
_autoRadio->show();
_httpProxyRadio->show();
_tcpProxyRadio->show();
_tryIPv6->show();
int32 h = titleHeight() + st::boxOptionListPadding.top() + _autoRadio->height() + st::boxOptionListPadding.top() + _httpProxyRadio->height() + st::boxOptionListPadding.top() + _tcpProxyRadio->height() + st::boxOptionListPadding.top() + st::connectionIPv6Skip + _tryIPv6->height() + st::boxOptionListPadding.bottom() + st::boxPadding.bottom() + st::boxButtonPadding.top() + _save->height() + st::boxButtonPadding.bottom(); int32 h = titleHeight() + st::boxOptionListPadding.top() + _autoRadio->height() + st::boxOptionListPadding.top() + _httpProxyRadio->height() + st::boxOptionListPadding.top() + _tcpProxyRadio->height() + st::boxOptionListPadding.top() + st::connectionIPv6Skip + _tryIPv6->height() + st::boxOptionListPadding.bottom() + st::boxPadding.bottom() + st::boxButtonPadding.top() + _save->height() + st::boxButtonPadding.bottom();
if (_httpProxyRadio->checked() || _tcpProxyRadio->checked()) { if (_httpProxyRadio->checked() || _tcpProxyRadio->checked()) {
h += 2 * st::boxOptionListPadding.top() + 2 * _hostInput->height(); h += 2 * st::boxOptionListPadding.top() + 2 * _hostInput->height();
@ -78,9 +75,6 @@ void ConnectionBox::showAll() {
_passwordInput->hide(); _passwordInput->hide();
} }
_save->show();
_cancel->show();
setMaxHeight(h); setMaxHeight(h);
resizeEvent(0); resizeEvent(0);
} }
@ -130,7 +124,7 @@ void ConnectionBox::resizeEvent(QResizeEvent *e) {
} }
void ConnectionBox::onChange() { void ConnectionBox::onChange() {
showAll(); updateControlsVisibility();
if (_httpProxyRadio->checked() || _tcpProxyRadio->checked()) { if (_httpProxyRadio->checked() || _tcpProxyRadio->checked()) {
_hostInput->setFocus(); _hostInput->setFocus();
if (_httpProxyRadio->checked() && !_portInput->getLastText().toInt()) { if (_httpProxyRadio->checked() && !_portInput->getLastText().toInt()) {
@ -235,19 +229,6 @@ AutoDownloadBox::AutoDownloadBox() : AbstractBox(st::boxWidth)
prepare(); prepare();
} }
void AutoDownloadBox::showAll() {
_photoPrivate->show();
_photoGroups->show();
_audioPrivate->show();
_audioGroups->show();
_gifPrivate->show();
_gifGroups->show();
_gifPlay->show();
_save->show();
_cancel->show();
}
void AutoDownloadBox::paintEvent(QPaintEvent *e) { void AutoDownloadBox::paintEvent(QPaintEvent *e) {
Painter p(this); Painter p(this);
if (paint(p)) return; if (paint(p)) return;

View File

@ -46,10 +46,11 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
void updateControlsVisibility();
ChildWidget<Ui::InputField> _hostInput; ChildWidget<Ui::InputField> _hostInput;
ChildWidget<Ui::PortInput> _portInput; ChildWidget<Ui::PortInput> _portInput;
ChildWidget<Ui::InputField> _userInput; ChildWidget<Ui::InputField> _userInput;
@ -77,8 +78,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
ChildWidget<Ui::Checkbox> _photoPrivate; ChildWidget<Ui::Checkbox> _photoPrivate;
ChildWidget<Ui::Checkbox> _photoGroups; ChildWidget<Ui::Checkbox> _photoGroups;

View File

@ -134,7 +134,11 @@ void ContactsBox::init() {
} }
updateScrollSkips(); updateScrollSkips();
}); });
if (_inner->chat() && _inner->membersFilter() == MembersFilter::Admins && _inner->allAdmins()) {
_select->hideFast();
} else {
_select->showFast();
}
if (_inner->channel() && _inner->membersFilter() == MembersFilter::Admins) { if (_inner->channel() && _inner->membersFilter() == MembersFilter::Admins) {
_next->hide(); _next->hide();
_cancel->hide(); _cancel->hide();
@ -239,30 +243,6 @@ bool ContactsBox::peopleFailed(const RPCError &error, mtpRequestId req) {
return true; return true;
} }
void ContactsBox::showAll() {
if (_inner->chat() && _inner->membersFilter() == MembersFilter::Admins && _inner->allAdmins()) {
_select->hideFast();
} else {
_select->showFast();
}
if (_inner->channel() && _inner->membersFilter() == MembersFilter::Admins) {
_next->hide();
_cancel->hide();
} else if (_inner->chat() || _inner->channel()) {
_next->show();
_cancel->show();
} else if (_inner->creating() != CreatingGroupNone) {
_next->show();
_cancel->show();
} else {
_next->hide();
_cancel->hide();
}
_topShadow->show();
if (_bottomShadow) _bottomShadow->show();
ItemListBox::showAll();
}
void ContactsBox::doSetInnerFocus() { void ContactsBox::doSetInnerFocus() {
if (_select->isHidden()) { if (_select->isHidden()) {
_inner->setFocus(); _inner->setFocus();

View File

@ -79,7 +79,6 @@ protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void closePressed() override; void closePressed() override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -50,22 +50,13 @@ DownloadPathBox::DownloadPathBox() : AbstractBox()
if (!_path.isEmpty() && _path != qsl("tmp")) { if (!_path.isEmpty() && _path != qsl("tmp")) {
setPathText(QDir::toNativeSeparators(_path)); setPathText(QDir::toNativeSeparators(_path));
} }
updateControlsVisibility();
prepare(); prepare();
} }
void DownloadPathBox::showAll() { void DownloadPathBox::updateControlsVisibility() {
_default->show(); _pathLink->setVisible(_dir->checked());
_temp->show();
_dir->show();
if (_dir->checked()) {
_pathLink->show();
} else {
_pathLink->hide();
}
_save->show();
_cancel->show();
int32 h = titleHeight() + st::boxOptionListPadding.top() + _default->height() + st::boxOptionListPadding.top() + _temp->height() + st::boxOptionListPadding.top() + _dir->height(); int32 h = titleHeight() + st::boxOptionListPadding.top() + _default->height() + st::boxOptionListPadding.top() + _temp->height() + st::boxOptionListPadding.top() + _dir->height();
if (_dir->checked()) h += st::downloadPathSkip + _pathLink->height(); if (_dir->checked()) h += st::downloadPathSkip + _pathLink->height();
@ -111,7 +102,7 @@ void DownloadPathBox::onChange() {
} else { } else {
_path = QString(); _path = QString();
} }
showAll(); updateControlsVisibility();
update(); update();
} }

View File

@ -44,9 +44,8 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
void updateControlsVisibility();
void setPathText(const QString &text); void setPathText(const QString &text);
QString _path; QString _path;

View File

@ -66,13 +66,6 @@ _close(this, lang(lng_box_ok), st::defaultBoxButton) {
prepare(); prepare();
} }
void LanguageBox::showAll() {
_close->show();
for (int32 i = 0, l = _langs.size(); i < l; ++i) {
_langs[i]->show();
}
}
void LanguageBox::mousePressEvent(QMouseEvent *e) { void LanguageBox::mousePressEvent(QMouseEvent *e) {
if ((e->modifiers() & Qt::CTRL) && (e->modifiers() & Qt::ALT) && (e->modifiers() & Qt::SHIFT)) { if ((e->modifiers() & Qt::CTRL) && (e->modifiers() & Qt::ALT) && (e->modifiers() & Qt::SHIFT)) {
for (int32 i = 1; i < languageCount; ++i) { for (int32 i = 1; i < languageCount; ++i) {

View File

@ -42,8 +42,6 @@ protected:
void mousePressEvent(QMouseEvent *e) override; void mousePressEvent(QMouseEvent *e) override;
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void showAll() override;
private: private:
QVector<Ui::Radiobutton*> _langs; QVector<Ui::Radiobutton*> _langs;
ChildWidget<Ui::RoundButton> _close; ChildWidget<Ui::RoundButton> _close;

View File

@ -38,6 +38,8 @@ LocalStorageBox::LocalStorageBox() : AbstractBox()
subscribe(FileDownload::ImageLoaded(), [this] { update(); }); subscribe(FileDownload::ImageLoaded(), [this] { update(); });
updateControls();
checkLocalStoredCounts(); checkLocalStoredCounts();
prepare(); prepare();
} }
@ -56,11 +58,6 @@ void LocalStorageBox::updateControls() {
update(); update();
} }
void LocalStorageBox::showAll() {
showChildren();
_clear->setVisible(_imagesCount > 0 || _audiosCount > 0);
}
void LocalStorageBox::checkLocalStoredCounts() { void LocalStorageBox::checkLocalStoredCounts() {
int imagesCount = Local::hasImages() + Local::hasStickers() + Local::hasWebFiles(); int imagesCount = Local::hasImages() + Local::hasStickers() + Local::hasWebFiles();
int audiosCount = Local::hasAudios(); int audiosCount = Local::hasAudios();

View File

@ -41,8 +41,6 @@ private slots:
protected: protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void showAll() override;
private: private:
void updateControls(); void updateControls();
void checkLocalStoredCounts(); void checkLocalStoredCounts();

View File

@ -30,13 +30,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
#include "ui/widgets/input_fields.h" #include "ui/widgets/input_fields.h"
PasscodeBox::PasscodeBox(bool turningOff) : AbstractBox(st::boxWidth) PasscodeBox::PasscodeBox(bool turningOff) : AbstractBox(st::boxWidth)
, _replacedBy(0)
, _turningOff(turningOff) , _turningOff(turningOff)
, _cloudPwd(false)
, _setRequest(0)
, _hasRecovery(false)
, _skipEmailWarning(false)
, _aboutHeight(0)
, _about(st::boxWidth - st::boxPadding.left() * 1.5) , _about(st::boxWidth - st::boxPadding.left() * 1.5)
, _saveButton(this, lang(_turningOff ? lng_passcode_remove_button : lng_settings_save), st::defaultBoxButton) , _saveButton(this, lang(_turningOff ? lng_passcode_remove_button : lng_settings_save), st::defaultBoxButton)
, _cancelButton(this, lang(lng_cancel), st::cancelBoxButton) , _cancelButton(this, lang(lng_cancel), st::cancelBoxButton)
@ -47,19 +41,14 @@ PasscodeBox::PasscodeBox(bool turningOff) : AbstractBox(st::boxWidth)
, _recoverEmail(this, st::defaultInputField, lang(lng_cloud_password_email)) , _recoverEmail(this, st::defaultInputField, lang(lng_cloud_password_email))
, _recover(this, lang(lng_signin_recover)) { , _recover(this, lang(lng_signin_recover)) {
init(); init();
prepare();
} }
PasscodeBox::PasscodeBox(const QByteArray &newSalt, const QByteArray &curSalt, bool hasRecovery, const QString &hint, bool turningOff) : AbstractBox(st::boxWidth) PasscodeBox::PasscodeBox(const QByteArray &newSalt, const QByteArray &curSalt, bool hasRecovery, const QString &hint, bool turningOff) : AbstractBox(st::boxWidth)
, _replacedBy(0)
, _turningOff(turningOff) , _turningOff(turningOff)
, _cloudPwd(true) , _cloudPwd(true)
, _setRequest(0)
, _newSalt(newSalt) , _newSalt(newSalt)
, _curSalt(curSalt) , _curSalt(curSalt)
, _hasRecovery(hasRecovery) , _hasRecovery(hasRecovery)
, _skipEmailWarning(false)
, _aboutHeight(0)
, _about(st::boxWidth - st::boxPadding.left() * 1.5) , _about(st::boxWidth - st::boxPadding.left() * 1.5)
, _saveButton(this, lang(_turningOff ? lng_passcode_remove_button : lng_settings_save), st::defaultBoxButton) , _saveButton(this, lang(_turningOff ? lng_passcode_remove_button : lng_settings_save), st::defaultBoxButton)
, _cancelButton(this, lang(lng_cancel), st::cancelBoxButton) , _cancelButton(this, lang(lng_cancel), st::cancelBoxButton)
@ -72,8 +61,8 @@ PasscodeBox::PasscodeBox(const QByteArray &newSalt, const QByteArray &curSalt, b
textstyleSet(&st::usernameTextStyle); textstyleSet(&st::usernameTextStyle);
if (!hint.isEmpty()) _hintText.setText(st::normalFont, lng_signin_hint(lt_password_hint, hint)); if (!hint.isEmpty()) _hintText.setText(st::normalFont, lng_signin_hint(lt_password_hint, hint));
textstyleRestore(); textstyleRestore();
init(); init();
prepare();
} }
void PasscodeBox::init() { void PasscodeBox::init() {
@ -116,49 +105,16 @@ void PasscodeBox::init() {
connect(_recoverEmail, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); connect(_recoverEmail, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
connect(_recover, SIGNAL(clicked()), this, SLOT(onRecoverByEmail())); connect(_recover, SIGNAL(clicked()), this, SLOT(onRecoverByEmail()));
}
void PasscodeBox::showAll() {
bool has = _cloudPwd ? (!_curSalt.isEmpty()) : Global::LocalPasscode(); bool has = _cloudPwd ? (!_curSalt.isEmpty()) : Global::LocalPasscode();
if (_turningOff) { _oldPasscode->setVisible(_turningOff || has);
_oldPasscode->show(); _recover->setVisible((_turningOff || has) && _cloudPwd && _hasRecovery);
if (_cloudPwd && _hasRecovery) { _newPasscode->setVisible(!_turningOff);
_recover->show(); _reenterPasscode->setVisible(!_turningOff);
} else { _passwordHint->setVisible(!_turningOff && _cloudPwd);
_recover->hide(); _recoverEmail->setVisible(!_turningOff && _cloudPwd && _curSalt.isEmpty());
}
_newPasscode->hide(); prepare();
_reenterPasscode->hide();
_passwordHint->hide();
_recoverEmail->hide();
} else {
if (has) {
_oldPasscode->show();
if (_cloudPwd && _hasRecovery) {
_recover->show();
} else {
_recover->hide();
}
} else {
_oldPasscode->hide();
_recover->hide();
}
_newPasscode->show();
_reenterPasscode->show();
if (_cloudPwd) {
_passwordHint->show();
} else {
_passwordHint->hide();
}
if (_cloudPwd && _curSalt.isEmpty()) {
_recoverEmail->show();
} else {
_recoverEmail->hide();
}
}
_saveButton->show();
_cancelButton->show();
AbstractBox::showAll();
} }
void PasscodeBox::onSubmit() { void PasscodeBox::onSubmit() {
@ -511,13 +467,6 @@ RecoverBox::RecoverBox(const QString &pattern) : AbstractBox(st::boxWidth)
prepare(); prepare();
} }
void RecoverBox::showAll() {
_recoverCode->show();
_saveButton->show();
_cancelButton->show();
AbstractBox::showAll();
}
void RecoverBox::paintEvent(QPaintEvent *e) { void RecoverBox::paintEvent(QPaintEvent *e) {
Painter p(this); Painter p(this);
if (paint(p)) return; if (paint(p)) return;

View File

@ -54,7 +54,6 @@ signals:
protected: protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -69,14 +68,16 @@ private:
void recover(); void recover();
QString _pattern; QString _pattern;
AbstractBox *_replacedBy; AbstractBox *_replacedBy = nullptr;
bool _turningOff, _cloudPwd; bool _turningOff = false;
mtpRequestId _setRequest; bool _cloudPwd = false;
mtpRequestId _setRequest = 0;
QByteArray _newSalt, _curSalt; QByteArray _newSalt, _curSalt;
bool _hasRecovery, _skipEmailWarning = false; bool _hasRecovery = false;
bool _skipEmailWarning = false;
int32 _aboutHeight; int _aboutHeight = 0;
QString _boxTitle; QString _boxTitle;
Text _about, _hintText; Text _about, _hintText;
@ -112,7 +113,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -304,8 +304,3 @@ void PhotoCropBox::onSend() {
void PhotoCropBox::onReady(const QImage &tosend) { void PhotoCropBox::onReady(const QImage &tosend) {
App::app()->uploadProfilePhoto(tosend, _peerId); App::app()->uploadProfilePhoto(tosend, _peerId);
} }
void PhotoCropBox::showAll() {
_done->show();
_cancel->show();
}

View File

@ -50,8 +50,6 @@ protected:
void mouseReleaseEvent(QMouseEvent *e) override; void mouseReleaseEvent(QMouseEvent *e) override;
void mouseMoveEvent(QMouseEvent *e) override; void mouseMoveEvent(QMouseEvent *e) override;
void showAll() override;
private: private:
void init(const QImage &img, PeerData *peer); void init(const QImage &img, PeerData *peer);

View File

@ -137,6 +137,7 @@ PhotoSendBox::PhotoSendBox(const FileLoadResultPtr &file) : AbstractBox(st::boxW
_statusw = qMax(_name.maxWidth(), st::normalFont->width(_status)); _statusw = qMax(_name.maxWidth(), st::normalFont->width(_status));
_isImage = fileIsImage(_file->filename, _file->filemime); _isImage = fileIsImage(_file->filename, _file->filemime);
} }
if (_file->type != PreparePhoto) { if (_file->type != PreparePhoto) {
_compressed->hide(); _compressed->hide();
} }
@ -172,6 +173,7 @@ PhotoSendBox::PhotoSendBox(const QString &phone, const QString &fname, const QSt
connect(_cancel, SIGNAL(clicked()), this, SLOT(onClose())); connect(_cancel, SIGNAL(clicked()), this, SLOT(onClose()));
_compressed->hide(); _compressed->hide();
_caption->hide();
_name.setText(st::semiboldFont, lng_full_name(lt_first_name, _fname, lt_last_name, _lname), _textNameOptions); _name.setText(st::semiboldFont, lng_full_name(lt_first_name, _fname, lt_last_name, _lname), _textNameOptions);
_status = _phone; _status = _phone;
@ -182,7 +184,6 @@ PhotoSendBox::PhotoSendBox(const QString &phone, const QString &fname, const QSt
} }
void PhotoSendBox::onCompressedChange() { void PhotoSendBox::onCompressedChange() {
showAll();
if (_caption->isHidden()) { if (_caption->isHidden()) {
setFocus(); setFocus();
} else { } else {
@ -313,20 +314,6 @@ void PhotoSendBox::closePressed() {
} }
} }
void PhotoSendBox::showAll() {
_send->show();
_cancel->show();
if (_file) {
if (_file->type == PreparePhoto) {
_compressed->show();
}
_caption->show();
} else {
_caption->hide();
_compressed->hide();
}
}
void PhotoSendBox::doSetInnerFocus() { void PhotoSendBox::doSetInnerFocus() {
if (_caption->isHidden()) { if (_caption->isHidden()) {
setFocus(); setFocus();
@ -630,12 +617,6 @@ void EditCaptionBox::resizeEvent(QResizeEvent *e) {
AbstractBox::resizeEvent(e); AbstractBox::resizeEvent(e);
} }
void EditCaptionBox::showAll() {
_save->show();
_cancel->show();
_field->show();
}
void EditCaptionBox::doSetInnerFocus() { void EditCaptionBox::doSetInnerFocus() {
_field->setFocus(); _field->setFocus();
} }

View File

@ -47,7 +47,6 @@ protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void closePressed() override; void closePressed() override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:
@ -95,7 +94,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -43,9 +43,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override {
showChildren();
}
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -32,7 +32,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
#include "styles/style_boxes.h" #include "styles/style_boxes.h"
SessionsBox::SessionsBox() : ScrollableBox(st::sessionsScroll) SessionsBox::SessionsBox() : ScrollableBox(st::sessionsScroll)
, _loading(true) , _loading(false)
, _inner(this, &_list, &_current) , _inner(this, &_list, &_current)
, _shadow(this) , _shadow(this)
, _done(this, lang(lng_about_done), st::defaultBoxButton) , _done(this, lang(lng_about_done), st::defaultBoxButton)
@ -49,27 +49,25 @@ SessionsBox::SessionsBox() : ScrollableBox(st::sessionsScroll)
init(_inner, st::boxButtonPadding.bottom() + _done->height() + st::boxButtonPadding.top(), titleHeight()); init(_inner, st::boxButtonPadding.bottom() + _done->height() + st::boxButtonPadding.top(), titleHeight());
_inner->resize(width(), st::noContactsHeight); _inner->resize(width(), st::noContactsHeight);
setLoading(true);
prepare(); prepare();
MTP::send(MTPaccount_GetAuthorizations(), rpcDone(&SessionsBox::gotAuthorizations)); MTP::send(MTPaccount_GetAuthorizations(), rpcDone(&SessionsBox::gotAuthorizations));
} }
void SessionsBox::resizeEvent(QResizeEvent *e) { void SessionsBox::setLoading(bool loading) {
ScrollableBox::resizeEvent(e); if (_loading != loading) {
_shadow.setGeometry(0, height() - st::boxButtonPadding.bottom() - _done->height() - st::boxButtonPadding.top() - st::lineWidth, width(), st::lineWidth); _loading = loading;
_done->moveToRight(st::boxButtonPadding.right(), height() - st::boxButtonPadding.bottom() - _done->height()); scrollArea()->setVisible(!_loading);
_shadow->setVisible(!_loading);
}
} }
void SessionsBox::showAll() { void SessionsBox::resizeEvent(QResizeEvent *e) {
_done->show(); ScrollableBox::resizeEvent(e);
if (_loading) { _shadow->setGeometry(0, height() - st::boxButtonPadding.bottom() - _done->height() - st::boxButtonPadding.top() - st::lineWidth, width(), st::lineWidth);
scrollArea()->hide(); _done->moveToRight(st::boxButtonPadding.right(), height() - st::boxButtonPadding.bottom() - _done->height());
_shadow.hide();
} else {
scrollArea()->show();
_shadow.show();
}
ScrollableBox::showAll();
} }
void SessionsBox::paintEvent(QPaintEvent *e) { void SessionsBox::paintEvent(QPaintEvent *e) {
@ -80,28 +78,33 @@ void SessionsBox::paintEvent(QPaintEvent *e) {
p.translate(0, titleHeight()); p.translate(0, titleHeight());
if (_loading) { if (_loading) {
p.setFont(st::noContactsFont->f); p.setFont(st::noContactsFont);
p.setPen(st::noContactsColor->p); p.setPen(st::noContactsColor);
p.drawText(QRect(0, 0, width(), st::noContactsHeight), lang(lng_contacts_loading), style::al_center); p.drawText(QRect(0, 0, width(), st::noContactsHeight), lang(lng_contacts_loading), style::al_center);
} }
} }
void SessionsBox::gotAuthorizations(const MTPaccount_Authorizations &result) { void SessionsBox::gotAuthorizations(const MTPaccount_Authorizations &result) {
_loading = false;
_shortPollRequest = 0; _shortPollRequest = 0;
setLoading(false);
int32 availCurrent = st::boxWideWidth - st::sessionPadding.left() - st::sessionTerminateSkip; auto availCurrent = st::boxWideWidth - st::sessionPadding.left() - st::sessionTerminateSkip;
int32 availOther = availCurrent - st::sessionTerminate.iconPosition.x();// -st::sessionTerminate.width - st::sessionTerminateSkip; auto availOther = availCurrent - st::sessionTerminate.iconPosition.x();// -st::sessionTerminate.width - st::sessionTerminateSkip;
_list.clear(); _list.clear();
const auto &v(result.c_account_authorizations().vauthorizations.c_vector().v); if (result.type() != mtpc_account_authorizations) {
int32 l = v.size(); return;
if (l > 1) _list.reserve(l - 1); }
auto &v = result.c_account_authorizations().vauthorizations.c_vector().v;
_list.reserve(v.size());
const CountriesByISO2 &countries(countriesByISO2()); const CountriesByISO2 &countries(countriesByISO2());
for (int32 i = 0; i < l; ++i) { for_const (auto &auth, v) {
const auto &d(v.at(i).c_authorization()); if (auth.type() != mtpc_authorization) {
continue;
}
auto &d = auth.c_authorization();
Data data; Data data;
data.hash = d.vhash.v; data.hash = d.vhash.v;
@ -195,30 +198,20 @@ void SessionsBox::gotAuthorizations(const MTPaccount_Authorizations &result) {
} }
} }
_inner->listUpdated(); _inner->listUpdated();
if (!_done->isHidden()) {
showAll(); update();
update();
}
_shortPollTimer.start(SessionsShortPollTimeout); _shortPollTimer.start(SessionsShortPollTimeout);
} }
void SessionsBox::onOneTerminated() { void SessionsBox::onOneTerminated() {
if (_list.isEmpty()) { update();
if (!_done->isHidden()) {
showAll();
update();
}
}
} }
void SessionsBox::onShortPollAuthorizations() { void SessionsBox::onShortPollAuthorizations() {
if (!_shortPollRequest) { if (!_shortPollRequest) {
_shortPollRequest = MTP::send(MTPaccount_GetAuthorizations(), rpcDone(&SessionsBox::gotAuthorizations)); _shortPollRequest = MTP::send(MTPaccount_GetAuthorizations(), rpcDone(&SessionsBox::gotAuthorizations));
if (!_done->isHidden()) { update();
showAll();
update();
}
} }
} }
@ -236,11 +229,7 @@ void SessionsBox::onAllTerminated() {
} }
void SessionsBox::onTerminateAll() { void SessionsBox::onTerminateAll() {
_loading = true; setLoading(true);
if (!_done->isHidden()) {
showAll();
update();
}
} }
SessionsBox::Inner::Inner(QWidget *parent, SessionsBox::List *list, SessionsBox::Data *current) : TWidget(parent) SessionsBox::Inner::Inner(QWidget *parent, SessionsBox::List *list, SessionsBox::Data *current) : TWidget(parent)

View File

@ -48,9 +48,8 @@ protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void showAll() override;
private: private:
void setLoading(bool loading);
struct Data { struct Data {
uint64 hash; uint64 hash;
@ -69,7 +68,7 @@ private:
class Inner; class Inner;
ChildWidget<Inner> _inner; ChildWidget<Inner> _inner;
ScrollableBoxShadow _shadow; ChildWidget<ScrollableBoxShadow> _shadow;
ChildWidget<Ui::RoundButton> _done; ChildWidget<Ui::RoundButton> _done;
SingleTimer _shortPollTimer; SingleTimer _shortPollTimer;

View File

@ -488,20 +488,6 @@ void StickersBox::onSave() {
} }
} }
void StickersBox::showAll() {
if (_topShadow) {
_topShadow->show();
}
if (_save) {
_save->show();
}
if (_cancel) {
_cancel->show();
_bottomShadow->show();
}
ItemListBox::showAll();
}
StickersBox::Inner::Inner(QWidget *parent, StickersBox::Section section) : TWidget(parent) StickersBox::Inner::Inner(QWidget *parent, StickersBox::Section section) : TWidget(parent)
, _section(section) , _section(section)
, _rowHeight(st::contactsPadding.top() + st::contactsPhotoSize + st::contactsPadding.bottom()) , _rowHeight(st::contactsPadding.top() + st::contactsPhotoSize + st::contactsPadding.bottom())

View File

@ -62,7 +62,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void closePressed() override; void closePressed() override;
void showAll() override;
private: private:
void setup(); void setup();

View File

@ -57,6 +57,7 @@ StickerSetBox::StickerSetBox(const MTPInputStickerSet &set) : ScrollableBox(st::
connect(_inner, SIGNAL(installed(uint64)), this, SLOT(onInstalled(uint64))); connect(_inner, SIGNAL(installed(uint64)), this, SLOT(onInstalled(uint64)));
onStickersUpdated(); onStickersUpdated();
updateControlsVisibility();
onScroll(); onScroll();
@ -69,7 +70,7 @@ void StickerSetBox::onInstalled(uint64 setId) {
} }
void StickerSetBox::onStickersUpdated() { void StickerSetBox::onStickersUpdated() {
showAll(); updateControlsVisibility();
} }
void StickerSetBox::onAddStickers() { void StickerSetBox::onAddStickers() {
@ -84,7 +85,7 @@ void StickerSetBox::onShareStickers() {
void StickerSetBox::onUpdateButtons() { void StickerSetBox::onUpdateButtons() {
if (!_cancel->isHidden() || !_done->isHidden()) { if (!_cancel->isHidden() || !_done->isHidden()) {
showAll(); updateControlsVisibility();
} }
} }
@ -94,9 +95,7 @@ void StickerSetBox::onScroll() {
_inner->setVisibleTopBottom(scrollTop, scrollTop + scroll->height()); _inner->setVisibleTopBottom(scrollTop, scrollTop + scroll->height());
} }
void StickerSetBox::showAll() { void StickerSetBox::updateControlsVisibility() {
ScrollableBox::showAll();
int32 cnt = _inner->notInstalled();
if (_inner->loaded()) { if (_inner->loaded()) {
_shadow.show(); _shadow.show();
if (_inner->notInstalled()) { if (_inner->notInstalled()) {

View File

@ -54,9 +54,9 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
private: private:
void updateControlsVisibility();
class Inner; class Inner;
ChildWidget<Inner> _inner; ChildWidget<Inner> _inner;
ScrollableBoxShadow _shadow; ScrollableBoxShadow _shadow;

View File

@ -55,16 +55,9 @@ _about(st::boxWidth - st::usernamePadding.left()) {
_checkTimer.setSingleShot(true); _checkTimer.setSingleShot(true);
connect(&_checkTimer, SIGNAL(timeout()), this, SLOT(onCheck())); connect(&_checkTimer, SIGNAL(timeout()), this, SLOT(onCheck()));
prepare();
}
void UsernameBox::showAll() {
_username->show();
_save->show();
_cancel->show();
updateLinkText(); updateLinkText();
AbstractBox::showAll(); prepare();
} }
void UsernameBox::doSetInnerFocus() { void UsernameBox::doSetInnerFocus() {

View File

@ -46,7 +46,6 @@ protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void showAll() override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
private: private:

View File

@ -56,6 +56,31 @@ inline constexpr D up_cast(T object) {
return internal::up_cast_helper<D>(std_::integral_constant<bool, std_::is_base_of<DV, TV>::value || std_::is_same<DV, TV>::value>(), object); return internal::up_cast_helper<D>(std_::integral_constant<bool, std_::is_base_of<DV, TV>::value || std_::is_same<DV, TV>::value>(), object);
} }
template <typename Lambda>
class scope_guard_helper {
public:
scope_guard_helper(Lambda on_scope_exit) : _handler(std_::move(on_scope_exit)) {
}
void dismiss() {
_dismissed = true;
}
~scope_guard_helper() {
if (!_dismissed) {
_handler();
}
}
private:
Lambda _handler;
bool _dismissed = false;
};
template <typename Lambda>
scope_guard_helper<Lambda> scope_guard(Lambda on_scope_exit) {
return scope_guard_helper<Lambda>(std_::move(on_scope_exit));
}
} // namespace base } // namespace base
template <typename Enum> template <typename Enum>

View File

@ -5679,11 +5679,12 @@ void HistoryWidget::leaveEvent(QEvent *e) {
} }
void HistoryWidget::mouseMoveEvent(QMouseEvent *e) { void HistoryWidget::mouseMoveEvent(QMouseEvent *e) {
QPoint pos(e ? e->pos() : mapFromGlobal(QCursor::pos())); auto pos = e ? e->pos() : mapFromGlobal(QCursor::pos());
bool inRecord = _send->geometry().contains(pos); auto inRecord = _send->geometry().contains(pos);
bool inField = pos.y() >= (_scroll->y() + _scroll->height()) && pos.y() < height() && pos.x() >= 0 && pos.x() < width(); auto inField = pos.y() >= (_scroll->y() + _scroll->height()) && pos.y() < height() && pos.x() >= 0 && pos.x() < width();
bool inReplyEdit = QRect(st::historyReplySkip, _field->y() - st::historySendPadding - st::historyReplyHeight, width() - st::historyReplySkip - _fieldBarCancel->width(), st::historyReplyHeight).contains(pos) && (_editMsgId || replyToId()); auto inReplyEdit = QRect(st::historyReplySkip, _field->y() - st::historySendPadding - st::historyReplyHeight, width() - st::historyReplySkip - _fieldBarCancel->width(), st::historyReplyHeight).contains(pos) && (_editMsgId || replyToId());
bool inPinnedMsg = QRect(0, 0, width(), st::historyReplyHeight).contains(pos) && _pinnedBar; auto inPinnedMsg = QRect(0, 0, width(), st::historyReplyHeight).contains(pos) && _pinnedBar;
auto inClickable = inRecord || inReplyEdit || inPinnedMsg;
if (inRecord != _inRecord) { if (inRecord != _inRecord) {
_inRecord = inRecord; _inRecord = inRecord;
update(_send->geometry()); update(_send->geometry());
@ -5694,13 +5695,11 @@ void HistoryWidget::mouseMoveEvent(QMouseEvent *e) {
a_recordCancelActive.start(_inField ? 0. : 1.); a_recordCancelActive.start(_inField ? 0. : 1.);
_a_record.start(); _a_record.start();
} }
if (inReplyEdit != _inReplyEdit) { _inReplyEdit = inReplyEdit;
_inReplyEdit = inReplyEdit; _inPinnedMsg = inPinnedMsg;
setCursor(inReplyEdit ? style::cur_pointer : style::cur_default); if (inClickable != _inClickable) {
} _inClickable = inClickable;
if (inPinnedMsg != _inPinnedMsg) { setCursor(_inClickable ? style::cur_pointer : style::cur_default);
_inPinnedMsg = inPinnedMsg;
setCursor(inPinnedMsg ? style::cur_pointer : style::cur_default);
} }
} }

View File

@ -1103,6 +1103,7 @@ private:
bool _inField = false; bool _inField = false;
bool _inReplyEdit = false; bool _inReplyEdit = false;
bool _inPinnedMsg = false; bool _inPinnedMsg = false;
bool _inClickable = false;
anim::ivalue a_recordingLevel = { 0, 0 }; anim::ivalue a_recordingLevel = { 0, 0 };
int32 _recordingSamples = 0; int32 _recordingSamples = 0;
anim::fvalue a_recordDown = { 0, 0 }; anim::fvalue a_recordDown = { 0, 0 };

View File

@ -37,178 +37,315 @@ constexpr int kStickerPreviewEmojiLimit = 10;
} // namespace } // namespace
void LayerWidget::setInnerFocus() {
auto focused = App::wnd()->focusWidget();
if (!isAncestorOf(focused)) {
doSetInnerFocus();
}
}
class LayerStackWidget::BackgroundWidget : public TWidget { class LayerStackWidget::BackgroundWidget : public TWidget {
public: public:
BackgroundWidget(QWidget *parent) : TWidget(parent) BackgroundWidget(QWidget *parent) : TWidget(parent)
, _shadow(st::boxShadow) { , _shadow(st::boxShadow) {
} }
void setBodyCache(QPixmap &&bodyCache) { void setDoneCallback(base::lambda_unique<void()> callback) {
_bodyCache = std_::move(bodyCache); _doneCallback = std_::move(callback);
} }
void setMainMenuCache(QPixmap &&mainMenuCache) {
_mainMenuCache = std_::move(mainMenuCache); void setLayerBoxes(const QRect &specialLayerBox, const QRect &layerBox);
if (!_mainMenuCache.isNull()) { void setCacheImages(QPixmap &&bodyCache, QPixmap &&mainMenuCache, QPixmap &&specialLayerCache, QPixmap &&layerCache);
_mainMenuWidth = _mainMenuCache.width() / cIntRetinaFactor(); void startAnimation(Action action);
_mainMenuRight = 0; void finishAnimation();
}
} bool animating() const {
void setMainMenuRight(int right) { return _a_mainMenuShown.animating() || _a_specialLayerShown.animating() || _a_layerShown.animating();
_mainMenuRight = right;
}
void setLayerBox(const QRect &box, const QRect &hiddenSpecialBox) {
_box = box;
_hiddenSpecialBox = hiddenSpecialBox;
update();
}
void setOpacity(float64 opacity) {
_opacity = opacity;
} }
protected: protected:
void paintEvent(QPaintEvent *e) override { void paintEvent(QPaintEvent *e) override;
Painter p(this);
auto hasMainMenuCache = !_mainMenuCache.isNull();
if (hasMainMenuCache || _mainMenuRight) {
auto boxLeft = _mainMenuRight;
auto cacheWidth = boxLeft * cIntRetinaFactor();
if (left > 0 && hasMainMenuCache) {
p.drawPixmapLeft(0, 0, width(), _mainMenuCache, rtlrect(_mainMenuCache.width() - cacheWidth, 0, cacheWidth, height() * cIntRetinaFactor(), _mainMenuCache.width()));
}
if (!_bodyCache.isNull()) {
p.drawPixmapLeft(boxLeft, 0, width(), _bodyCache, rtlrect(cacheWidth, 0, _bodyCache.width() - cacheWidth, height() * cIntRetinaFactor(), _bodyCache.width() - cacheWidth));
}
_shadow.paint(p, QRect(0, 0, boxLeft, height()), 0, Ui::RectShadow::Side::Right);
p.setOpacity(_opacity);
p.fillRect(myrtlrect(boxLeft, 0, width() - boxLeft, height()), st::layerBg);
return;
}
if (!_bodyCache.isNull()) {
p.drawPixmap(0, 0, _bodyCache);
}
p.setOpacity(_opacity);
if (_box.isNull()) {
p.fillRect(rect(), st::layerBg);
} else {
auto clip = QRegion(rect()) - _box;
for (auto &r : clip.rects()) {
p.fillRect(r, st::layerBg);
}
p.setClipRegion(clip);
_shadow.paint(p, _box, st::boxShadowShift);
if (!_hiddenSpecialBox.isNull()) {
p.setClipRegion(QRegion(rect()) - _hiddenSpecialBox);
_shadow.paint(p, _hiddenSpecialBox, st::boxShadowShift);
}
}
}
private: private:
bool isShown() const {
return _mainMenuShown || _specialLayerShown || _layerShown;
}
void checkIfDone();
void setMainMenuShown(bool shown);
void setSpecialLayerShown(bool shown);
void setLayerShown(bool shown);
void checkWasShown(bool wasShown);
void animationCallback();
QPixmap _bodyCache; QPixmap _bodyCache;
QPixmap _mainMenuCache; QPixmap _mainMenuCache;
int _mainMenuWidth = 0; QPixmap _specialLayerCache;
int _mainMenuRight = 0; QPixmap _layerCache;
QRect _box, _hiddenSpecialBox; base::lambda_unique<void()> _doneCallback;
float64 _opacity = 0.;
bool _wasAnimating = false;
bool _inPaintEvent = false;
FloatAnimation _a_shown;
FloatAnimation _a_mainMenuShown;
FloatAnimation _a_specialLayerShown;
FloatAnimation _a_layerShown;
Ui::RectShadow _shadow; Ui::RectShadow _shadow;
QRect _specialLayerBox, _specialLayerCacheBox;
QRect _layerBox, _layerCacheBox;
int _mainMenuRight = 0;
bool _mainMenuShown = false;
bool _specialLayerShown = false;
bool _layerShown = false;
}; };
LayerStackWidget::LayerStackWidget(QWidget *parent) : TWidget(parent) void LayerStackWidget::BackgroundWidget::setCacheImages(QPixmap &&bodyCache, QPixmap &&mainMenuCache, QPixmap &&specialLayerCache, QPixmap &&layerCache) {
, _background(this) _bodyCache = std_::move(bodyCache);
, a_bg(0) _mainMenuCache = std_::move(mainMenuCache);
, a_layer(0) _specialLayerCache = std_::move(specialLayerCache);
, _a_background(animation(this, &LayerStackWidget::step_background)) { _layerCache = std_::move(layerCache);
setGeometry(parentWidget()->rect()); _specialLayerCacheBox = _specialLayerBox;
hide(); _layerCacheBox = _layerBox;
setAttribute(Qt::WA_OpaquePaintEvent, !_bodyCache.isNull());
} }
void LayerStackWidget::paintEvent(QPaintEvent *e) { void LayerStackWidget::BackgroundWidget::startAnimation(Action action) {
if (!layer() && !_specialLayer && _layerCache.isNull()) { if (action == Action::ShowMainMenu) {
setMainMenuShown(true);
} else if (action != Action::HideLayer) {
setMainMenuShown(false);
}
if (action == Action::ShowSpecialLayer) {
setSpecialLayerShown(true);
} else if (action == Action::ShowMainMenu || action == Action::HideAll) {
setSpecialLayerShown(false);
}
if (action == Action::ShowLayer) {
setLayerShown(true);
} else {
setLayerShown(false);
}
_wasAnimating = true;
checkIfDone();
}
void LayerStackWidget::BackgroundWidget::checkIfDone() {
if (!_wasAnimating || _inPaintEvent || animating()) {
return;
}
_wasAnimating = false;
_bodyCache = _mainMenuCache = _specialLayerCache = _layerCache = QPixmap();
setAttribute(Qt::WA_OpaquePaintEvent, false);
if (_doneCallback) {
_doneCallback();
}
}
void LayerStackWidget::BackgroundWidget::setMainMenuShown(bool shown) {
auto wasShown = isShown();
if (_mainMenuShown != shown) {
_mainMenuShown = shown;
_a_mainMenuShown.start([this] { animationCallback(); }, _mainMenuShown ? 0. : 1., _mainMenuShown ? 1. : 0., st::boxDuration, anim::easeOutCirc);
}
_mainMenuRight = _mainMenuShown ? (_mainMenuCache.width() / cIntRetinaFactor()) : 0;
checkWasShown(wasShown);
}
void LayerStackWidget::BackgroundWidget::setSpecialLayerShown(bool shown) {
auto wasShown = isShown();
if (_specialLayerShown != shown) {
_specialLayerShown = shown;
_a_specialLayerShown.start([this] { animationCallback(); }, _specialLayerShown ? 0. : 1., _specialLayerShown ? 1. : 0., st::boxDuration);
}
checkWasShown(wasShown);
}
void LayerStackWidget::BackgroundWidget::setLayerShown(bool shown) {
auto wasShown = isShown();
if (_layerShown != shown) {
_layerShown = shown;
_a_layerShown.start([this] { animationCallback(); }, _layerShown ? 0. : 1., _layerShown ? 1. : 0., st::boxDuration);
}
checkWasShown(wasShown);
}
void LayerStackWidget::BackgroundWidget::checkWasShown(bool wasShown) {
if (isShown() != wasShown) {
_a_shown.start([this] { animationCallback(); }, wasShown ? 1. : 0., wasShown ? 0. : 1., st::boxDuration, anim::easeOutCirc);
}
}
void LayerStackWidget::BackgroundWidget::setLayerBoxes(const QRect &specialLayerBox, const QRect &layerBox) {
_specialLayerBox = specialLayerBox;
_layerBox = layerBox;
update();
}
void LayerStackWidget::BackgroundWidget::paintEvent(QPaintEvent *e) {
Painter p(this);
_inPaintEvent = true;
auto guard = base::scope_guard([this] {
_inPaintEvent = false;
checkIfDone();
});
if (!_bodyCache.isNull()) {
p.drawPixmap(0, 0, _bodyCache);
}
auto specialLayerBox = _specialLayerCache.isNull() ? _specialLayerBox : _specialLayerCacheBox;
auto layerBox = _layerCache.isNull() ? _layerBox : _layerCacheBox;
auto ms = getms();
auto mainMenuProgress = _a_mainMenuShown.current(ms, -1);
auto mainMenuRight = (_mainMenuCache.isNull() || mainMenuProgress < 0) ? _mainMenuRight : (mainMenuProgress < 0) ? _mainMenuRight : anim::interpolate(0, _mainMenuCache.width() / cIntRetinaFactor(), mainMenuProgress);
if (mainMenuRight) {
if (!_specialLayerCache.isNull()) {
specialLayerBox.setX(specialLayerBox.x() + mainMenuRight / 2);
}
if (!_layerCache.isNull()) {
layerBox.setX(layerBox.x() + mainMenuRight / 2);
}
}
auto bgOpacity = _a_shown.current(ms, isShown() ? 1. : 0.);
auto specialLayerOpacity = _a_specialLayerShown.current(ms, _specialLayerShown ? 1. : 0.);
auto layerOpacity = _a_layerShown.current(ms, _layerShown ? 1. : 0.);
if (bgOpacity == 0.) {
return; return;
} }
if (!_layerCache.isNull()) { p.setOpacity(bgOpacity);
Painter p(this); auto bg = myrtlrect(mainMenuRight, 0, width() - mainMenuRight, height());
p.setClipRect(rect()); p.fillRect(bg, st::layerBg);
p.setOpacity(a_layer.current()); if (mainMenuRight > 0) {
if (!_hiddenSpecialLayerCache.isNull()) { _shadow.paint(p, myrtlrect(0, 0, mainMenuRight, height()), 0, Ui::RectShadow::Side::Right);
p.drawPixmap(_hiddenSpecialLayerCacheBox.topLeft(), _hiddenSpecialLayerCache); }
if (!specialLayerBox.isEmpty()) {
p.setClipRegion(QRegion(bg) - specialLayerBox);
_shadow.paint(p, specialLayerBox, st::boxShadowShift);
}
p.setClipping(false);
if (!_specialLayerCache.isNull() && specialLayerOpacity > 0) {
p.setOpacity(specialLayerOpacity);
p.drawPixmap(specialLayerBox.topLeft(), _specialLayerCache);
}
if (!layerBox.isEmpty()) {
if (!_specialLayerCache.isNull()) {
p.setOpacity(layerOpacity * specialLayerOpacity);
p.setClipRegion(QRegion(specialLayerBox) - layerBox);
p.fillRect(specialLayerBox, st::layerBg);
} }
p.drawPixmap(_layerCacheBox.topLeft(), _layerCache); p.setOpacity(layerOpacity);
p.setClipRegion(QRegion(bg) - layerBox);
_shadow.paint(p, layerBox, st::boxShadowShift);
p.setClipping(false);
}
if (!_layerCache.isNull() && layerOpacity > 0) {
p.setOpacity(layerOpacity);
p.drawPixmap(layerBox.topLeft(), _layerCache);
}
if (!_mainMenuCache.isNull() && mainMenuRight > 0) {
p.setOpacity(1.);
auto shownWidth = mainMenuRight * cIntRetinaFactor();
auto shownRect = rtlrect(_mainMenuCache.width() - shownWidth, 0, shownWidth, _mainMenuCache.height(), _mainMenuCache.width());
p.drawPixmapLeft(0, 0, mainMenuRight, height(), width(), _mainMenuCache, shownRect);
}
}
void LayerStackWidget::BackgroundWidget::finishAnimation() {
_a_shown.finish();
_a_mainMenuShown.finish();
_a_specialLayerShown.finish();
_a_layerShown.finish();
checkIfDone();
}
void LayerStackWidget::BackgroundWidget::animationCallback() {
update();
checkIfDone();
}
LayerStackWidget::LayerStackWidget(QWidget *parent) : TWidget(parent)
, _background(this) {
setGeometry(parentWidget()->rect());
hide();
_background->setDoneCallback([this] { animationDone(); });
}
void LayerWidget::setInnerFocus() {
if (!isAncestorOf(App::wnd()->focusWidget())) {
doSetInnerFocus();
} }
} }
void LayerStackWidget::keyPressEvent(QKeyEvent *e) { void LayerStackWidget::keyPressEvent(QKeyEvent *e) {
if (e->key() == Qt::Key_Escape) { if (e->key() == Qt::Key_Escape) {
onCloseCurrent(); hideCurrent();
} }
} }
void LayerStackWidget::mousePressEvent(QMouseEvent *e) { void LayerStackWidget::mousePressEvent(QMouseEvent *e) {
onCloseCurrent(); hideCurrent();
} }
void LayerStackWidget::onCloseCurrent() { void LayerStackWidget::hideCurrent() {
if (layer()) { return currentLayer() ? hideLayers() : hideAll();
onCloseLayers();
} else {
onClose();
}
} }
void LayerStackWidget::onCloseLayers() { void LayerStackWidget::hideLayers() {
if (_specialLayer) { startAnimation([] {}, [this] {
clearLayers(); clearLayers();
fixOrder(); }, Action::HideLayer);
if (App::wnd()) App::wnd()->setInnerFocus(); }
} else {
onClose(); void LayerStackWidget::hideAll() {
startAnimation([] {}, [this] {
clearLayers();
_specialLayer.destroyDelayed();
_mainMenu.destroyDelayed();
}, Action::HideAll);
}
void LayerStackWidget::setCacheImages() {
auto bodyCache = QPixmap(), mainMenuCache = QPixmap();
if (isAncestorOf(App::wnd()->focusWidget())) {
setFocus();
} }
if (_mainMenu) {
hideChildren();
bodyCache = myGrab(App::wnd()->bodyWidget());
showChildren();
mainMenuCache = myGrab(_mainMenu);
}
auto specialLayerCache = _specialLayer ? myGrab(_specialLayer) : QPixmap();
auto layerCache = QPixmap();
if (auto layer = currentLayer()) {
layerCache = myGrab(layer);
}
setAttribute(Qt::WA_OpaquePaintEvent, !bodyCache.isNull());
updateLayerBoxes();
_background->setCacheImages(std_::move(bodyCache), std_::move(mainMenuCache), std_::move(specialLayerCache), std_::move(layerCache));
} }
void LayerStackWidget::onClose() { void LayerStackWidget::onLayerClosed(LayerWidget *layer) {
startHide(); layer->deleteLater();
} if (layer == _specialLayer) {
hideAll();
void LayerStackWidget::onLayerClosed(LayerWidget *l) { } else if (layer == currentLayer()) {
l->deleteLater(); if (_layers.size() == 1) {
if (l == _specialLayer) { hideCurrent();
onClose();
_specialLayer = nullptr;
} else if (l == layer()) {
_layers.pop_back();
if (auto newLayer = layer()) {
l->hide();
newLayer->parentResized();
if (!_a_background.animating()) {
newLayer->show();
}
} else if (_specialLayer) {
l->hide();
} else { } else {
_layers.push_back(l); // For animation cache grab. layer->hide();
onClose();
_layers.pop_back(); _layers.pop_back();
layer = currentLayer();
layer->parentResized();
if (!_background->animating()) {
layer->show();
showFinished();
}
} }
fixOrder();
if (App::wnd()) App::wnd()->setInnerFocus();
updateLayerBox();
sendFakeMouseEvent();
} else { } else {
for (auto i = _layers.begin(), e = _layers.end(); i != e; ++i) { for (auto i = _layers.begin(), e = _layers.end(); i != e; ++i) {
if (l == *i) { if (layer == *i) {
_layers.erase(i); _layers.erase(i);
break; break;
} }
@ -217,94 +354,35 @@ void LayerStackWidget::onLayerClosed(LayerWidget *l) {
} }
void LayerStackWidget::onLayerResized() { void LayerStackWidget::onLayerResized() {
updateLayerBox(); updateLayerBoxes();
} }
void LayerStackWidget::updateLayerBox() { void LayerStackWidget::updateLayerBoxes() {
auto getLayerBox = [this]() { auto getLayerBox = [this]() {
if (!_layerCache.isNull()) { if (auto layer = currentLayer()) {
return _layerCacheBox; return layer->geometry();
} else if (auto l = layer()) {
return l->geometry();
} else if (_specialLayer) {
return _specialLayer->geometry();
} }
return QRect(); return QRect();
}; };
auto getSpecialLayerBox = [this]() { auto getSpecialLayerBox = [this]() {
if (!_layerCache.isNull()) { return _specialLayer ? _specialLayer->geometry() : QRect();
return _hiddenSpecialLayerCacheBox;
} else if (auto l = layer()) {
return _specialLayer ? _specialLayer->geometry() : QRect();
}
return QRect();
}; };
_background->setLayerBox(getLayerBox(), getSpecialLayerBox()); _background->setLayerBoxes(getSpecialLayerBox(), getLayerBox());
update(); update();
} }
void LayerStackWidget::startShow() { void LayerStackWidget::finishAnimation() {
startAnimation(1); _background->finishAnimation();
show();
}
void LayerStackWidget::showFast() {
if (_a_background.animating()) {
_a_background.step(getms() + st::layerSlideDuration + 1);
}
}
void LayerStackWidget::startHide() {
if (isHidden() || _hiding) {
return;
}
_hiding = true;
startAnimation(0);
}
void LayerStackWidget::startAnimation(float64 toOpacity) {
if (_mainMenu) {
setAttribute(Qt::WA_OpaquePaintEvent);
hide();
_background->setBodyCache(myGrab(App::wnd()->bodyWidget()));
show();
_mainMenu->hide();
_background->setMainMenuCache(myGrab(_mainMenu));
_background->setMainMenuRight(toOpacity ? 0 : _mainMenu->width());
}
if (App::app()) App::app()->mtpPause();
a_bg.start(toOpacity);
a_layer.start(toOpacity);
_a_background.start();
if (_layerCache.isNull()) {
if (auto cacheLayer = layer() ? layer() : _specialLayer.ptr()) {
_layerCache = myGrab(cacheLayer);
_layerCacheBox = cacheLayer->geometry();
if (layer() && _specialLayer) {
_hiddenSpecialLayerCache = myGrab(_specialLayer);
_hiddenSpecialLayerCacheBox = _specialLayer->geometry();
}
}
}
if (_specialLayer) {
_specialLayer->hide();
}
if (auto l = layer()) {
l->hide();
}
updateLayerBox();
if (App::wnd()) App::wnd()->setInnerFocus();
} }
bool LayerStackWidget::canSetFocus() const { bool LayerStackWidget::canSetFocus() const {
return (layer() || _specialLayer || _mainMenu) && !_hiding; return (currentLayer() || _specialLayer || _mainMenu);
} }
void LayerStackWidget::setInnerFocus() { void LayerStackWidget::setInnerFocus() {
if (_a_background.animating()) { if (_background->animating()) {
setFocus(); setFocus();
} else if (auto l = layer()) { } else if (auto l = currentLayer()) {
l->setInnerFocus(); l->setInnerFocus();
} else if (_specialLayer) { } else if (_specialLayer) {
_specialLayer->setInnerFocus(); _specialLayer->setInnerFocus();
@ -320,123 +398,179 @@ bool LayerStackWidget::contentOverlapped(const QRect &globalRect) {
if (_specialLayer && _specialLayer->overlaps(globalRect)) { if (_specialLayer && _specialLayer->overlaps(globalRect)) {
return true; return true;
} }
if (auto l = layer()) { if (auto layer = currentLayer()) {
return l->overlaps(globalRect); return layer->overlaps(globalRect);
} }
return false; return false;
} }
template <typename SetupNew, typename ClearOld>
void LayerStackWidget::startAnimation(SetupNew setupNewWidgets, ClearOld clearOldWidgets, Action action) {
if (App::quitting()) return;
setupNewWidgets();
setCacheImages();
clearOldWidgets();
prepareForAnimation();
_background->startAnimation(action);
}
void LayerStackWidget::resizeEvent(QResizeEvent *e) { void LayerStackWidget::resizeEvent(QResizeEvent *e) {
_background->setGeometry(rect()); _background->setGeometry(rect());
if (_specialLayer) { if (_specialLayer) {
_specialLayer->parentResized(); _specialLayer->parentResized();
} }
if (auto l = layer()) { if (auto layer = currentLayer()) {
l->parentResized(); layer->parentResized();
} }
if (_mainMenu) { if (_mainMenu) {
_mainMenu->resize(_mainMenu->width(), height()); _mainMenu->resize(_mainMenu->width(), height());
} }
updateLayerBox(); updateLayerBoxes();
} }
void LayerStackWidget::showLayer(LayerWidget *l) { void LayerStackWidget::showLayer(LayerWidget *layer) {
clearLayers(); appendLayer(layer);
appendLayer(l); while (!_layers.isEmpty() && _layers.front() != layer) {
} auto removingLayer = _layers.front();
_layers.pop_front();
void LayerStackWidget::showSpecialLayer(LayerWidget *l) { removingLayer->hide();
clearLayers(); removingLayer->deleteLater();
if (_specialLayer) {
_specialLayer.destroyDelayed();
} }
_specialLayer = l; }
activateLayer(l);
void LayerStackWidget::prepareForAnimation() {
if (isHidden()) {
show();
}
if (_mainMenu) {
_mainMenu->hide();
}
if (_specialLayer) {
_specialLayer->hide();
}
if (auto layer = currentLayer()) {
layer->hide();
}
if (auto app = App::app()) {
app->mtpPause();
}
}
void LayerStackWidget::animationDone() {
bool hidden = true;
if (_mainMenu) {
_mainMenu->show();
hidden = false;
}
if (_specialLayer) {
_specialLayer->show();
hidden = false;
}
if (auto layer = currentLayer()) {
layer->show();
hidden = false;
}
if (hidden) {
App::wnd()->layerFinishedHide(this);
} else {
showFinished();
}
if (auto app = App::app()) {
app->mtpUnpause();
}
setAttribute(Qt::WA_OpaquePaintEvent, false);
}
void LayerStackWidget::showFinished() {
fixOrder();
sendFakeMouseEvent();
updateLayerBoxes();
if (_mainMenu) {
_mainMenu->showFinished();
}
if (_specialLayer) {
_specialLayer->showFinished();
}
if (auto layer = currentLayer()) {
layer->showFinished();
}
if (auto window = App::wnd()) {
window->setInnerFocus();
}
}
void LayerStackWidget::showSpecialLayer(LayerWidget *layer) {
startAnimation([this, layer] {
_specialLayer.destroyDelayed();
_specialLayer = layer;
initChildLayer(_specialLayer);
}, [this] {
clearLayers();
_mainMenu.destroyDelayed();
}, Action::ShowSpecialLayer);
} }
void LayerStackWidget::showMainMenu() { void LayerStackWidget::showMainMenu() {
clearLayers(); startAnimation([this] {
if (_specialLayer) { _mainMenu.create(this);
_mainMenu->setGeometryToLeft(0, 0, _mainMenu->width(), height());
_mainMenu->setParent(this);
}, [this] {
clearLayers();
_specialLayer.destroyDelayed(); _specialLayer.destroyDelayed();
} }, Action::ShowMainMenu);
_mainMenu.create(this);
_mainMenu->setGeometryToLeft(0, 0, _mainMenu->width(), height());
_mainMenu->setParent(this);
fixOrder();
if (isHidden()) {
startShow();
} else {
_mainMenu->show();
_mainMenu->showFinished();
if (App::wnd()) App::wnd()->setInnerFocus();
updateLayerBox();
}
fixOrder();
sendFakeMouseEvent();
} }
void LayerStackWidget::appendLayer(LayerWidget *l) { void LayerStackWidget::appendLayer(LayerWidget *layer) {
if (auto oldLayer = layer()) { auto oldLayer = currentLayer();
if (oldLayer) {
oldLayer->hide(); oldLayer->hide();
} }
_layers.push_back(l); _layers.push_back(layer);
activateLayer(l); initChildLayer(layer);
if (_layers.size() > 1) {
if (!_background->animating()) {
layer->show();
showFinished();
}
} else {
startAnimation([] {}, [this] {
_mainMenu.destroyDelayed();
}, Action::ShowLayer);
}
} }
void LayerStackWidget::prependLayer(LayerWidget *l) { void LayerStackWidget::prependLayer(LayerWidget *layer) {
if (_layers.empty()) { if (_layers.empty()) {
showLayer(l); return showLayer(layer);
} else {
l->hide();
_layers.push_front(l);
initChildLayer(l);
} }
layer->hide();
_layers.push_front(layer);
initChildLayer(layer);
} }
void LayerStackWidget::clearLayers() { void LayerStackWidget::clearLayers() {
for_const (auto oldLayer, _layers) { for (auto layer : base::take(_layers)) {
oldLayer->hide(); layer->hide();
oldLayer->deleteLater(); layer->deleteLater();
} }
_layers.clear();
updateLayerBox();
sendFakeMouseEvent();
} }
void LayerStackWidget::initChildLayer(LayerWidget *l) { void LayerStackWidget::initChildLayer(LayerWidget *layer) {
l->setParent(this); layer->setParent(this);
connect(l, SIGNAL(closed(LayerWidget*)), this, SLOT(onLayerClosed(LayerWidget*))); connect(layer, SIGNAL(closed(LayerWidget*)), this, SLOT(onLayerClosed(LayerWidget*)));
connect(l, SIGNAL(resized()), this, SLOT(onLayerResized())); connect(layer, SIGNAL(resized()), this, SLOT(onLayerResized()));
connect(l, SIGNAL(destroyed(QObject*)), this, SLOT(onLayerDestroyed(QObject*))); connect(layer, SIGNAL(destroyed(QObject*)), this, SLOT(onLayerDestroyed(QObject*)));
l->parentResized(); layer->parentResized();
fixOrder();
}
void LayerStackWidget::activateLayer(LayerWidget *l) {
if (_mainMenu) {
_mainMenu.destroyDelayed();
_background->setMainMenuRight(0);
_background->setMainMenuCache(QPixmap());
}
initChildLayer(l);
if (isHidden()) {
startShow();
} else {
l->show();
l->showDone();
if (App::wnd()) App::wnd()->setInnerFocus();
updateLayerBox();
}
fixOrder();
sendFakeMouseEvent();
} }
void LayerStackWidget::fixOrder() { void LayerStackWidget::fixOrder() {
if (auto l = layer()) { if (auto layer = currentLayer()) {
_background->raise(); _background->raise();
l->raise(); layer->raise();
} else if (_specialLayer) { } else if (_specialLayer) {
_specialLayer->raise(); _specialLayer->raise();
} }
@ -449,72 +583,21 @@ void LayerStackWidget::sendFakeMouseEvent() {
sendSynteticMouseEvent(this, QEvent::MouseMove, Qt::NoButton); sendSynteticMouseEvent(this, QEvent::MouseMove, Qt::NoButton);
} }
void LayerStackWidget::step_background(float64 ms, bool timer) {
float64 dt = ms / (_hiding ? st::layerHideDuration : st::layerSlideDuration);
if (dt >= 1) {
a_bg.finish();
a_layer.finish();
_a_background.stop();
_layerCache = _hiddenSpecialLayerCache = QPixmap();
setAttribute(Qt::WA_OpaquePaintEvent, false);
_background->setBodyCache(QPixmap());
if (_hiding) {
App::wnd()->layerFinishedHide(this);
if (_mainMenu) {
_background->setMainMenuRight(0);
_background->setMainMenuCache(QPixmap());
_mainMenu.destroyDelayed();
}
} else {
if (_specialLayer) {
_specialLayer->show();
_specialLayer->showDone();
}
if (auto l = layer()) {
l->show();
l->showDone();
}
if (_mainMenu) {
_background->setMainMenuRight(_mainMenu->width());
_background->setMainMenuCache(QPixmap());
_mainMenu->show();
_mainMenu->showFinished();
}
if (App::wnd()) App::wnd()->setInnerFocus();
}
updateLayerBox();
if (App::app()) App::app()->mtpUnpause();
} else {
a_bg.update(dt, anim::easeOutCirc);
a_layer.update(dt, anim::linear);
if (_mainMenu) {
_background->setMainMenuRight(a_bg.current() * _mainMenu->width());
}
}
_background->setOpacity(a_bg.current());
if (timer) {
_background->update();
update();
}
}
void LayerStackWidget::onLayerDestroyed(QObject *obj) { void LayerStackWidget::onLayerDestroyed(QObject *obj) {
if (obj == _specialLayer) { if (obj == _specialLayer) {
_specialLayer = nullptr; _specialLayer = nullptr;
onClose(); hideAll();
} else if (obj == layer()) { } else if (obj == currentLayer()) {
_layers.pop_back(); _layers.pop_back();
if (auto newLayer = layer()) { if (auto newLayer = currentLayer()) {
newLayer->parentResized(); newLayer->parentResized();
if (!_a_background.animating()) { if (!_background->animating()) {
newLayer->show(); newLayer->show();
showFinished();
} }
} else if (!_specialLayer) { } else if (!_specialLayer) {
onClose(); hideAll();
} }
fixOrder();
if (App::wnd()) App::wnd()->setInnerFocus();
updateLayerBox();
} else { } else {
for (auto i = _layers.begin(), e = _layers.end(); i != e; ++i) { for (auto i = _layers.begin(), e = _layers.end(); i != e; ++i) {
if (obj == *i) { if (obj == *i) {

View File

@ -33,7 +33,7 @@ public:
using TWidget::TWidget; using TWidget::TWidget;
virtual void parentResized() = 0; virtual void parentResized() = 0;
virtual void showDone() { virtual void showFinished() {
} }
void setInnerFocus(); void setInnerFocus();
@ -65,55 +65,63 @@ class LayerStackWidget : public TWidget {
public: public:
LayerStackWidget(QWidget *parent); LayerStackWidget(QWidget *parent);
void showFast(); void finishAnimation();
void showLayer(LayerWidget *l); void showLayer(LayerWidget *layer);
void showSpecialLayer(LayerWidget *l); void showSpecialLayer(LayerWidget *layer);
void showMainMenu(); void showMainMenu();
void appendLayer(LayerWidget *l); void appendLayer(LayerWidget *layer);
void prependLayer(LayerWidget *l); void prependLayer(LayerWidget *layer);
bool canSetFocus() const; bool canSetFocus() const;
void setInnerFocus(); void setInnerFocus();
bool contentOverlapped(const QRect &globalRect); bool contentOverlapped(const QRect &globalRect);
void onCloseCurrent(); void hideLayers();
void onCloseLayers(); void hideAll();
void onClose();
~LayerStackWidget(); ~LayerStackWidget();
protected: protected:
void paintEvent(QPaintEvent *e) override;
void keyPressEvent(QKeyEvent *e) override; void keyPressEvent(QKeyEvent *e) override;
void mousePressEvent(QMouseEvent *e) override; void mousePressEvent(QMouseEvent *e) override;
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
private slots: private slots:
void onLayerDestroyed(QObject *obj); void onLayerDestroyed(QObject *obj);
void onLayerClosed(LayerWidget *l); void onLayerClosed(LayerWidget *layer);
void onLayerResized(); void onLayerResized();
private: private:
void showFinished();
void hideCurrent();
enum class Action {
ShowMainMenu,
ShowSpecialLayer,
ShowLayer,
HideLayer,
HideAll,
};
template <typename SetupNew, typename ClearOld>
void startAnimation(SetupNew setupNewWidgets, ClearOld clearOldWidgets, Action action);
void prepareForAnimation();
void animationDone();
void setCacheImages();
void clearLayers(); void clearLayers();
void initChildLayer(LayerWidget *l); void initChildLayer(LayerWidget *layer);
void activateLayer(LayerWidget *l); void updateLayerBoxes();
void updateLayerBox();
void fixOrder(); void fixOrder();
void sendFakeMouseEvent(); void sendFakeMouseEvent();
void startShow(); LayerWidget *currentLayer() {
void startHide();
void startAnimation(float64 toOpacity);
void step_background(float64 ms, bool timer);
LayerWidget *layer() {
return _layers.empty() ? nullptr : _layers.back(); return _layers.empty() ? nullptr : _layers.back();
} }
const LayerWidget *layer() const { const LayerWidget *currentLayer() const {
return const_cast<LayerStackWidget*>(this)->layer(); return const_cast<LayerStackWidget*>(this)->currentLayer();
} }
using Layers = QList<LayerWidget*>; using Layers = QList<LayerWidget*>;
@ -125,16 +133,6 @@ private:
class BackgroundWidget; class BackgroundWidget;
ChildWidget<BackgroundWidget> _background; ChildWidget<BackgroundWidget> _background;
anim::fvalue a_bg, a_layer;
Animation _a_background;
QPixmap _layerCache;
QRect _layerCacheBox;
QPixmap _hiddenSpecialLayerCache;
QRect _hiddenSpecialLayerCacheBox;
bool _hiding = false;
}; };
class MediaPreviewWidget : public TWidget, private base::Subscriber { class MediaPreviewWidget : public TWidget, private base::Subscriber {

View File

@ -421,7 +421,7 @@ void MainWindow::showMainMenu() {
void MainWindow::ui_hideSettingsAndLayer(ShowLayerOptions options) { void MainWindow::ui_hideSettingsAndLayer(ShowLayerOptions options) {
if (_layerBg) { if (_layerBg) {
_layerBg->onClose(); _layerBg->hideAll();
} }
} }
@ -498,14 +498,14 @@ void MainWindow::ui_showLayer(LayerWidget *box, ShowLayerOptions options) {
_layerBg->showLayer(box); _layerBg->showLayer(box);
} }
if (options.testFlag(ForceFastShowLayer)) { if (options.testFlag(ForceFastShowLayer)) {
_layerBg->showFast(); _layerBg->finishAnimation();
} }
} else { } else {
if (_layerBg) { if (_layerBg) {
if (_settings) { if (_settings) {
_layerBg->onCloseLayers(); _layerBg->hideLayers();
} else { } else {
_layerBg->onClose(); _layerBg->hideAll();
if (options.testFlag(ForceFastShowLayer)) { if (options.testFlag(ForceFastShowLayer)) {
_layerBg.destroyDelayed(); _layerBg.destroyDelayed();
} }
@ -606,6 +606,7 @@ void MainWindow::layerHidden() {
_layerBg.destroyDelayed(); _layerBg.destroyDelayed();
hideMediaview(); hideMediaview();
setInnerFocus(); setInnerFocus();
checkHistoryActivation();
} }
void MainWindow::onReActivate() { void MainWindow::onReActivate() {
@ -1469,13 +1470,9 @@ MainWindow::~MainWindow() {
_clearManager->stop(); _clearManager->stop();
_clearManager = nullptr; _clearManager = nullptr;
} }
delete _connecting;
delete _mediaView; delete _mediaView;
delete trayIcon; delete trayIcon;
delete trayIconMenu; delete trayIconMenu;
delete _intro;
delete _main;
delete _settings;
} }
PreLaunchWindow *PreLaunchWindowInstance = 0; PreLaunchWindow *PreLaunchWindowInstance = 0;

View File

@ -64,8 +64,7 @@ void AdvancedWidget::createControls() {
if (self()) { if (self()) {
addChildRow(_askQuestion, marginSmall, lang(lng_settings_ask_question), SLOT(onAskQuestion())); addChildRow(_askQuestion, marginSmall, lang(lng_settings_ask_question), SLOT(onAskQuestion()));
} }
addChildRow(_telegramFAQ, marginSmall, lang(lng_settings_faq), SLOT(onTelegramFAQ())); addChildRow(_telegramFAQ, marginLarge, lang(lng_settings_faq), SLOT(onTelegramFAQ()));
addChildRow(_about, marginLarge, lang(lng_menu_about), SLOT(onAbout()));
if (self()) { if (self()) {
style::margins marginLogout(0, 0, 0, 2 * st::settingsLargeSkip); style::margins marginLogout(0, 0, 0, 2 * st::settingsLargeSkip);
addChildRow(_logOut, marginLogout, lang(lng_settings_logout), SLOT(onLogOut())); addChildRow(_logOut, marginLogout, lang(lng_settings_logout), SLOT(onLogOut()));
@ -125,13 +124,8 @@ void AdvancedWidget::onTelegramFAQ() {
QDesktopServices::openUrl(telegramFaqLink()); QDesktopServices::openUrl(telegramFaqLink());
} }
void AdvancedWidget::onAbout() {
Ui::showLayer(new AboutBox());
}
void AdvancedWidget::onLogOut() { void AdvancedWidget::onLogOut() {
App::wnd()->onLogout(); App::wnd()->onLogout();
} }
} // namespace Settings } // namespace Settings

View File

@ -39,7 +39,6 @@ private slots:
void onAskQuestion(); void onAskQuestion();
void onAskQuestionSure(); void onAskQuestionSure();
void onTelegramFAQ(); void onTelegramFAQ();
void onAbout();
void onLogOut(); void onLogOut();
private: private:
@ -55,7 +54,6 @@ private:
#endif // !TDESKTOP_DISABLE_NETWORK_PROXY #endif // !TDESKTOP_DISABLE_NETWORK_PROXY
ChildWidget<Ui::LinkButton> _askQuestion = { nullptr }; ChildWidget<Ui::LinkButton> _askQuestion = { nullptr };
ChildWidget<Ui::LinkButton> _telegramFAQ = { nullptr }; ChildWidget<Ui::LinkButton> _telegramFAQ = { nullptr };
ChildWidget<Ui::LinkButton> _about = { nullptr };
ChildWidget<Ui::LinkButton> _logOut = { nullptr }; ChildWidget<Ui::LinkButton> _logOut = { nullptr };
mtpRequestId _supportGetRequest = 0; mtpRequestId _supportGetRequest = 0;

View File

@ -64,6 +64,9 @@ void InnerWidget::refreshBlocks() {
} }
_blocks.clear(); _blocks.clear();
if (App::quitting()) {
return;
}
if (_self) { if (_self) {
_cover = new CoverWidget(this, _self); _cover = new CoverWidget(this, _self);
_blocks.push_back(new InfoWidget(this, _self)); _blocks.push_back(new InfoWidget(this, _self));

View File

@ -193,7 +193,7 @@ void Widget::resizeUsingInnerHeight(int newWidth, int newContentLeft) {
update(); update();
} }
void Widget::showDone() { void Widget::showFinished() {
_inner->showFinished(); _inner->showFinished();
} }

View File

@ -39,7 +39,7 @@ public:
Widget(QWidget *parent); Widget(QWidget *parent);
void parentResized() override; void parentResized() override;
void showDone() override; void showFinished() override;
protected: protected:
void paintEvent(QPaintEvent *e) override; void paintEvent(QPaintEvent *e) override;

View File

@ -246,12 +246,6 @@ void CountrySelectBox::resizeEvent(QResizeEvent *e) {
_topShadow.setGeometry(0, titleHeight() + _select->height(), width(), st::lineWidth); _topShadow.setGeometry(0, titleHeight() + _select->height(), width(), st::lineWidth);
} }
void CountrySelectBox::showAll() {
_select->show();
_topShadow.show();
ItemListBox::showAll();
}
void CountrySelectBox::onFilterUpdate(const QString &query) { void CountrySelectBox::onFilterUpdate(const QString &query) {
scrollArea()->scrollToY(0); scrollArea()->scrollToY(0);
_inner->updateFilter(query); _inner->updateFilter(query);

View File

@ -83,7 +83,6 @@ protected:
void resizeEvent(QResizeEvent *e) override; void resizeEvent(QResizeEvent *e) override;
void doSetInnerFocus() override; void doSetInnerFocus() override;
void showAll() override;
private: private:
void onFilterUpdate(const QString &query); void onFilterUpdate(const QString &query);

View File

@ -141,7 +141,7 @@ void WarningWidget::startAnimation(bool hiding) {
_hiddenCallback(); _hiddenCallback();
} }
} }
}, _hiding ? 1. : 0., _hiding ? 0. : 1., st::layerSlideDuration); }, _hiding ? 1. : 0., _hiding ? 0. : 1., st::boxDuration);
} }
} // namespace Theme } // namespace Theme