2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

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

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