mirror of https://github.com/procxx/kepka.git
report spam panel added
This commit is contained in:
parent
c45d9e9860
commit
28e09ab39e
|
@ -485,6 +485,9 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
||||||
"lng_in_dlg_sticker" = "Sticker";
|
"lng_in_dlg_sticker" = "Sticker";
|
||||||
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
"lng_in_dlg_sticker_emoji" = "{emoji} (sticker)";
|
||||||
|
|
||||||
|
"lng_report_spam" = "Report Spam";
|
||||||
|
"lng_report_spam_hide" = "Hide";
|
||||||
|
|
||||||
"lng_send_button" = "Send";
|
"lng_send_button" = "Send";
|
||||||
"lng_message_ph" = "Write a message..";
|
"lng_message_ph" = "Write a message..";
|
||||||
"lng_record_cancel" = "Release outside this field to cancel";
|
"lng_record_cancel" = "Release outside this field to cancel";
|
||||||
|
|
|
@ -1072,7 +1072,34 @@ textRectMargins: margins(-2px, -1px, -2px, -1px);
|
||||||
taMsgField: flatTextarea(taDefFlat) {
|
taMsgField: flatTextarea(taDefFlat) {
|
||||||
font: msgFont;
|
font: msgFont;
|
||||||
}
|
}
|
||||||
maxFieldHeight: 243px;
|
maxFieldHeight: 220px;
|
||||||
|
// historyMinHeight: 56px;
|
||||||
|
|
||||||
|
reportSpamButton: flatButton(topBarActionButton) {
|
||||||
|
textTop: 6px;
|
||||||
|
overTextTop: 6px;
|
||||||
|
downTextTop: 7px;
|
||||||
|
|
||||||
|
width: -50px;
|
||||||
|
height: 30px;
|
||||||
|
|
||||||
|
bgColor: #888;
|
||||||
|
overBgColor: #7b7b7b;
|
||||||
|
downBgColor: #7b7b7b;
|
||||||
|
}
|
||||||
|
reportSpamHide: flatButton(topBarButton) {
|
||||||
|
height: 46px;
|
||||||
|
|
||||||
|
textTop: 15px;
|
||||||
|
overTextTop: 15px;
|
||||||
|
downTextTop: 16px;
|
||||||
|
|
||||||
|
bgColor: transparent;
|
||||||
|
overBgColor: transparent;
|
||||||
|
downBgColor: transparent;
|
||||||
|
}
|
||||||
|
reportSpamPadding: size(12px, 8px);
|
||||||
|
reportSpamBg: #ffffffc0;
|
||||||
|
|
||||||
newMsgSound: ':/gui/art/newmsg.wav';
|
newMsgSound: ':/gui/art/newmsg.wav';
|
||||||
|
|
||||||
|
|
|
@ -2220,8 +2220,11 @@ QString formatSizeText(qint64 size) {
|
||||||
qint64 sizeTenthMb = (size * 10 / (1024 * 1024));
|
qint64 sizeTenthMb = (size * 10 / (1024 * 1024));
|
||||||
return QString::number(sizeTenthMb / 10) + '.' + QString::number(sizeTenthMb % 10) + qsl(" MB");
|
return QString::number(sizeTenthMb / 10) + '.' + QString::number(sizeTenthMb % 10) + qsl(" MB");
|
||||||
}
|
}
|
||||||
qint64 sizeTenthKb = (size * 10 / 1024);
|
if (size >= 1024) {
|
||||||
return QString::number(sizeTenthKb / 10) + '.' + QString::number(sizeTenthKb % 10) + qsl(" KB");
|
qint64 sizeTenthKb = (size * 10 / 1024);
|
||||||
|
return QString::number(sizeTenthKb / 10) + '.' + QString::number(sizeTenthKb % 10) + qsl(" KB");
|
||||||
|
}
|
||||||
|
return QString::number(size) + qsl(" B");
|
||||||
}
|
}
|
||||||
|
|
||||||
QString formatDownloadText(qint64 ready, qint64 total) {
|
QString formatDownloadText(qint64 ready, qint64 total) {
|
||||||
|
@ -2231,11 +2234,15 @@ QString formatDownloadText(qint64 ready, qint64 total) {
|
||||||
readyStr = QString::number(readyTenthMb / 10) + '.' + QString::number(readyTenthMb % 10);
|
readyStr = QString::number(readyTenthMb / 10) + '.' + QString::number(readyTenthMb % 10);
|
||||||
totalStr = QString::number(totalTenthMb / 10) + '.' + QString::number(totalTenthMb % 10);
|
totalStr = QString::number(totalTenthMb / 10) + '.' + QString::number(totalTenthMb % 10);
|
||||||
mb = qsl("MB");
|
mb = qsl("MB");
|
||||||
} else {
|
} else if (total >= 1024) {
|
||||||
qint64 readyKb = (ready / 1024), totalKb = (total / 1024);
|
qint64 readyKb = (ready / 1024), totalKb = (total / 1024);
|
||||||
readyStr = QString::number(readyKb);
|
readyStr = QString::number(readyKb);
|
||||||
totalStr = QString::number(totalKb);
|
totalStr = QString::number(totalKb);
|
||||||
mb = qsl("KB");
|
mb = qsl("KB");
|
||||||
|
} else {
|
||||||
|
readyStr = QString::number(ready);
|
||||||
|
totalStr = QString::number(total);
|
||||||
|
mb = qsl("B");
|
||||||
}
|
}
|
||||||
return lng_save_downloaded(lt_ready, readyStr, lt_total, totalStr, lt_mb, mb);
|
return lng_save_downloaded(lt_ready, readyStr, lt_total, totalStr, lt_mb, mb);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1636,6 +1636,29 @@ void MessageField::focusInEvent(QFocusEvent *e) {
|
||||||
emit focused();
|
emit focused();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ReportSpamPanel::ReportSpamPanel(HistoryWidget *parent) : TWidget(parent),
|
||||||
|
_report(this, lang(lng_report_spam), st::reportSpamButton), _hide(this, lang(lng_report_spam_hide), st::reportSpamHide) {
|
||||||
|
resize(parent->width(), _hide.height() + st::titleShadow);
|
||||||
|
|
||||||
|
connect(&_report, SIGNAL(clicked()), this, SIGNAL(reportClicked()));
|
||||||
|
connect(&_hide, SIGNAL(clicked()), this, SIGNAL(hideClicked()));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ReportSpamPanel::resizeEvent(QResizeEvent *e) {
|
||||||
|
_report.moveToLeft(st::reportSpamPadding.width(), st::reportSpamPadding.height(), width());
|
||||||
|
_hide.moveToRight(0, 0, width());
|
||||||
|
}
|
||||||
|
|
||||||
|
void ReportSpamPanel::paintEvent(QPaintEvent *e) {
|
||||||
|
Painter p(this);
|
||||||
|
p.fillRect(QRect(0, 0, width(), height() - st::titleShadow), st::reportSpamBg->b);
|
||||||
|
if (cWideMode()) {
|
||||||
|
p.fillRect(st::titleShadow, height() - st::titleShadow, width() - st::titleShadow, st::titleShadow, st::titleShadowColor->b);
|
||||||
|
} else {
|
||||||
|
p.fillRect(0, height() - st::titleShadow, width(), st::titleShadow, st::titleShadowColor->b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
BotKeyboard::BotKeyboard() : _wasForMsgId(0), _height(0), _maxOuterHeight(0), _maximizeSize(false), _singleUse(false), _forceReply(false),
|
BotKeyboard::BotKeyboard() : _wasForMsgId(0), _height(0), _maxOuterHeight(0), _maximizeSize(false), _singleUse(false), _forceReply(false),
|
||||||
_sel(-1), _down(-1), _hoverAnim(animFunc(this, &BotKeyboard::hoverStep)), _st(&st::botKbButton) {
|
_sel(-1), _down(-1), _hoverAnim(animFunc(this, &BotKeyboard::hoverStep)), _st(&st::botKbButton) {
|
||||||
setGeometry(0, 0, _st->margin, _st->margin);
|
setGeometry(0, 0, _st->margin, _st->margin);
|
||||||
|
@ -2217,6 +2240,7 @@ HistoryWidget::HistoryWidget(QWidget *parent) : TWidget(parent)
|
||||||
, _histInited(false)
|
, _histInited(false)
|
||||||
, _toHistoryEnd(this, st::historyToEnd)
|
, _toHistoryEnd(this, st::historyToEnd)
|
||||||
, _attachMention(this)
|
, _attachMention(this)
|
||||||
|
, _reportSpamPanel(this)
|
||||||
, _send(this, lang(lng_send_button), st::btnSend)
|
, _send(this, lang(lng_send_button), st::btnSend)
|
||||||
, _unblock(this, lang(lng_unblock_button), st::btnUnblock)
|
, _unblock(this, lang(lng_unblock_button), st::btnUnblock)
|
||||||
, _botStart(this, lang(lng_bot_start), st::btnSend)
|
, _botStart(this, lang(lng_bot_start), st::btnSend)
|
||||||
|
@ -2329,6 +2353,9 @@ HistoryWidget::HistoryWidget(QWidget *parent) : TWidget(parent)
|
||||||
_unblock.hide();
|
_unblock.hide();
|
||||||
_botStart.hide();
|
_botStart.hide();
|
||||||
|
|
||||||
|
_reportSpamPanel.move(0, 0);
|
||||||
|
_reportSpamPanel.hide();
|
||||||
|
|
||||||
_attachDocument.hide();
|
_attachDocument.hide();
|
||||||
_attachPhoto.hide();
|
_attachPhoto.hide();
|
||||||
_attachEmoji.hide();
|
_attachEmoji.hide();
|
||||||
|
@ -2920,12 +2947,10 @@ void HistoryWidget::updateReportSpamStatus() {
|
||||||
_reportSpamStatus = ReportSpamShowButton;
|
_reportSpamStatus = ReportSpamShowButton;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!cContactsReceived()) {
|
if ((!_history->loadedAtTop() && (_history->size() < 2 || _history->size() == 2 && _history->at(1)->size() < 2)) || !cContactsReceived() || _firstLoadRequest) {
|
||||||
_reportSpamStatus = ReportSpamUnknown;
|
_reportSpamStatus = ReportSpamUnknown;
|
||||||
} else if (_peer->chat) {
|
} else if (_peer->chat) {
|
||||||
if (_firstLoadRequest && !_peer->asChat()->inviterForSpamReport) {
|
if (_peer->asChat()->inviterForSpamReport > 0) {
|
||||||
_reportSpamStatus = ReportSpamUnknown;
|
|
||||||
} else if (_peer->asChat()->inviterForSpamReport > 0) {
|
|
||||||
UserData *user = App::userLoaded(_peer->asChat()->inviterForSpamReport);
|
UserData *user = App::userLoaded(_peer->asChat()->inviterForSpamReport);
|
||||||
if (user && user->contact > 0) {
|
if (user && user->contact > 0) {
|
||||||
_reportSpamStatus = ReportSpamNoButton;
|
_reportSpamStatus = ReportSpamNoButton;
|
||||||
|
@ -2939,28 +2964,24 @@ void HistoryWidget::updateReportSpamStatus() {
|
||||||
if (_peer->asUser()->contact > 0) {
|
if (_peer->asUser()->contact > 0) {
|
||||||
_reportSpamStatus = ReportSpamNoButton;
|
_reportSpamStatus = ReportSpamNoButton;
|
||||||
} else {
|
} else {
|
||||||
if (_firstLoadRequest) {
|
bool anyFound = false, outFound = false;
|
||||||
_reportSpamStatus = ReportSpamUnknown;
|
for (int32 i = 0, l = _history->size(); i < l; ++i) {
|
||||||
} else {
|
for (int32 j = 0, c = _history->at(i)->size(); j < c; ++j) {
|
||||||
bool anyFound = false, outFound = false;
|
anyFound = true;
|
||||||
for (int32 i = 0, l = _history->size(); i < l; ++i) {
|
if (_history->at(i)->at(j)->out()) {
|
||||||
for (int32 j = 0, c = _history->at(i)->size(); j < c; ++j) {
|
outFound = true;
|
||||||
anyFound = true;
|
break;
|
||||||
if (_history->at(i)->at(j)->out()) {
|
|
||||||
outFound = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (anyFound) {
|
}
|
||||||
if (outFound) {
|
if (anyFound) {
|
||||||
_reportSpamStatus = ReportSpamNoButton;
|
if (outFound) {
|
||||||
} else {
|
_reportSpamStatus = ReportSpamNoButton;
|
||||||
_reportSpamStatus = ReportSpamShowButton;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
_reportSpamStatus = ReportSpamUnknown;
|
_reportSpamStatus = ReportSpamShowButton;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
_reportSpamStatus = ReportSpamUnknown;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2978,6 +2999,7 @@ void HistoryWidget::updateReportSpamStatus() {
|
||||||
|
|
||||||
void HistoryWidget::updateControlsVisibility() {
|
void HistoryWidget::updateControlsVisibility() {
|
||||||
if (!_history || _showAnim.animating()) {
|
if (!_history || _showAnim.animating()) {
|
||||||
|
_reportSpamPanel.hide();
|
||||||
_scroll.hide();
|
_scroll.hide();
|
||||||
_kbScroll.hide();
|
_kbScroll.hide();
|
||||||
_send.hide();
|
_send.hide();
|
||||||
|
@ -3004,6 +3026,11 @@ void HistoryWidget::updateControlsVisibility() {
|
||||||
} else {
|
} else {
|
||||||
_scroll.show();
|
_scroll.show();
|
||||||
}
|
}
|
||||||
|
if (_reportSpamStatus == ReportSpamShowButton) {
|
||||||
|
_reportSpamPanel.show();
|
||||||
|
} else {
|
||||||
|
_reportSpamPanel.hide();
|
||||||
|
}
|
||||||
if ((_peer->chat && !_peer->asChat()->forbidden && !_peer->asChat()->left) || (!_peer->chat && _peer->asUser()->access != UserNoAccess)) {
|
if ((_peer->chat && !_peer->asChat()->forbidden && !_peer->asChat()->left) || (!_peer->chat && _peer->asUser()->access != UserNoAccess)) {
|
||||||
checkMentionDropdown();
|
checkMentionDropdown();
|
||||||
if (isBlocked()) {
|
if (isBlocked()) {
|
||||||
|
@ -3221,6 +3248,10 @@ void HistoryWidget::messagesReceived(const MTPmessages_Messages &messages, mtpRe
|
||||||
addMessagesToFront(*histList);
|
addMessagesToFront(*histList);
|
||||||
_preloadRequest = 0;
|
_preloadRequest = 0;
|
||||||
onListScroll();
|
onListScroll();
|
||||||
|
if (_reportSpamStatus == ReportSpamUnknown) {
|
||||||
|
updateReportSpamStatus();
|
||||||
|
if (_reportSpamStatus != ReportSpamUnknown) updateControlsVisibility();
|
||||||
|
}
|
||||||
} else if (_preloadDownRequest == requestId) {
|
} else if (_preloadDownRequest == requestId) {
|
||||||
addMessagesToBack(*histList);
|
addMessagesToBack(*histList);
|
||||||
_preloadDownRequest = 0;
|
_preloadDownRequest = 0;
|
||||||
|
@ -3542,6 +3573,7 @@ void HistoryWidget::animShow(const QPixmap &bgAnimCache, const QPixmap &bgAnimTo
|
||||||
App::main()->topBar()->startAnim();
|
App::main()->topBar()->startAnim();
|
||||||
_scroll.hide();
|
_scroll.hide();
|
||||||
_kbScroll.hide();
|
_kbScroll.hide();
|
||||||
|
_reportSpamPanel.hide();
|
||||||
_toHistoryEnd.hide();
|
_toHistoryEnd.hide();
|
||||||
_attachDocument.hide();
|
_attachDocument.hide();
|
||||||
_attachPhoto.hide();
|
_attachPhoto.hide();
|
||||||
|
@ -4588,6 +4620,8 @@ void HistoryWidget::msgUpdated(PeerId peer, const HistoryItem *msg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::resizeEvent(QResizeEvent *e) {
|
void HistoryWidget::resizeEvent(QResizeEvent *e) {
|
||||||
|
_reportSpamPanel.resize(width(), _reportSpamPanel.height());
|
||||||
|
|
||||||
int32 maxKeyboardHeight = int(st::maxFieldHeight) - _field.height();
|
int32 maxKeyboardHeight = int(st::maxFieldHeight) - _field.height();
|
||||||
_keyboard.resizeToWidth(width(), maxKeyboardHeight);
|
_keyboard.resizeToWidth(width(), maxKeyboardHeight);
|
||||||
|
|
||||||
|
|
|
@ -208,6 +208,28 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class HistoryWidget;
|
||||||
|
class ReportSpamPanel : public TWidget {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
ReportSpamPanel(HistoryWidget *parent);
|
||||||
|
|
||||||
|
void resizeEvent(QResizeEvent *e);
|
||||||
|
void paintEvent(QPaintEvent *e);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
void hideClicked();
|
||||||
|
void reportClicked();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
FlatButton _report, _hide;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
class BotKeyboard : public QWidget {
|
class BotKeyboard : public QWidget {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -657,6 +679,8 @@ private:
|
||||||
bool isBlocked() const;
|
bool isBlocked() const;
|
||||||
bool updateCmdStartShown();
|
bool updateCmdStartShown();
|
||||||
|
|
||||||
|
ReportSpamPanel _reportSpamPanel;
|
||||||
|
|
||||||
FlatButton _send, _unblock, _botStart;
|
FlatButton _send, _unblock, _botStart;
|
||||||
mtpRequestId _unblockRequest;
|
mtpRequestId _unblockRequest;
|
||||||
IconedButton _attachDocument, _attachPhoto, _attachEmoji, _kbShow, _kbHide, _cmdStart;
|
IconedButton _attachDocument, _attachPhoto, _attachEmoji, _kbShow, _kbHide, _cmdStart;
|
||||||
|
|
|
@ -206,11 +206,15 @@ void MediaView::updateDocSize() {
|
||||||
readyStr = QString::number(readyTenthMb / 10) + '.' + QString::number(readyTenthMb % 10);
|
readyStr = QString::number(readyTenthMb / 10) + '.' + QString::number(readyTenthMb % 10);
|
||||||
totalStr = QString::number(totalTenthMb / 10) + '.' + QString::number(totalTenthMb % 10);
|
totalStr = QString::number(totalTenthMb / 10) + '.' + QString::number(totalTenthMb % 10);
|
||||||
mb = qsl("MB");
|
mb = qsl("MB");
|
||||||
} else {
|
} else if (total >= 1024) {
|
||||||
qint64 readyKb = (ready / 1024), totalKb = (total / 1024);
|
qint64 readyKb = (ready / 1024), totalKb = (total / 1024);
|
||||||
readyStr = QString::number(readyKb);
|
readyStr = QString::number(readyKb);
|
||||||
totalStr = QString::number(totalKb);
|
totalStr = QString::number(totalKb);
|
||||||
mb = qsl("KB");
|
mb = qsl("KB");
|
||||||
|
} else {
|
||||||
|
readyStr = QString::number(ready);
|
||||||
|
totalStr = QString::number(total);
|
||||||
|
mb = qsl("B");
|
||||||
}
|
}
|
||||||
_docSize = lng_media_save_progress(lt_ready, readyStr, lt_total, totalStr, lt_mb, mb);
|
_docSize = lng_media_save_progress(lt_ready, readyStr, lt_total, totalStr, lt_mb, mb);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue