Crash in Qt fixed for OS X. Edited badge removed for bot messages.

Sticker with reply layout fixed once more.
This commit is contained in:
John Preston 2016-06-08 21:46:37 +03:00
parent 8b2c351933
commit 23a598ba3d
3 changed files with 54 additions and 28 deletions

View File

@ -4728,21 +4728,21 @@ void HistorySticker::initDimensions() {
if (_pixh < 1) _pixh = 1; if (_pixh < 1) _pixh = 1;
_maxw = qMax(_pixw, int16(st::minPhotoSize)); _maxw = qMax(_pixw, int16(st::minPhotoSize));
_minh = qMax(_pixh, int16(st::minPhotoSize)); _minh = qMax(_pixh, int16(st::minPhotoSize));
if (_parent->getMedia() == this) {
_maxw += additionalWidth();
}
_height = _minh; _height = _minh;
} }
int HistorySticker::resizeGetHeight(int width) { // return new height int HistorySticker::resizeGetHeight(int width) { // return new height
int maxWidth = _maxw; _width = qMin(width, _maxw);
if (_parent->getMedia() == this) {
maxWidth += additionalWidth();
}
_width = qMin(width, maxWidth);
if (_parent->getMedia() == this) { if (_parent->getMedia() == this) {
auto via = _parent->Get<HistoryMessageVia>(); auto via = _parent->Get<HistoryMessageVia>();
auto reply = _parent->Get<HistoryMessageReply>(); auto reply = _parent->Get<HistoryMessageReply>();
if (via || reply) { if (via || reply) {
int availw = _width - _maxw - st::msgReplyPadding.left() - st::msgReplyPadding.left() - st::msgReplyPadding.left(); int usew = _maxw - additionalWidth(via, reply);
int availw = _width - usew - st::msgReplyPadding.left() - st::msgReplyPadding.left() - st::msgReplyPadding.left();
if (via) { if (via) {
via->resize(availw); via->resize(availw);
} }
@ -4767,6 +4767,7 @@ void HistorySticker::draw(Painter &p, const QRect &r, TextSelection selection, u
auto via = childmedia ? nullptr : _parent->Get<HistoryMessageVia>(); auto via = childmedia ? nullptr : _parent->Get<HistoryMessageVia>();
auto reply = childmedia ? nullptr : _parent->Get<HistoryMessageReply>(); auto reply = childmedia ? nullptr : _parent->Get<HistoryMessageReply>();
if (via || reply) { if (via || reply) {
usew -= additionalWidth(via, reply);
if (isPost) { if (isPost) {
} else if (out) { } else if (out) {
usex = _width - usew; usex = _width - usew;
@ -4836,6 +4837,7 @@ HistoryTextState HistorySticker::getState(int x, int y, HistoryStateRequest requ
auto via = childmedia ? nullptr : _parent->Get<HistoryMessageVia>(); auto via = childmedia ? nullptr : _parent->Get<HistoryMessageVia>();
auto reply = childmedia ? nullptr : _parent->Get<HistoryMessageReply>(); auto reply = childmedia ? nullptr : _parent->Get<HistoryMessageReply>();
if (via || reply) { if (via || reply) {
usew -= additionalWidth(via, reply);
if (isPost) { if (isPost) {
} else if (out) { } else if (out) {
usex = _width - usew; usex = _width - usew;
@ -6207,10 +6209,12 @@ void HistoryMessageReply::clearData(HistoryMessage *holder) {
replyToMsgId = 0; replyToMsgId = 0;
} }
void HistoryMessageReply::checkNameUpdate() const { bool HistoryMessageReply::isNameUpdated() const {
if (replyToMsg && replyToMsg->author()->nameVersion > replyToVersion) { if (replyToMsg && replyToMsg->author()->nameVersion > replyToVersion) {
updateName(); updateName();
return true;
} }
return false;
} }
void HistoryMessageReply::updateName() const { void HistoryMessageReply::updateName() const {
@ -6482,6 +6486,22 @@ void HistoryMessage::createComponentsHelper(MTPDmessage::Flags flags, MsgId repl
createComponents(config); createComponents(config);
} }
bool HistoryMessage::displayEditedBadge(bool hasViaBot) const {
if (!(_flags & MTPDmessage::Flag::f_edit_date)) {
return false;
}
if (auto fromUser = from()->asUser()) {
if (fromUser->botInfo) {
return false;
}
}
if (hasViaBot) {
return false;
}
return true;
}
void HistoryMessage::createComponents(const CreateConfig &config) { void HistoryMessage::createComponents(const CreateConfig &config) {
uint64 mask = 0; uint64 mask = 0;
if (config.replyTo) { if (config.replyTo) {
@ -6496,7 +6516,7 @@ void HistoryMessage::createComponents(const CreateConfig &config) {
if (isPost() && _from->isUser()) { if (isPost() && _from->isUser()) {
mask |= HistoryMessageSigned::Bit(); mask |= HistoryMessageSigned::Bit();
} }
if (wasEdited()) { if (displayEditedBadge(config.viaBotId != 0)) {
mask |= HistoryMessageEdited::Bit(); mask |= HistoryMessageEdited::Bit();
} }
if (config.authorIdOriginal && config.fromIdOriginal) { if (config.authorIdOriginal && config.fromIdOriginal) {
@ -6638,6 +6658,10 @@ int32 HistoryMessage::plainMaxWidth() const {
} }
void HistoryMessage::initDimensions() { void HistoryMessage::initDimensions() {
auto reply = Get<HistoryMessageReply>();
if (reply) {
reply->updateName();
}
if (drawBubble()) { if (drawBubble()) {
auto fwd = Get<HistoryMessageForwarded>(); auto fwd = Get<HistoryMessageForwarded>();
auto via = Get<HistoryMessageVia>(); auto via = Get<HistoryMessageVia>();
@ -6696,15 +6720,12 @@ void HistoryMessage::initDimensions() {
_maxw = _media->maxWidth(); _maxw = _media->maxWidth();
_minh = _media->minHeight(); _minh = _media->minHeight();
} }
if (auto reply = Get<HistoryMessageReply>()) { if (reply && !_text.isEmpty()) {
reply->updateName(); int replyw = st::msgPadding.left() + reply->_maxReplyWidth - st::msgReplyPadding.left() - st::msgReplyPadding.right() + st::msgPadding.right();
if (!_text.isEmpty()) { if (reply->_replyToVia) {
int replyw = st::msgPadding.left() + reply->_maxReplyWidth - st::msgReplyPadding.left() - st::msgReplyPadding.right() + st::msgPadding.right(); replyw += st::msgServiceFont->spacew + reply->_replyToVia->_maxWidth;
if (reply->_replyToVia) {
replyw += st::msgServiceFont->spacew + reply->_replyToVia->_maxWidth;
}
if (replyw > _maxw) _maxw = replyw;
} }
if (replyw > _maxw) _maxw = replyw;
} }
if (HistoryMessageReplyMarkup *markup = inlineReplyMarkup()) { if (HistoryMessageReplyMarkup *markup = inlineReplyMarkup()) {
if (!markup->inlineKeyboard) { if (!markup->inlineKeyboard) {
@ -6761,10 +6782,14 @@ void HistoryMessage::applyEdition(const MTPDmessage &message) {
if (message.has_edit_date()) { if (message.has_edit_date()) {
_flags |= MTPDmessage::Flag::f_edit_date; _flags |= MTPDmessage::Flag::f_edit_date;
if (!Has<HistoryMessageEdited>()) { if (displayEditedBadge(Has<HistoryMessageVia>())) {
AddComponents(HistoryMessageEdited::Bit()); if (!Has<HistoryMessageEdited>()) {
AddComponents(HistoryMessageEdited::Bit());
}
Get<HistoryMessageEdited>()->create(::date(message.vedit_date), date);
} else if (Has<HistoryMessageEdited>()) {
RemoveComponents(HistoryMessageEdited::Bit());
} }
Get<HistoryMessageEdited>()->create(::date(message.vedit_date), date);
initTime(); initTime();
} }
@ -7161,11 +7186,6 @@ void HistoryMessage::draw(Painter &p, const QRect &r, TextSelection selection, u
p.translate(-left, -top); p.translate(-left, -top);
} }
auto reply = Get<HistoryMessageReply>();
if (reply) {
reply->checkNameUpdate();
}
if (bubble) { if (bubble) {
auto fwd = Get<HistoryMessageForwarded>(); auto fwd = Get<HistoryMessageForwarded>();
auto via = Get<HistoryMessageVia>(); auto via = Get<HistoryMessageVia>();
@ -7225,6 +7245,11 @@ void HistoryMessage::draw(Painter &p, const QRect &r, TextSelection selection, u
} }
textstyleRestore(); textstyleRestore();
auto reply = Get<HistoryMessageReply>();
if (reply && reply->isNameUpdated()) {
const_cast<HistoryMessage*>(this)->setPendingInitDimensions();
}
} }
void HistoryMessage::paintForwardedInfo(Painter &p, QRect &trect, bool selected) const { void HistoryMessage::paintForwardedInfo(Painter &p, QRect &trect, bool selected) const {

View File

@ -823,7 +823,7 @@ struct HistoryMessageReply : public BaseComponent<HistoryMessageReply> {
bool updateData(HistoryMessage *holder, bool force = false); bool updateData(HistoryMessage *holder, bool force = false);
void clearData(HistoryMessage *holder); // must be called before destructor void clearData(HistoryMessage *holder); // must be called before destructor
void checkNameUpdate() const; bool isNameUpdated() const;
void updateName() const; void updateName() const;
void resize(int width) const; void resize(int width) const;
void itemRemoved(HistoryMessage *holder, HistoryItem *removed); void itemRemoved(HistoryMessage *holder, HistoryItem *removed);
@ -1299,9 +1299,6 @@ public:
} }
bool canEdit(const QDateTime &cur) const; bool canEdit(const QDateTime &cur) const;
bool wasEdited() const {
return _flags & MTPDmessage::Flag::f_edit_date;
}
bool suggestBanReportDeleteAll() const { bool suggestBanReportDeleteAll() const {
ChannelData *channel = history()->peer->asChannel(); ChannelData *channel = history()->peer->asChannel();
@ -2598,6 +2595,7 @@ public:
return (!emptyText() || !_media || !_media->isDisplayed() || Has<HistoryMessageReply>() || Has<HistoryMessageForwarded>() || viaBot() || !_media->hideFromName()); return (!emptyText() || !_media || !_media->isDisplayed() || Has<HistoryMessageReply>() || Has<HistoryMessageForwarded>() || viaBot() || !_media->hideFromName());
} }
bool displayEditedBadge(bool hasViaBot) const;
bool uploading() const { bool uploading() const {
return _media && _media->uploading(); return _media && _media->uploading();
} }

View File

@ -482,6 +482,9 @@ public:
bool skip = false, isNewLine = multiline && chIsNewline(ch), isSpace = chIsSpace(ch), isDiac = chIsDiac(ch), isTilde = checkTilde && (ch == '~'); bool skip = false, isNewLine = multiline && chIsNewline(ch), isSpace = chIsSpace(ch), isDiac = chIsDiac(ch), isTilde = checkTilde && (ch == '~');
if (chIsBad(ch) || ch.isLowSurrogate()) { if (chIsBad(ch) || ch.isLowSurrogate()) {
skip = true; skip = true;
} else if (ch == 0xFE0F && (cPlatform() == dbipMac || cPlatform() == dbipMacOld)) {
// Some sequences like 0x0E53 0xFE0F crash OS X harfbuzz text processing :(
skip = true;
} else if (isDiac) { } else if (isDiac) {
if (lastSkipped || emoji || ++diacs > chMaxDiacAfterSymbol()) { if (lastSkipped || emoji || ++diacs > chMaxDiacAfterSymbol()) {
skip = true; skip = true;