mirror of https://github.com/procxx/kepka.git
Rename some methods in DocumentData.
Also fix voice message mark as read when autoplaying after previous. Also show play icon and don't show playlist for audio files that do not have shared music files attributes but have audio file mime type.
This commit is contained in:
parent
4ef3de5287
commit
8b69e6ab99
|
@ -1615,7 +1615,7 @@ namespace {
|
||||||
|
|
||||||
MediaKey newKey = convert->mediaKey();
|
MediaKey newKey = convert->mediaKey();
|
||||||
if (idChanged) {
|
if (idChanged) {
|
||||||
if (convert->voice()) {
|
if (convert->isVoiceMessage()) {
|
||||||
Local::copyAudio(oldKey, newKey);
|
Local::copyAudio(oldKey, newKey);
|
||||||
} else if (convert->sticker() || convert->isAnimation()) {
|
} else if (convert->sticker() || convert->isAnimation()) {
|
||||||
Local::copyStickerImage(oldKey, newKey);
|
Local::copyStickerImage(oldKey, newKey);
|
||||||
|
|
|
@ -325,7 +325,7 @@ void AutoDownloadBox::onSave() {
|
||||||
cSetAutoDownloadAudio(autoDownloadAudio);
|
cSetAutoDownloadAudio(autoDownloadAudio);
|
||||||
if (enabledPrivate || enabledGroups) {
|
if (enabledPrivate || enabledGroups) {
|
||||||
for (auto document : App::documentsData()) {
|
for (auto document : App::documentsData()) {
|
||||||
if (document->voice()) {
|
if (document->isVoiceMessage()) {
|
||||||
document->automaticLoadSettingsChanged();
|
document->automaticLoadSettingsChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -517,7 +517,7 @@ EditCaptionBox::EditCaptionBox(QWidget*, HistoryMedia *media, FullMsgId msgId) :
|
||||||
}
|
}
|
||||||
|
|
||||||
if (doc) {
|
if (doc) {
|
||||||
auto nameString = doc->voice()
|
auto nameString = doc->isVoiceMessage()
|
||||||
? lang(lng_media_audio)
|
? lang(lng_media_audio)
|
||||||
: doc->composeNameString();
|
: doc->composeNameString();
|
||||||
_name.setText(
|
_name.setText(
|
||||||
|
@ -529,7 +529,7 @@ EditCaptionBox::EditCaptionBox(QWidget*, HistoryMedia *media, FullMsgId msgId) :
|
||||||
_name.maxWidth(),
|
_name.maxWidth(),
|
||||||
st::normalFont->width(_status));
|
st::normalFont->width(_status));
|
||||||
_isImage = doc->isImage();
|
_isImage = doc->isImage();
|
||||||
_isAudio = (doc->voice() || doc->song());
|
_isAudio = (doc->isVoiceMessage() || doc->isAudioFile());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
int32 maxW = 0, maxH = 0;
|
int32 maxW = 0, maxH = 0;
|
||||||
|
|
|
@ -31,22 +31,48 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "auth_session.h"
|
#include "auth_session.h"
|
||||||
#include "messenger.h"
|
#include "messenger.h"
|
||||||
|
|
||||||
QString joinList(const QStringList &list, const QString &sep) {
|
namespace {
|
||||||
QString result;
|
|
||||||
if (list.isEmpty()) return result;
|
|
||||||
|
|
||||||
int32 l = list.size(), s = sep.size() * (l - 1);
|
QString JoinStringList(const QStringList &list, const QString &separator) {
|
||||||
for (int32 i = 0; i < l; ++i) {
|
const auto count = list.size();
|
||||||
s += list.at(i).size();
|
if (!count) {
|
||||||
|
return QString();
|
||||||
}
|
}
|
||||||
result.reserve(s);
|
|
||||||
result.append(list.at(0));
|
auto result = QString();
|
||||||
for (int32 i = 1; i < l; ++i) {
|
auto fullsize = separator.size() * (count - 1);
|
||||||
result.append(sep).append(list.at(i));
|
for (const auto &string : list) {
|
||||||
|
fullsize += string.size();
|
||||||
|
}
|
||||||
|
result.reserve(fullsize);
|
||||||
|
result.append(list[0]);
|
||||||
|
for (auto i = 1; i != count; ++i) {
|
||||||
|
result.append(separator).append(list[i]);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
bool fileIsImage(const QString &name, const QString &mime) {
|
||||||
|
QString lowermime = mime.toLower(), namelower = name.toLower();
|
||||||
|
if (lowermime.startsWith(qstr("image/"))) {
|
||||||
|
return true;
|
||||||
|
} else if (namelower.endsWith(qstr(".bmp"))
|
||||||
|
|| namelower.endsWith(qstr(".jpg"))
|
||||||
|
|| namelower.endsWith(qstr(".jpeg"))
|
||||||
|
|| namelower.endsWith(qstr(".gif"))
|
||||||
|
|| namelower.endsWith(qstr(".webp"))
|
||||||
|
|| namelower.endsWith(qstr(".tga"))
|
||||||
|
|| namelower.endsWith(qstr(".tiff"))
|
||||||
|
|| namelower.endsWith(qstr(".tif"))
|
||||||
|
|| namelower.endsWith(qstr(".psd"))
|
||||||
|
|| namelower.endsWith(qstr(".png"))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
QString saveFileName(const QString &title, const QString &filter, const QString &prefix, QString name, bool savingAs, const QDir &dir) {
|
QString saveFileName(const QString &title, const QString &filter, const QString &prefix, QString name, bool savingAs, const QDir &dir) {
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
name = name.replace(QRegularExpression(qsl("[\\\\\\/\\:\\*\\?\\\"\\<\\>\\|]")), qsl("_"));
|
name = name.replace(QRegularExpression(qsl("[\\\\\\/\\:\\*\\?\\\"\\<\\>\\|]")), qsl("_"));
|
||||||
|
@ -81,9 +107,9 @@ QString saveFileName(const QString &title, const QString &filter, const QString
|
||||||
QRegularExpressionMatch m = QRegularExpression(qsl(" \\*\\.") + ext + qsl("[\\)\\s]"), QRegularExpression::CaseInsensitiveOption).match(first);
|
QRegularExpressionMatch m = QRegularExpression(qsl(" \\*\\.") + ext + qsl("[\\)\\s]"), QRegularExpression::CaseInsensitiveOption).match(first);
|
||||||
if (m.hasMatch() && m.capturedStart() > start + 3) {
|
if (m.hasMatch() && m.capturedStart() > start + 3) {
|
||||||
int32 oldpos = m.capturedStart(), oldend = m.capturedEnd();
|
int32 oldpos = m.capturedStart(), oldend = m.capturedEnd();
|
||||||
fil = first.mid(0, start + 3) + ext + qsl(" *.") + first.mid(start + 3, oldpos - start - 3) + first.mid(oldend - 1) + sep + joinList(filters.mid(1), sep);
|
fil = first.mid(0, start + 3) + ext + qsl(" *.") + first.mid(start + 3, oldpos - start - 3) + first.mid(oldend - 1) + sep + JoinStringList(filters.mid(1), sep);
|
||||||
} else {
|
} else {
|
||||||
fil = first.mid(0, start + 3) + ext + qsl(" *.") + first.mid(start + 3) + sep + joinList(filters.mid(1), sep);
|
fil = first.mid(0, start + 3) + ext + qsl(" *.") + first.mid(start + 3) + sep + JoinStringList(filters.mid(1), sep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -162,14 +188,14 @@ QString documentSaveFilename(const DocumentData *data, bool forceSavingAs = fals
|
||||||
MimeType mimeType = mimeTypeForName(data->mimeString());
|
MimeType mimeType = mimeTypeForName(data->mimeString());
|
||||||
QStringList p = mimeType.globPatterns();
|
QStringList p = mimeType.globPatterns();
|
||||||
QString pattern = p.isEmpty() ? QString() : p.front();
|
QString pattern = p.isEmpty() ? QString() : p.front();
|
||||||
if (data->voice()) {
|
if (data->isVoiceMessage()) {
|
||||||
auto mp3 = data->hasMimeType(qstr("audio/mp3"));
|
auto mp3 = data->hasMimeType(qstr("audio/mp3"));
|
||||||
name = already.isEmpty() ? (mp3 ? qsl(".mp3") : qsl(".ogg")) : already;
|
name = already.isEmpty() ? (mp3 ? qsl(".mp3") : qsl(".ogg")) : already;
|
||||||
filter = mp3 ? qsl("MP3 Audio (*.mp3);;") : qsl("OGG Opus Audio (*.ogg);;");
|
filter = mp3 ? qsl("MP3 Audio (*.mp3);;") : qsl("OGG Opus Audio (*.ogg);;");
|
||||||
filter += FileDialog::AllFilesFilter();
|
filter += FileDialog::AllFilesFilter();
|
||||||
caption = lang(lng_save_audio);
|
caption = lang(lng_save_audio);
|
||||||
prefix = qsl("audio");
|
prefix = qsl("audio");
|
||||||
} else if (data->isVideo()) {
|
} else if (data->isVideoFile()) {
|
||||||
name = already.isEmpty() ? data->filename() : already;
|
name = already.isEmpty() ? data->filename() : already;
|
||||||
if (name.isEmpty()) {
|
if (name.isEmpty()) {
|
||||||
name = pattern.isEmpty() ? qsl(".mov") : pattern.replace('*', QString());
|
name = pattern.isEmpty() ? qsl(".mov") : pattern.replace('*', QString());
|
||||||
|
@ -191,7 +217,7 @@ QString documentSaveFilename(const DocumentData *data, bool forceSavingAs = fals
|
||||||
} else {
|
} else {
|
||||||
filter = mimeType.filterString() + qsl(";;") + FileDialog::AllFilesFilter();
|
filter = mimeType.filterString() + qsl(";;") + FileDialog::AllFilesFilter();
|
||||||
}
|
}
|
||||||
caption = lang(data->song() ? lng_save_audio_file : lng_save_file);
|
caption = lang(data->isAudioFile() ? lng_save_audio_file : lng_save_file);
|
||||||
prefix = qsl("doc");
|
prefix = qsl("doc");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,12 +228,12 @@ void DocumentOpenClickHandler::doOpen(DocumentData *data, HistoryItem *context,
|
||||||
if (!data->date) return;
|
if (!data->date) return;
|
||||||
|
|
||||||
auto msgId = context ? context->fullId() : FullMsgId();
|
auto msgId = context ? context->fullId() : FullMsgId();
|
||||||
bool playVoice = data->voice();
|
bool playVoice = data->isVoiceMessage();
|
||||||
bool playMusic = data->tryPlaySong();
|
bool playMusic = data->isAudioFile();
|
||||||
bool playVideo = data->isVideo();
|
bool playVideo = data->isVideoFile();
|
||||||
bool playAnimation = data->isAnimation();
|
bool playAnimation = data->isAnimation();
|
||||||
auto &location = data->location(true);
|
auto &location = data->location(true);
|
||||||
if (auto applyTheme = data->isTheme()) {
|
if (data->isTheme()) {
|
||||||
if (!location.isEmpty() && location.accessEnable()) {
|
if (!location.isEmpty() && location.accessEnable()) {
|
||||||
Messenger::Instance().showDocument(data, context);
|
Messenger::Instance().showDocument(data, context);
|
||||||
location.accessDisable();
|
location.accessDisable();
|
||||||
|
@ -258,7 +284,7 @@ void DocumentOpenClickHandler::doOpen(DocumentData *data, HistoryItem *context,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (App::main()) App::main()->mediaMarkRead(data);
|
if (App::main()) App::main()->mediaMarkRead(data);
|
||||||
} else if (data->voice() || data->song() || data->isVideo()) {
|
} else if (data->isVoiceMessage() || data->isAudioFile() || data->isVideoFile()) {
|
||||||
auto filepath = location.name();
|
auto filepath = location.name();
|
||||||
if (documentIsValidMediaFile(filepath)) {
|
if (documentIsValidMediaFile(filepath)) {
|
||||||
File::Launch(filepath);
|
File::Launch(filepath);
|
||||||
|
@ -303,12 +329,19 @@ void DocumentOpenClickHandler::doOpen(DocumentData *data, HistoryItem *context,
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentOpenClickHandler::onClickImpl() const {
|
void DocumentOpenClickHandler::onClickImpl() const {
|
||||||
auto item = App::hoveredLinkItem() ? App::hoveredLinkItem() : (App::contextItem() ? App::contextItem() : nullptr);
|
const auto item = App::hoveredLinkItem()
|
||||||
doOpen(document(), item, document()->voice() ? ActionOnLoadNone : ActionOnLoadOpen);
|
? App::hoveredLinkItem()
|
||||||
|
: (App::contextItem() ? App::contextItem() : nullptr);
|
||||||
|
const auto action = document()->isVoiceMessage()
|
||||||
|
? ActionOnLoadNone
|
||||||
|
: ActionOnLoadOpen;
|
||||||
|
doOpen(document(), item, action);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GifOpenClickHandler::onClickImpl() const {
|
void GifOpenClickHandler::onClickImpl() const {
|
||||||
auto item = App::hoveredLinkItem() ? App::hoveredLinkItem() : (App::contextItem() ? App::contextItem() : nullptr);
|
const auto item = App::hoveredLinkItem()
|
||||||
|
? App::hoveredLinkItem()
|
||||||
|
: (App::contextItem() ? App::contextItem() : nullptr);
|
||||||
doOpen(document(), item, ActionOnLoadPlayInline);
|
doOpen(document(), item, ActionOnLoadPlayInline);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -428,20 +461,20 @@ void DocumentData::setattributes(const QVector<MTPDocumentAttribute> &attributes
|
||||||
_additional = std::make_unique<SongData>();
|
_additional = std::make_unique<SongData>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (voice()) {
|
if (const auto voiceData = voice()) {
|
||||||
voice()->duration = d.vduration.v;
|
voiceData->duration = d.vduration.v;
|
||||||
VoiceWaveform waveform = documentWaveformDecode(qba(d.vwaveform));
|
VoiceWaveform waveform = documentWaveformDecode(qba(d.vwaveform));
|
||||||
uchar wavemax = 0;
|
uchar wavemax = 0;
|
||||||
for (int32 i = 0, l = waveform.size(); i < l; ++i) {
|
for (int32 i = 0, l = waveform.size(); i < l; ++i) {
|
||||||
uchar waveat = waveform.at(i);
|
uchar waveat = waveform.at(i);
|
||||||
if (wavemax < waveat) wavemax = waveat;
|
if (wavemax < waveat) wavemax = waveat;
|
||||||
}
|
}
|
||||||
voice()->waveform = waveform;
|
voiceData->waveform = waveform;
|
||||||
voice()->wavemax = wavemax;
|
voiceData->wavemax = wavemax;
|
||||||
} else if (song()) {
|
} else if (const auto songData = song()) {
|
||||||
song()->duration = d.vduration.v;
|
songData->duration = d.vduration.v;
|
||||||
song()->title = qs(d.vtitle);
|
songData->title = qs(d.vtitle);
|
||||||
song()->performer = qs(d.vperformer);
|
songData->performer = qs(d.vperformer);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case mtpc_documentAttributeFilename: {
|
case mtpc_documentAttributeFilename: {
|
||||||
|
@ -472,7 +505,7 @@ void DocumentData::setattributes(const QVector<MTPDocumentAttribute> &attributes
|
||||||
bool DocumentData::saveToCache() const {
|
bool DocumentData::saveToCache() const {
|
||||||
return (type == StickerDocument && size < Storage::kMaxStickerInMemory)
|
return (type == StickerDocument && size < Storage::kMaxStickerInMemory)
|
||||||
|| (isAnimation() && size < Storage::kMaxAnimationInMemory)
|
|| (isAnimation() && size < Storage::kMaxAnimationInMemory)
|
||||||
|| (voice() && size < Storage::kMaxVoiceInMemory);
|
|| (isVoiceMessage() && size < Storage::kMaxVoiceInMemory);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentData::forget() {
|
void DocumentData::forget() {
|
||||||
|
@ -500,7 +533,7 @@ void DocumentData::automaticLoad(const HistoryItem *item) {
|
||||||
loadFromCloud = !(cAutoDownloadGif() & dbiadNoPrivate) || !(cAutoDownloadGif() & dbiadNoGroups);
|
loadFromCloud = !(cAutoDownloadGif() & dbiadNoPrivate) || !(cAutoDownloadGif() & dbiadNoGroups);
|
||||||
}
|
}
|
||||||
save(QString(), _actionOnLoad, _actionOnLoadMsgId, loadFromCloud ? LoadFromCloudOrLocal : LoadFromLocalOnly, true);
|
save(QString(), _actionOnLoad, _actionOnLoadMsgId, loadFromCloud ? LoadFromCloudOrLocal : LoadFromLocalOnly, true);
|
||||||
} else if (voice()) {
|
} else if (isVoiceMessage()) {
|
||||||
if (item) {
|
if (item) {
|
||||||
bool loadFromCloud = false;
|
bool loadFromCloud = false;
|
||||||
if (item->history()->peer->isUser()) {
|
if (item->history()->peer->isUser()) {
|
||||||
|
@ -515,7 +548,7 @@ void DocumentData::automaticLoad(const HistoryItem *item) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentData::automaticLoadSettingsChanged() {
|
void DocumentData::automaticLoadSettingsChanged() {
|
||||||
if (loaded() || status != FileReady || (!isAnimation() && !voice()) || !saveToCache() || _loader != CancelledMtpFileLoader) {
|
if (loaded() || status != FileReady || (!isAnimation() && !isVoiceMessage()) || !saveToCache() || _loader != CancelledMtpFileLoader) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_loader = nullptr;
|
_loader = nullptr;
|
||||||
|
@ -527,9 +560,9 @@ void DocumentData::performActionOnLoad() {
|
||||||
auto loc = location(true);
|
auto loc = location(true);
|
||||||
auto already = loc.name();
|
auto already = loc.name();
|
||||||
auto item = _actionOnLoadMsgId.msg ? App::histItemById(_actionOnLoadMsgId) : nullptr;
|
auto item = _actionOnLoadMsgId.msg ? App::histItemById(_actionOnLoadMsgId) : nullptr;
|
||||||
auto showImage = !isVideo() && (size < App::kImageSizeLimit);
|
auto showImage = !isVideoFile() && (size < App::kImageSizeLimit);
|
||||||
auto playVoice = voice() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen);
|
auto playVoice = isVoiceMessage() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen);
|
||||||
auto playMusic = tryPlaySong() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen);
|
auto playMusic = isAudioFile() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen);
|
||||||
auto playAnimation = isAnimation() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen) && showImage && item && item->getMedia();
|
auto playAnimation = isAnimation() && (_actionOnLoad == ActionOnLoadPlayInline || _actionOnLoad == ActionOnLoadOpen) && showImage && item && item->getMedia();
|
||||||
if (auto applyTheme = isTheme()) {
|
if (auto applyTheme = isTheme()) {
|
||||||
if (!loc.isEmpty() && loc.accessEnable()) {
|
if (!loc.isEmpty() && loc.accessEnable()) {
|
||||||
|
@ -582,7 +615,7 @@ void DocumentData::performActionOnLoad() {
|
||||||
if (_actionOnLoad == ActionOnLoadOpenWith) {
|
if (_actionOnLoad == ActionOnLoadOpenWith) {
|
||||||
File::OpenWith(already, QCursor::pos());
|
File::OpenWith(already, QCursor::pos());
|
||||||
} else if (_actionOnLoad == ActionOnLoadOpen || _actionOnLoad == ActionOnLoadPlayInline) {
|
} else if (_actionOnLoad == ActionOnLoadOpen || _actionOnLoad == ActionOnLoadPlayInline) {
|
||||||
if (voice() || song() || isVideo()) {
|
if (isVoiceMessage() || isAudioFile() || isVideoFile()) {
|
||||||
if (documentIsValidMediaFile(already)) {
|
if (documentIsValidMediaFile(already)) {
|
||||||
File::Launch(already);
|
File::Launch(already);
|
||||||
}
|
}
|
||||||
|
@ -844,7 +877,7 @@ ImagePtr DocumentData::makeReplyPreview() {
|
||||||
if (h <= 0) h = 1;
|
if (h <= 0) h = 1;
|
||||||
auto thumbSize = (w > h) ? QSize(w * st::msgReplyBarSize.height() / h, st::msgReplyBarSize.height()) : QSize(st::msgReplyBarSize.height(), h * st::msgReplyBarSize.height() / w);
|
auto thumbSize = (w > h) ? QSize(w * st::msgReplyBarSize.height() / h, st::msgReplyBarSize.height()) : QSize(st::msgReplyBarSize.height(), h * st::msgReplyBarSize.height() / w);
|
||||||
thumbSize *= cIntRetinaFactor();
|
thumbSize *= cIntRetinaFactor();
|
||||||
auto options = Images::Option::Smooth | (isRoundVideo() ? Images::Option::Circled : Images::Option::None) | Images::Option::TransparentBackground;
|
auto options = Images::Option::Smooth | (isVideoMessage() ? Images::Option::Circled : Images::Option::None) | Images::Option::TransparentBackground;
|
||||||
auto outerSize = st::msgReplyBarSize.height();
|
auto outerSize = st::msgReplyBarSize.height();
|
||||||
auto image = thumb->pixNoCache(thumbSize.width(), thumbSize.height(), options, outerSize, outerSize);
|
auto image = thumb->pixNoCache(thumbSize.width(), thumbSize.height(), options, outerSize, outerSize);
|
||||||
replyPreview = ImagePtr(image, "PNG");
|
replyPreview = ImagePtr(image, "PNG");
|
||||||
|
@ -855,27 +888,69 @@ ImagePtr DocumentData::makeReplyPreview() {
|
||||||
return replyPreview;
|
return replyPreview;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool fileIsImage(const QString &name, const QString &mime) {
|
bool DocumentData::isVoiceMessage() const {
|
||||||
QString lowermime = mime.toLower(), namelower = name.toLower();
|
return (type == VoiceDocument);
|
||||||
if (lowermime.startsWith(qstr("image/"))) {
|
}
|
||||||
return true;
|
|
||||||
} else if (namelower.endsWith(qstr(".bmp"))
|
bool DocumentData::isVideoMessage() const {
|
||||||
|| namelower.endsWith(qstr(".jpg"))
|
return (type == RoundVideoDocument);
|
||||||
|| namelower.endsWith(qstr(".jpeg"))
|
}
|
||||||
|| namelower.endsWith(qstr(".gif"))
|
|
||||||
|| namelower.endsWith(qstr(".webp"))
|
bool DocumentData::isAnimation() const {
|
||||||
|| namelower.endsWith(qstr(".tga"))
|
return (type == AnimatedDocument)
|
||||||
|| namelower.endsWith(qstr(".tiff"))
|
|| isVideoMessage()
|
||||||
|| namelower.endsWith(qstr(".tif"))
|
|| hasMimeType(qstr("image/gif"));
|
||||||
|| namelower.endsWith(qstr(".psd"))
|
}
|
||||||
|| namelower.endsWith(qstr(".png"))) {
|
|
||||||
|
bool DocumentData::isGifv() const {
|
||||||
|
return (type == AnimatedDocument)
|
||||||
|
&& hasMimeType(qstr("video/mp4"));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isTheme() const {
|
||||||
|
return
|
||||||
|
_filename.endsWith(
|
||||||
|
qstr(".tdesktop-theme"),
|
||||||
|
Qt::CaseInsensitive)
|
||||||
|
|| _filename.endsWith(
|
||||||
|
qstr(".tdesktop-palette"),
|
||||||
|
Qt::CaseInsensitive);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isSong() const {
|
||||||
|
return (type == SongDocument);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isAudioFile() const {
|
||||||
|
if (isVoiceMessage()) {
|
||||||
|
return false;
|
||||||
|
} else if (isSong()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
return _mimeString.startsWith(qstr("audio/"), Qt::CaseInsensitive);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isSharedMediaMusic() const {
|
||||||
|
if (const auto songData = song()) {
|
||||||
|
return (songData->duration > 0);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isVideoFile() const {
|
||||||
|
return (type == VideoDocument);
|
||||||
|
}
|
||||||
|
|
||||||
|
int32 DocumentData::duration() const {
|
||||||
|
return (isAnimation() || isVideoFile()) ? _duration : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DocumentData::isImage() const {
|
||||||
|
return !isAnimation() && !isVideoFile() && (_duration > 0);
|
||||||
|
}
|
||||||
|
|
||||||
void DocumentData::recountIsImage() {
|
void DocumentData::recountIsImage() {
|
||||||
if (isAnimation() || isVideo()) {
|
if (isAnimation() || isVideoFile()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_duration = fileIsImage(filename(), mimeString()) ? 1 : -1; // hack
|
_duration = fileIsImage(filename(), mimeString()) ? 1 : -1; // hack
|
||||||
|
@ -916,7 +991,7 @@ void DocumentData::collectLocalData(DocumentData *local) {
|
||||||
|
|
||||||
if (!local->_data.isEmpty()) {
|
if (!local->_data.isEmpty()) {
|
||||||
_data = local->_data;
|
_data = local->_data;
|
||||||
if (voice()) {
|
if (isVoiceMessage()) {
|
||||||
if (!Local::copyAudio(local->mediaKey(), mediaKey())) {
|
if (!Local::copyAudio(local->mediaKey(), mediaKey())) {
|
||||||
Local::writeAudio(mediaKey(), _data);
|
Local::writeAudio(mediaKey(), _data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,7 +163,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SongData *song() {
|
SongData *song() {
|
||||||
return (type == SongDocument)
|
return isSong()
|
||||||
? static_cast<SongData*>(_additional.get())
|
? static_cast<SongData*>(_additional.get())
|
||||||
: nullptr;
|
: nullptr;
|
||||||
}
|
}
|
||||||
|
@ -171,55 +171,24 @@ public:
|
||||||
return const_cast<DocumentData*>(this)->song();
|
return const_cast<DocumentData*>(this)->song();
|
||||||
}
|
}
|
||||||
VoiceData *voice() {
|
VoiceData *voice() {
|
||||||
return (type == VoiceDocument)
|
return isVoiceMessage()
|
||||||
? static_cast<VoiceData*>(_additional.get())
|
? static_cast<VoiceData*>(_additional.get())
|
||||||
: nullptr;
|
: nullptr;
|
||||||
}
|
}
|
||||||
const VoiceData *voice() const {
|
const VoiceData *voice() const {
|
||||||
return const_cast<DocumentData*>(this)->voice();
|
return const_cast<DocumentData*>(this)->voice();
|
||||||
}
|
}
|
||||||
bool isRoundVideo() const {
|
bool isVoiceMessage() const;
|
||||||
return (type == RoundVideoDocument);
|
bool isVideoMessage() const;
|
||||||
}
|
bool isSong() const;
|
||||||
bool isAnimation() const {
|
bool isAudioFile() const;
|
||||||
return (type == AnimatedDocument)
|
bool isVideoFile() const;
|
||||||
|| isRoundVideo()
|
bool isAnimation() const;
|
||||||
|| hasMimeType(qstr("image/gif"));
|
bool isGifv() const;
|
||||||
}
|
bool isTheme() const;
|
||||||
bool isGifv() const {
|
bool isSharedMediaMusic() const;
|
||||||
return (type == AnimatedDocument)
|
int32 duration() const;
|
||||||
&& hasMimeType(qstr("video/mp4"));
|
bool isImage() const;
|
||||||
}
|
|
||||||
bool isTheme() const {
|
|
||||||
return
|
|
||||||
_filename.endsWith(
|
|
||||||
qstr(".tdesktop-theme"),
|
|
||||||
Qt::CaseInsensitive)
|
|
||||||
|| _filename.endsWith(
|
|
||||||
qstr(".tdesktop-palette"),
|
|
||||||
Qt::CaseInsensitive);
|
|
||||||
}
|
|
||||||
bool tryPlaySong() const {
|
|
||||||
return (song() != nullptr)
|
|
||||||
|| _mimeString.startsWith(
|
|
||||||
qstr("audio/"),
|
|
||||||
Qt::CaseInsensitive);
|
|
||||||
}
|
|
||||||
bool isMusic() const {
|
|
||||||
if (auto s = song()) {
|
|
||||||
return (s->duration > 0);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
bool isVideo() const {
|
|
||||||
return (type == VideoDocument);
|
|
||||||
}
|
|
||||||
int32 duration() const {
|
|
||||||
return (isAnimation() || isVideo()) ? _duration : -1;
|
|
||||||
}
|
|
||||||
bool isImage() const {
|
|
||||||
return !isAnimation() && !isVideo() && (_duration > 0);
|
|
||||||
}
|
|
||||||
void recountIsImage();
|
void recountIsImage();
|
||||||
void setData(const QByteArray &data) {
|
void setData(const QByteArray &data) {
|
||||||
_data = data;
|
_data = data;
|
||||||
|
@ -306,9 +275,9 @@ private:
|
||||||
friend class Serialize::Document;
|
friend class Serialize::Document;
|
||||||
|
|
||||||
LocationType locationType() const {
|
LocationType locationType() const {
|
||||||
return voice()
|
return isVoiceMessage()
|
||||||
? AudioFileLocation
|
? AudioFileLocation
|
||||||
: isVideo()
|
: isVideoFile()
|
||||||
? VideoFileLocation
|
? VideoFileLocation
|
||||||
: DocumentFileLocation;
|
: DocumentFileLocation;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,11 +23,11 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "data/data_document.h"
|
#include "data/data_document.h"
|
||||||
|
|
||||||
void AudioMsgId::setTypeFromAudio() {
|
void AudioMsgId::setTypeFromAudio() {
|
||||||
if (_audio->voice() || _audio->isRoundVideo()) {
|
if (_audio->isVoiceMessage() || _audio->isVideoMessage()) {
|
||||||
_type = Type::Voice;
|
_type = Type::Voice;
|
||||||
} else if (_audio->isVideo()) {
|
} else if (_audio->isVideoFile()) {
|
||||||
_type = Type::Video;
|
_type = Type::Video;
|
||||||
} else if (_audio->tryPlaySong()) {
|
} else if (_audio->isAudioFile()) {
|
||||||
_type = Type::Song;
|
_type = Type::Song;
|
||||||
} else {
|
} else {
|
||||||
_type = Type::Unknown;
|
_type = Type::Unknown;
|
||||||
|
|
|
@ -824,9 +824,9 @@ void InnerWidget::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
auto lnkPhoto = dynamic_cast<PhotoClickHandler*>(_contextMenuLink.data());
|
auto lnkPhoto = dynamic_cast<PhotoClickHandler*>(_contextMenuLink.data());
|
||||||
auto lnkDocument = dynamic_cast<DocumentClickHandler*>(_contextMenuLink.data());
|
auto lnkDocument = dynamic_cast<DocumentClickHandler*>(_contextMenuLink.data());
|
||||||
auto lnkPeer = dynamic_cast<PeerClickHandler*>(_contextMenuLink.data());
|
auto lnkPeer = dynamic_cast<PeerClickHandler*>(_contextMenuLink.data());
|
||||||
auto lnkIsVideo = lnkDocument ? lnkDocument->document()->isVideo() : false;
|
auto lnkIsVideo = lnkDocument ? lnkDocument->document()->isVideoFile() : false;
|
||||||
auto lnkIsAudio = lnkDocument ? (lnkDocument->document()->voice() != nullptr) : false;
|
auto lnkIsVoice = lnkDocument ? lnkDocument->document()->isVoiceMessage() : false;
|
||||||
auto lnkIsSong = lnkDocument ? (lnkDocument->document()->song() != nullptr) : false;
|
auto lnkIsAudio = lnkDocument ? lnkDocument->document()->isAudioFile() : false;
|
||||||
if (lnkPhoto || lnkDocument) {
|
if (lnkPhoto || lnkDocument) {
|
||||||
if (isUponSelected > 0) {
|
if (isUponSelected > 0) {
|
||||||
_menu->addAction(lang(lng_context_copy_selected), [this] { copySelectedText(); })->setEnabled(true);
|
_menu->addAction(lang(lng_context_copy_selected), [this] { copySelectedText(); })->setEnabled(true);
|
||||||
|
@ -851,7 +851,7 @@ void InnerWidget::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
if (!document->filepath(DocumentData::FilePathResolveChecked).isEmpty()) {
|
if (!document->filepath(DocumentData::FilePathResolveChecked).isEmpty()) {
|
||||||
_menu->addAction(lang((cPlatform() == dbipMac || cPlatform() == dbipMacOld) ? lng_context_show_in_finder : lng_context_show_in_folder), [this] { showContextInFolder(); })->setEnabled(true);
|
_menu->addAction(lang((cPlatform() == dbipMac || cPlatform() == dbipMacOld) ? lng_context_show_in_finder : lng_context_show_in_folder), [this] { showContextInFolder(); })->setEnabled(true);
|
||||||
}
|
}
|
||||||
_menu->addAction(lang(lnkIsVideo ? lng_context_save_video : (lnkIsAudio ? lng_context_save_audio : (lnkIsSong ? lng_context_save_audio_file : lng_context_save_file))), App::LambdaDelayed(st::defaultDropdownMenu.menu.ripple.hideDuration, this, [this, document] {
|
_menu->addAction(lang(lnkIsVideo ? lng_context_save_video : (lnkIsVoice ? lng_context_save_audio : (lnkIsAudio ? lng_context_save_audio_file : lng_context_save_file))), App::LambdaDelayed(st::defaultDropdownMenu.menu.ripple.hideDuration, this, [this, document] {
|
||||||
saveDocumentToFile(document);
|
saveDocumentToFile(document);
|
||||||
}))->setEnabled(true);
|
}))->setEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1209,9 +1209,9 @@ void HistoryInner::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
HistoryItem *item = App::hoveredItem() ? App::hoveredItem() : App::hoveredLinkItem();
|
HistoryItem *item = App::hoveredItem() ? App::hoveredItem() : App::hoveredLinkItem();
|
||||||
PhotoClickHandler *lnkPhoto = dynamic_cast<PhotoClickHandler*>(_contextMenuLink.data());
|
PhotoClickHandler *lnkPhoto = dynamic_cast<PhotoClickHandler*>(_contextMenuLink.data());
|
||||||
DocumentClickHandler *lnkDocument = dynamic_cast<DocumentClickHandler*>(_contextMenuLink.data());
|
DocumentClickHandler *lnkDocument = dynamic_cast<DocumentClickHandler*>(_contextMenuLink.data());
|
||||||
bool lnkIsVideo = lnkDocument ? lnkDocument->document()->isVideo() : false;
|
auto lnkIsVideo = lnkDocument ? lnkDocument->document()->isVideoFile() : false;
|
||||||
bool lnkIsAudio = lnkDocument ? (lnkDocument->document()->voice() != nullptr) : false;
|
auto lnkIsVoice = lnkDocument ? lnkDocument->document()->isVoiceMessage() : false;
|
||||||
bool lnkIsSong = lnkDocument ? (lnkDocument->document()->song() != nullptr) : false;
|
auto lnkIsAudio = lnkDocument ? lnkDocument->document()->isAudioFile() : false;
|
||||||
if (lnkPhoto || lnkDocument) {
|
if (lnkPhoto || lnkDocument) {
|
||||||
if (isUponSelected > 0) {
|
if (isUponSelected > 0) {
|
||||||
_menu->addAction(lang((isUponSelected > 1) ? lng_context_copy_selected_items : lng_context_copy_selected), this, SLOT(copySelectedText()))->setEnabled(true);
|
_menu->addAction(lang((isUponSelected > 1) ? lng_context_copy_selected_items : lng_context_copy_selected), this, SLOT(copySelectedText()))->setEnabled(true);
|
||||||
|
@ -1249,7 +1249,7 @@ void HistoryInner::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
if (!document->filepath(DocumentData::FilePathResolveChecked).isEmpty()) {
|
if (!document->filepath(DocumentData::FilePathResolveChecked).isEmpty()) {
|
||||||
_menu->addAction(lang((cPlatform() == dbipMac || cPlatform() == dbipMacOld) ? lng_context_show_in_finder : lng_context_show_in_folder), this, SLOT(showContextInFolder()))->setEnabled(true);
|
_menu->addAction(lang((cPlatform() == dbipMac || cPlatform() == dbipMacOld) ? lng_context_show_in_finder : lng_context_show_in_folder), this, SLOT(showContextInFolder()))->setEnabled(true);
|
||||||
}
|
}
|
||||||
_menu->addAction(lang(lnkIsVideo ? lng_context_save_video : (lnkIsAudio ? lng_context_save_audio : (lnkIsSong ? lng_context_save_audio_file : lng_context_save_file))), App::LambdaDelayed(st::defaultDropdownMenu.menu.ripple.hideDuration, this, [this, document] {
|
_menu->addAction(lang(lnkIsVideo ? lng_context_save_video : (lnkIsVoice ? lng_context_save_audio : (lnkIsAudio ? lng_context_save_audio_file : lng_context_save_file))), App::LambdaDelayed(st::defaultDropdownMenu.menu.ripple.hideDuration, this, [this, document] {
|
||||||
saveDocumentToFile(document);
|
saveDocumentToFile(document);
|
||||||
}))->setEnabled(true);
|
}))->setEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1017,7 +1017,7 @@ QString HistoryItem::directLink() const {
|
||||||
if (!channel->isMegagroup()) {
|
if (!channel->isMegagroup()) {
|
||||||
if (auto media = getMedia()) {
|
if (auto media = getMedia()) {
|
||||||
if (auto document = media->getDocument()) {
|
if (auto document = media->getDocument()) {
|
||||||
if (document->isRoundVideo()) {
|
if (document->isVideoMessage()) {
|
||||||
return qsl("https://telesco.pe/") + query;
|
return qsl("https://telesco.pe/") + query;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,13 +105,13 @@ namespace {
|
||||||
|
|
||||||
int32 documentMaxStatusWidth(DocumentData *document) {
|
int32 documentMaxStatusWidth(DocumentData *document) {
|
||||||
int32 result = st::normalFont->width(formatDownloadText(document->size, document->size));
|
int32 result = st::normalFont->width(formatDownloadText(document->size, document->size));
|
||||||
if (auto song = document->song()) {
|
if (const auto song = document->song()) {
|
||||||
result = qMax(result, st::normalFont->width(formatPlayedText(song->duration, song->duration)));
|
result = qMax(result, st::normalFont->width(formatPlayedText(song->duration, song->duration)));
|
||||||
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(song->duration, document->size)));
|
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(song->duration, document->size)));
|
||||||
} else if (auto voice = document->voice()) {
|
} else if (const auto voice = document->voice()) {
|
||||||
result = qMax(result, st::normalFont->width(formatPlayedText(voice->duration, voice->duration)));
|
result = qMax(result, st::normalFont->width(formatPlayedText(voice->duration, voice->duration)));
|
||||||
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(voice->duration, document->size)));
|
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(voice->duration, document->size)));
|
||||||
} else if (document->isVideo()) {
|
} else if (document->isVideoFile()) {
|
||||||
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(document->duration(), document->size)));
|
result = qMax(result, st::normalFont->width(formatDurationAndSizeText(document->duration(), document->size)));
|
||||||
} else {
|
} else {
|
||||||
result = qMax(result, st::normalFont->width(formatSizeText(document->size)));
|
result = qMax(result, st::normalFont->width(formatSizeText(document->size)));
|
||||||
|
@ -1080,11 +1080,11 @@ HistoryDocument::HistoryDocument(
|
||||||
|
|
||||||
void HistoryDocument::createComponents(bool caption) {
|
void HistoryDocument::createComponents(bool caption) {
|
||||||
uint64 mask = 0;
|
uint64 mask = 0;
|
||||||
if (_data->voice()) {
|
if (_data->isVoiceMessage()) {
|
||||||
mask |= HistoryDocumentVoice::Bit();
|
mask |= HistoryDocumentVoice::Bit();
|
||||||
} else {
|
} else {
|
||||||
mask |= HistoryDocumentNamed::Bit();
|
mask |= HistoryDocumentNamed::Bit();
|
||||||
if (!_data->song()
|
if (!_data->isSong()
|
||||||
&& !documentIsExecutableName(_data->filename())
|
&& !documentIsExecutableName(_data->filename())
|
||||||
&& !_data->thumb->isNull()
|
&& !_data->thumb->isNull()
|
||||||
&& _data->thumb->width()
|
&& _data->thumb->width()
|
||||||
|
@ -1137,7 +1137,7 @@ void HistoryDocument::initDimensions() {
|
||||||
} else {
|
} else {
|
||||||
tleft = st::msgFilePadding.left() + st::msgFileSize + st::msgFilePadding.right();
|
tleft = st::msgFilePadding.left() + st::msgFileSize + st::msgFilePadding.right();
|
||||||
tright = st::msgFileThumbPadding.left();
|
tright = st::msgFileThumbPadding.left();
|
||||||
auto unread = _data->voice() ? (st::mediaUnreadSkip + st::mediaUnreadSize) : 0;
|
auto unread = _data->isVoiceMessage() ? (st::mediaUnreadSkip + st::mediaUnreadSize) : 0;
|
||||||
_maxw = qMax(_maxw, tleft + documentMaxStatusWidth(_data) + unread + _parent->skipBlockWidth() + st::msgPadding.right());
|
_maxw = qMax(_maxw, tleft + documentMaxStatusWidth(_data) + unread + _parent->skipBlockWidth() + st::msgPadding.right());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1317,7 +1317,7 @@ void HistoryDocument::draw(Painter &p, const QRect &r, TextSelection selection,
|
||||||
} else if (radial || _data->loading()) {
|
} else if (radial || _data->loading()) {
|
||||||
return &(outbg ? (selected ? st::historyFileOutCancelSelected : st::historyFileOutCancel) : (selected ? st::historyFileInCancelSelected : st::historyFileInCancel));
|
return &(outbg ? (selected ? st::historyFileOutCancelSelected : st::historyFileOutCancel) : (selected ? st::historyFileInCancelSelected : st::historyFileInCancel));
|
||||||
} else if (loaded) {
|
} else if (loaded) {
|
||||||
if (_data->song() || _data->voice()) {
|
if (_data->isAudioFile() || _data->isVoiceMessage()) {
|
||||||
return &(outbg ? (selected ? st::historyFileOutPlaySelected : st::historyFileOutPlay) : (selected ? st::historyFileInPlaySelected : st::historyFileInPlay));
|
return &(outbg ? (selected ? st::historyFileOutPlaySelected : st::historyFileOutPlay) : (selected ? st::historyFileInPlaySelected : st::historyFileInPlay));
|
||||||
} else if (_data->isImage()) {
|
} else if (_data->isImage()) {
|
||||||
return &(outbg ? (selected ? st::historyFileOutImageSelected : st::historyFileOutImage) : (selected ? st::historyFileInImageSelected : st::historyFileInImage));
|
return &(outbg ? (selected ? st::historyFileOutImageSelected : st::historyFileOutImage) : (selected ? st::historyFileInImageSelected : st::historyFileInImage));
|
||||||
|
@ -1335,8 +1335,8 @@ void HistoryDocument::draw(Painter &p, const QRect &r, TextSelection selection,
|
||||||
if (auto voice = Get<HistoryDocumentVoice>()) {
|
if (auto voice = Get<HistoryDocumentVoice>()) {
|
||||||
const VoiceWaveform *wf = nullptr;
|
const VoiceWaveform *wf = nullptr;
|
||||||
uchar norm_value = 0;
|
uchar norm_value = 0;
|
||||||
if (_data->voice()) {
|
if (const auto voiceData = _data->voice()) {
|
||||||
wf = &_data->voice()->waveform;
|
wf = &voiceData->waveform;
|
||||||
if (wf->isEmpty()) {
|
if (wf->isEmpty()) {
|
||||||
wf = nullptr;
|
wf = nullptr;
|
||||||
if (loaded) {
|
if (loaded) {
|
||||||
|
@ -1345,7 +1345,7 @@ void HistoryDocument::draw(Painter &p, const QRect &r, TextSelection selection,
|
||||||
} else if (wf->at(0) < 0) {
|
} else if (wf->at(0) < 0) {
|
||||||
wf = nullptr;
|
wf = nullptr;
|
||||||
} else {
|
} else {
|
||||||
norm_value = _data->voice()->wavemax;
|
norm_value = voiceData->wavemax;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
auto progress = ([voice] {
|
auto progress = ([voice] {
|
||||||
|
@ -1564,11 +1564,11 @@ TextWithEntities HistoryDocument::selectedText(TextSelection selection) const {
|
||||||
|
|
||||||
Storage::SharedMediaTypesMask HistoryDocument::sharedMediaTypes() const {
|
Storage::SharedMediaTypesMask HistoryDocument::sharedMediaTypes() const {
|
||||||
using Type = Storage::SharedMediaType;
|
using Type = Storage::SharedMediaType;
|
||||||
if (_data->voice()) {
|
if (_data->isVoiceMessage()) {
|
||||||
return Storage::SharedMediaTypesMask{}
|
return Storage::SharedMediaTypesMask{}
|
||||||
.added(Type::VoiceFile)
|
.added(Type::VoiceFile)
|
||||||
.added(Type::RoundVoiceFile);
|
.added(Type::RoundVoiceFile);
|
||||||
} else if (_data->isMusic()) {
|
} else if (_data->isSharedMediaMusic()) {
|
||||||
return Type::MusicFile;
|
return Type::MusicFile;
|
||||||
}
|
}
|
||||||
return Type::File;
|
return Type::File;
|
||||||
|
@ -1584,7 +1584,7 @@ void HistoryDocument::buildStringRepresentation(Callback callback) const {
|
||||||
QString attachType = lang(lng_in_dlg_file);
|
QString attachType = lang(lng_in_dlg_file);
|
||||||
if (Has<HistoryDocumentVoice>()) {
|
if (Has<HistoryDocumentVoice>()) {
|
||||||
attachType = lang(lng_in_dlg_audio);
|
attachType = lang(lng_in_dlg_audio);
|
||||||
} else if (_data->song()) {
|
} else if (_data->isAudioFile()) {
|
||||||
attachType = lang(lng_in_dlg_audio_file);
|
attachType = lang(lng_in_dlg_audio_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1598,7 +1598,11 @@ void HistoryDocument::buildStringRepresentation(Callback callback) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryDocument::setStatusSize(int32 newSize, qint64 realDuration) const {
|
void HistoryDocument::setStatusSize(int32 newSize, qint64 realDuration) const {
|
||||||
int32 duration = _data->song() ? _data->song()->duration : (_data->voice() ? _data->voice()->duration : -1);
|
int32 duration = _data->isSong()
|
||||||
|
? _data->song()->duration
|
||||||
|
: (_data->isVoiceMessage()
|
||||||
|
? _data->voice()->duration
|
||||||
|
: -1);
|
||||||
HistoryFileMedia::setStatusSize(newSize, _data->size, duration, realDuration);
|
HistoryFileMedia::setStatusSize(newSize, _data->size, duration, realDuration);
|
||||||
if (auto thumbed = Get<HistoryDocumentThumbed>()) {
|
if (auto thumbed = Get<HistoryDocumentThumbed>()) {
|
||||||
if (_statusSize == FileStatusSizeReady) {
|
if (_statusSize == FileStatusSizeReady) {
|
||||||
|
@ -1628,7 +1632,7 @@ bool HistoryDocument::updateStatusText() const {
|
||||||
} else if (_data->loaded()) {
|
} else if (_data->loaded()) {
|
||||||
using State = Media::Player::State;
|
using State = Media::Player::State;
|
||||||
statusSize = FileStatusSizeLoaded;
|
statusSize = FileStatusSizeLoaded;
|
||||||
if (_data->voice()) {
|
if (_data->isVoiceMessage()) {
|
||||||
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Voice);
|
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Voice);
|
||||||
if (state.id == AudioMsgId(_data, _parent->fullId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
if (state.id == AudioMsgId(_data, _parent->fullId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
||||||
if (auto voice = Get<HistoryDocumentVoice>()) {
|
if (auto voice = Get<HistoryDocumentVoice>()) {
|
||||||
|
@ -1658,7 +1662,7 @@ bool HistoryDocument::updateStatusText() const {
|
||||||
if (!showPause && (state.id == AudioMsgId(_data, _parent->fullId()))) {
|
if (!showPause && (state.id == AudioMsgId(_data, _parent->fullId()))) {
|
||||||
showPause = Media::Player::instance()->isSeeking(AudioMsgId::Type::Voice);
|
showPause = Media::Player::instance()->isSeeking(AudioMsgId::Type::Voice);
|
||||||
}
|
}
|
||||||
} else if (_data->song()) {
|
} else if (_data->isAudioFile()) {
|
||||||
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
||||||
if (state.id == AudioMsgId(_data, _parent->fullId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
if (state.id == AudioMsgId(_data, _parent->fullId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
||||||
statusSize = -1 - (state.position / state.frequency);
|
statusSize = -1 - (state.position / state.frequency);
|
||||||
|
@ -1723,10 +1727,10 @@ void HistoryDocument::clickHandlerPressedChanged(const ClickHandlerPtr &p, bool
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryDocument::playInline(bool autoplay) {
|
bool HistoryDocument::playInline(bool autoplay) {
|
||||||
if (_data->voice()) {
|
if (_data->isVoiceMessage()) {
|
||||||
DocumentOpenClickHandler::doOpen(_data, _parent, ActionOnLoadPlayInline);
|
DocumentOpenClickHandler::doOpen(_data, _parent, ActionOnLoadPlayInline);
|
||||||
return true;
|
return true;
|
||||||
} else if (_data->song()) {
|
} else if (_data->isAudioFile()) {
|
||||||
Media::Player::instance()->play(AudioMsgId(_data, _parent->fullId()));
|
Media::Player::instance()->play(AudioMsgId(_data, _parent->fullId()));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1750,7 +1754,7 @@ void HistoryDocument::updateSentMedia(const MTPMessageMedia &media) {
|
||||||
}
|
}
|
||||||
App::feedDocument(mediaDocument.vdocument, _data);
|
App::feedDocument(mediaDocument.vdocument, _data);
|
||||||
if (!_data->data().isEmpty()) {
|
if (!_data->data().isEmpty()) {
|
||||||
if (_data->voice()) {
|
if (_data->isVoiceMessage()) {
|
||||||
Local::writeAudio(_data->mediaKey(), _data->data());
|
Local::writeAudio(_data->mediaKey(), _data->data());
|
||||||
} else {
|
} else {
|
||||||
Local::writeStickerImage(_data->mediaKey(), _data->data());
|
Local::writeStickerImage(_data->mediaKey(), _data->data());
|
||||||
|
@ -1774,7 +1778,7 @@ HistoryGif::HistoryGif(not_null<HistoryItem*> parent, DocumentData *document, co
|
||||||
|
|
||||||
setStatusSize(FileStatusSizeReady);
|
setStatusSize(FileStatusSizeReady);
|
||||||
|
|
||||||
if (!caption.isEmpty() && !_data->isRoundVideo()) {
|
if (!caption.isEmpty() && !_data->isVideoMessage()) {
|
||||||
_caption.setText(st::messageTextStyle, caption + _parent->skipBlock(), itemTextNoMonoOptions(_parent));
|
_caption.setText(st::messageTextStyle, caption + _parent->skipBlock(), itemTextNoMonoOptions(_parent));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1899,7 +1903,7 @@ int HistoryGif::resizeGetHeight(int width) {
|
||||||
_width = qMax(_width, _parent->infoWidth() + 2 * int32(st::msgDateImgDelta + st::msgDateImgPadding.x()));
|
_width = qMax(_width, _parent->infoWidth() + 2 * int32(st::msgDateImgDelta + st::msgDateImgPadding.x()));
|
||||||
if (_gif && _gif->ready()) {
|
if (_gif && _gif->ready()) {
|
||||||
if (!_gif->started()) {
|
if (!_gif->started()) {
|
||||||
auto isRound = _data->isRoundVideo();
|
auto isRound = _data->isVideoMessage();
|
||||||
auto inWebPage = (_parent->getMedia() != this);
|
auto inWebPage = (_parent->getMedia() != this);
|
||||||
auto roundRadius = isRound ? ImageRoundRadius::Ellipse : inWebPage ? ImageRoundRadius::Small : ImageRoundRadius::Large;
|
auto roundRadius = isRound ? ImageRoundRadius::Ellipse : inWebPage ? ImageRoundRadius::Small : ImageRoundRadius::Large;
|
||||||
auto roundCorners = (isRound || inWebPage) ? ImageRoundCorner::All : ((isBubbleTop() ? (ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight) : ImageRoundCorner::None)
|
auto roundCorners = (isRound || inWebPage) ? ImageRoundCorner::All : ((isBubbleTop() ? (ImageRoundCorner::TopLeft | ImageRoundCorner::TopRight) : ImageRoundCorner::None)
|
||||||
|
@ -1961,7 +1965,7 @@ void HistoryGif::draw(Painter &p, const QRect &r, TextSelection selection, TimeM
|
||||||
|
|
||||||
auto captionw = width - st::msgPadding.left() - st::msgPadding.right();
|
auto captionw = width - st::msgPadding.left() - st::msgPadding.right();
|
||||||
|
|
||||||
auto isRound = _data->isRoundVideo();
|
auto isRound = _data->isVideoMessage();
|
||||||
auto displayMute = false;
|
auto displayMute = false;
|
||||||
auto animating = (_gif && _gif->started());
|
auto animating = (_gif && _gif->started());
|
||||||
|
|
||||||
|
@ -2244,7 +2248,7 @@ HistoryTextState HistoryGif::getState(QPoint point, HistoryStateRequest request)
|
||||||
}
|
}
|
||||||
auto outbg = _parent->hasOutLayout();
|
auto outbg = _parent->hasOutLayout();
|
||||||
auto isChildMedia = (_parent->getMedia() != this);
|
auto isChildMedia = (_parent->getMedia() != this);
|
||||||
auto isRound = _data->isRoundVideo();
|
auto isRound = _data->isVideoMessage();
|
||||||
auto usew = width, usex = 0;
|
auto usew = width, usex = 0;
|
||||||
auto separateRoundVideo = isSeparateRoundVideo();
|
auto separateRoundVideo = isSeparateRoundVideo();
|
||||||
auto via = separateRoundVideo ? _parent->Get<HistoryMessageVia>() : nullptr;
|
auto via = separateRoundVideo ? _parent->Get<HistoryMessageVia>() : nullptr;
|
||||||
|
@ -2315,7 +2319,7 @@ HistoryTextState HistoryGif::getState(QPoint point, HistoryStateRequest request)
|
||||||
if (QRect(usex + skipx, skipy, usew, height).contains(point)) {
|
if (QRect(usex + skipx, skipy, usew, height).contains(point)) {
|
||||||
if (_data->uploading()) {
|
if (_data->uploading()) {
|
||||||
result.link = _cancell;
|
result.link = _cancell;
|
||||||
} else if (!_gif || !cAutoPlayGif() || _data->isRoundVideo()) {
|
} else if (!_gif || !cAutoPlayGif() || _data->isVideoMessage()) {
|
||||||
result.link = _data->loaded() ? _openl : (_data->loading() ? _cancell : _savel);
|
result.link = _data->loaded() ? _openl : (_data->loading() ? _cancell : _savel);
|
||||||
} else {
|
} else {
|
||||||
result.link = _openInMediaviewLink;
|
result.link = _openInMediaviewLink;
|
||||||
|
@ -2373,7 +2377,7 @@ TextWithEntities HistoryGif::selectedText(TextSelection selection) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryGif::needsBubble() const {
|
bool HistoryGif::needsBubble() const {
|
||||||
if (_data->isRoundVideo()) {
|
if (_data->isVideoMessage()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!_caption.isEmpty()) {
|
if (!_caption.isEmpty()) {
|
||||||
|
@ -2390,7 +2394,7 @@ bool HistoryGif::needsBubble() const {
|
||||||
|
|
||||||
Storage::SharedMediaTypesMask HistoryGif::sharedMediaTypes() const {
|
Storage::SharedMediaTypesMask HistoryGif::sharedMediaTypes() const {
|
||||||
using Type = Storage::SharedMediaType;
|
using Type = Storage::SharedMediaType;
|
||||||
if (_data->isRoundVideo()) {
|
if (_data->isVideoMessage()) {
|
||||||
return Storage::SharedMediaTypesMask{}
|
return Storage::SharedMediaTypesMask{}
|
||||||
.added(Type::RoundFile)
|
.added(Type::RoundFile)
|
||||||
.added(Type::RoundVoiceFile);
|
.added(Type::RoundVoiceFile);
|
||||||
|
@ -2401,15 +2405,19 @@ Storage::SharedMediaTypesMask HistoryGif::sharedMediaTypes() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
QString HistoryGif::mediaTypeString() const {
|
QString HistoryGif::mediaTypeString() const {
|
||||||
return _data->isRoundVideo() ? lang(lng_in_dlg_video_message) : qsl("GIF");
|
return _data->isVideoMessage()
|
||||||
|
? lang(lng_in_dlg_video_message)
|
||||||
|
: qsl("GIF");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryGif::isSeparateRoundVideo() const {
|
bool HistoryGif::isSeparateRoundVideo() const {
|
||||||
return _data->isRoundVideo() && (_parent->getMedia() == this) && !_parent->hasBubble();
|
return _data->isVideoMessage()
|
||||||
|
&& (_parent->getMedia() == this)
|
||||||
|
&& !_parent->hasBubble();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryGif::setStatusSize(int32 newSize) const {
|
void HistoryGif::setStatusSize(int32 newSize) const {
|
||||||
if (_data->isRoundVideo()) {
|
if (_data->isVideoMessage()) {
|
||||||
_statusSize = newSize;
|
_statusSize = newSize;
|
||||||
if (newSize < 0) {
|
if (newSize < 0) {
|
||||||
_statusText = formatDurationText(-newSize - 1);
|
_statusText = formatDurationText(-newSize - 1);
|
||||||
|
@ -2460,7 +2468,7 @@ void HistoryGif::updateStatusText() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
QString HistoryGif::additionalInfoString() const {
|
QString HistoryGif::additionalInfoString() const {
|
||||||
if (_data->isRoundVideo()) {
|
if (_data->isVideoMessage()) {
|
||||||
updateStatusText();
|
updateStatusText();
|
||||||
return _statusText;
|
return _statusText;
|
||||||
}
|
}
|
||||||
|
@ -2509,7 +2517,7 @@ int HistoryGif::additionalWidth(const HistoryMessageVia *via, const HistoryMessa
|
||||||
|
|
||||||
bool HistoryGif::playInline(bool autoplay) {
|
bool HistoryGif::playInline(bool autoplay) {
|
||||||
using Mode = Media::Clip::Reader::Mode;
|
using Mode = Media::Clip::Reader::Mode;
|
||||||
if (_data->isRoundVideo() && _gif) {
|
if (_data->isVideoMessage() && _gif) {
|
||||||
// Stop autoplayed silent video when we start playback by click.
|
// Stop autoplayed silent video when we start playback by click.
|
||||||
// Stop finished video message when autoplay starts.
|
// Stop finished video message when autoplay starts.
|
||||||
if (!autoplay) {
|
if (!autoplay) {
|
||||||
|
@ -2529,7 +2537,9 @@ bool HistoryGif::playInline(bool autoplay) {
|
||||||
if (!cAutoPlayGif()) {
|
if (!cAutoPlayGif()) {
|
||||||
App::stopGifItems();
|
App::stopGifItems();
|
||||||
}
|
}
|
||||||
auto mode = (!autoplay && _data->isRoundVideo()) ? Mode::Video : Mode::Gif;
|
const auto mode = (!autoplay && _data->isVideoMessage())
|
||||||
|
? Mode::Video
|
||||||
|
: Mode::Gif;
|
||||||
setClipReader(Media::Clip::MakeReader(_data, _parent->fullId(), [this](Media::Clip::Notification notification) {
|
setClipReader(Media::Clip::MakeReader(_data, _parent->fullId(), [this](Media::Clip::Notification notification) {
|
||||||
_parent->clipCallback(notification);
|
_parent->clipCallback(notification);
|
||||||
}, mode));
|
}, mode));
|
||||||
|
@ -3262,7 +3272,7 @@ void HistoryWebPage::initDimensions() {
|
||||||
_attach = std::make_unique<HistorySticker>(_parent, _data->document);
|
_attach = std::make_unique<HistorySticker>(_parent, _data->document);
|
||||||
} else if (_data->document->isAnimation()) {
|
} else if (_data->document->isAnimation()) {
|
||||||
_attach = std::make_unique<HistoryGif>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryGif>(_parent, _data->document, QString());
|
||||||
} else if (_data->document->isVideo()) {
|
} else if (_data->document->isVideoFile()) {
|
||||||
_attach = std::make_unique<HistoryVideo>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryVideo>(_parent, _data->document, QString());
|
||||||
} else {
|
} else {
|
||||||
_attach = std::make_unique<HistoryDocument>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryDocument>(_parent, _data->document, QString());
|
||||||
|
@ -3788,7 +3798,7 @@ void HistoryGame::initDimensions() {
|
||||||
_attach = std::make_unique<HistorySticker>(_parent, _data->document);
|
_attach = std::make_unique<HistorySticker>(_parent, _data->document);
|
||||||
} else if (_data->document->isAnimation()) {
|
} else if (_data->document->isAnimation()) {
|
||||||
_attach = std::make_unique<HistoryGif>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryGif>(_parent, _data->document, QString());
|
||||||
} else if (_data->document->isVideo()) {
|
} else if (_data->document->isVideoFile()) {
|
||||||
_attach = std::make_unique<HistoryVideo>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryVideo>(_parent, _data->document, QString());
|
||||||
} else {
|
} else {
|
||||||
_attach = std::make_unique<HistoryDocument>(_parent, _data->document, QString());
|
_attach = std::make_unique<HistoryDocument>(_parent, _data->document, QString());
|
||||||
|
|
|
@ -71,7 +71,7 @@ protected:
|
||||||
}
|
}
|
||||||
if (inlinegif) {
|
if (inlinegif) {
|
||||||
save = MakeShared<GifOpenClickHandler>(document);
|
save = MakeShared<GifOpenClickHandler>(document);
|
||||||
} else if (document->voice()) {
|
} else if (document->isVoiceMessage()) {
|
||||||
save = MakeShared<DocumentOpenClickHandler>(document);
|
save = MakeShared<DocumentOpenClickHandler>(document);
|
||||||
} else {
|
} else {
|
||||||
save = MakeShared<DocumentSaveClickHandler>(document);
|
save = MakeShared<DocumentSaveClickHandler>(document);
|
||||||
|
@ -373,7 +373,11 @@ public:
|
||||||
HistoryDocument(not_null<HistoryItem*> parent, DocumentData *document, const QString &caption);
|
HistoryDocument(not_null<HistoryItem*> parent, DocumentData *document, const QString &caption);
|
||||||
HistoryDocument(not_null<HistoryItem*> parent, const HistoryDocument &other);
|
HistoryDocument(not_null<HistoryItem*> parent, const HistoryDocument &other);
|
||||||
HistoryMediaType type() const override {
|
HistoryMediaType type() const override {
|
||||||
return _data->voice() ? MediaTypeVoiceFile : (_data->song() ? MediaTypeMusicFile : MediaTypeFile);
|
return _data->isVoiceMessage()
|
||||||
|
? MediaTypeVoiceFile
|
||||||
|
: (_data->isSong()
|
||||||
|
? MediaTypeMusicFile
|
||||||
|
: MediaTypeFile);
|
||||||
}
|
}
|
||||||
std::unique_ptr<HistoryMedia> clone(HistoryItem *newParent) const override {
|
std::unique_ptr<HistoryMedia> clone(HistoryItem *newParent) const override {
|
||||||
return std::make_unique<HistoryDocument>(newParent, *this);
|
return std::make_unique<HistoryDocument>(newParent, *this);
|
||||||
|
@ -445,7 +449,7 @@ public:
|
||||||
}
|
}
|
||||||
QMargins bubbleMargins() const override;
|
QMargins bubbleMargins() const override;
|
||||||
bool hideForwardedFrom() const override {
|
bool hideForwardedFrom() const override {
|
||||||
return _data->song();
|
return _data->isSong();
|
||||||
}
|
}
|
||||||
bool canEditCaption() const override {
|
bool canEditCaption() const override {
|
||||||
return true;
|
return true;
|
||||||
|
@ -556,7 +560,7 @@ public:
|
||||||
return isBubbleBottom() && _caption.isEmpty();
|
return isBubbleBottom() && _caption.isEmpty();
|
||||||
}
|
}
|
||||||
bool canEditCaption() const override {
|
bool canEditCaption() const override {
|
||||||
return !_data->isRoundVideo();
|
return !_data->isVideoMessage();
|
||||||
}
|
}
|
||||||
bool isReadyForOpen() const override {
|
bool isReadyForOpen() const override {
|
||||||
return _data->loaded();
|
return _data->loaded();
|
||||||
|
|
|
@ -128,7 +128,7 @@ bool HasMediaItems(const HistoryItemsList &items) {
|
||||||
case MediaTypeFile:
|
case MediaTypeFile:
|
||||||
case MediaTypeMusicFile:
|
case MediaTypeMusicFile:
|
||||||
case MediaTypeVoiceFile: return true;
|
case MediaTypeVoiceFile: return true;
|
||||||
case MediaTypeGif: return media->getDocument()->isRoundVideo();
|
case MediaTypeGif: return media->getDocument()->isVideoMessage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -150,7 +150,7 @@ bool HasGifItems(const HistoryItemsList &items) {
|
||||||
for (const auto item : items) {
|
for (const auto item : items) {
|
||||||
if (const auto media = item->getMedia()) {
|
if (const auto media = item->getMedia()) {
|
||||||
switch (media->type()) {
|
switch (media->type()) {
|
||||||
case MediaTypeGif: return !media->getDocument()->isRoundVideo();
|
case MediaTypeGif: return !media->getDocument()->isVideoMessage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1131,7 +1131,7 @@ void HistoryMessage::initMediaFromDocument(DocumentData *doc, const QString &cap
|
||||||
_media = std::make_unique<HistorySticker>(this, doc);
|
_media = std::make_unique<HistorySticker>(this, doc);
|
||||||
} else if (doc->isAnimation()) {
|
} else if (doc->isAnimation()) {
|
||||||
_media = std::make_unique<HistoryGif>(this, doc, caption);
|
_media = std::make_unique<HistoryGif>(this, doc, caption);
|
||||||
} else if (doc->isVideo()) {
|
} else if (doc->isVideoFile()) {
|
||||||
_media = std::make_unique<HistoryVideo>(this, doc, caption);
|
_media = std::make_unique<HistoryVideo>(this, doc, caption);
|
||||||
} else {
|
} else {
|
||||||
_media = std::make_unique<HistoryDocument>(this, doc, caption);
|
_media = std::make_unique<HistoryDocument>(this, doc, caption);
|
||||||
|
|
|
@ -290,7 +290,7 @@ HistoryService::PreparedText HistoryService::preparePinnedText() {
|
||||||
case MediaTypeFile: return lang(lng_action_pinned_media_file);
|
case MediaTypeFile: return lang(lng_action_pinned_media_file);
|
||||||
case MediaTypeGif: {
|
case MediaTypeGif: {
|
||||||
if (auto document = media->getDocument()) {
|
if (auto document = media->getDocument()) {
|
||||||
if (document->isRoundVideo()) {
|
if (document->isVideoMessage()) {
|
||||||
return lang(lng_action_pinned_media_video_message);
|
return lang(lng_action_pinned_media_video_message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,7 +110,7 @@ MTPVector<MTPDocumentAttribute> composeDocumentAttributes(DocumentData *document
|
||||||
int32 duration = document->duration();
|
int32 duration = document->duration();
|
||||||
if (duration >= 0) {
|
if (duration >= 0) {
|
||||||
auto flags = MTPDdocumentAttributeVideo::Flags(0);
|
auto flags = MTPDdocumentAttributeVideo::Flags(0);
|
||||||
if (document->isRoundVideo()) {
|
if (document->isVideoMessage()) {
|
||||||
flags |= MTPDdocumentAttributeVideo::Flag::f_round_message;
|
flags |= MTPDdocumentAttributeVideo::Flag::f_round_message;
|
||||||
}
|
}
|
||||||
attributes.push_back(MTP_documentAttributeVideo(MTP_flags(flags), MTP_int(duration), MTP_int(document->dimensions.width()), MTP_int(document->dimensions.height())));
|
attributes.push_back(MTP_documentAttributeVideo(MTP_flags(flags), MTP_int(duration), MTP_int(document->dimensions.width()), MTP_int(document->dimensions.height())));
|
||||||
|
@ -122,12 +122,12 @@ MTPVector<MTPDocumentAttribute> composeDocumentAttributes(DocumentData *document
|
||||||
attributes.push_back(MTP_documentAttributeAnimated());
|
attributes.push_back(MTP_documentAttributeAnimated());
|
||||||
} else if (document->type == StickerDocument && document->sticker()) {
|
} else if (document->type == StickerDocument && document->sticker()) {
|
||||||
attributes.push_back(MTP_documentAttributeSticker(MTP_flags(0), MTP_string(document->sticker()->alt), document->sticker()->set, MTPMaskCoords()));
|
attributes.push_back(MTP_documentAttributeSticker(MTP_flags(0), MTP_string(document->sticker()->alt), document->sticker()->set, MTPMaskCoords()));
|
||||||
} else if (document->type == SongDocument && document->song()) {
|
} else if (const auto song = document->song()) {
|
||||||
auto flags = MTPDdocumentAttributeAudio::Flag::f_title | MTPDdocumentAttributeAudio::Flag::f_performer;
|
auto flags = MTPDdocumentAttributeAudio::Flag::f_title | MTPDdocumentAttributeAudio::Flag::f_performer;
|
||||||
attributes.push_back(MTP_documentAttributeAudio(MTP_flags(flags), MTP_int(document->song()->duration), MTP_string(document->song()->title), MTP_string(document->song()->performer), MTPstring()));
|
attributes.push_back(MTP_documentAttributeAudio(MTP_flags(flags), MTP_int(song->duration), MTP_string(song->title), MTP_string(song->performer), MTPstring()));
|
||||||
} else if (document->type == VoiceDocument && document->voice()) {
|
} else if (const auto voice = document->voice()) {
|
||||||
auto flags = MTPDdocumentAttributeAudio::Flag::f_voice | MTPDdocumentAttributeAudio::Flag::f_waveform;
|
auto flags = MTPDdocumentAttributeAudio::Flag::f_voice | MTPDdocumentAttributeAudio::Flag::f_waveform;
|
||||||
attributes.push_back(MTP_documentAttributeAudio(MTP_flags(flags), MTP_int(document->voice()->duration), MTPstring(), MTPstring(), MTP_bytes(documentWaveformEncode5bit(document->voice()->waveform))));
|
attributes.push_back(MTP_documentAttributeAudio(MTP_flags(flags), MTP_int(voice->duration), MTPstring(), MTPstring(), MTP_bytes(documentWaveformEncode5bit(voice->waveform))));
|
||||||
}
|
}
|
||||||
return MTP_vector<MTPDocumentAttribute>(attributes);
|
return MTP_vector<MTPDocumentAttribute>(attributes);
|
||||||
}
|
}
|
||||||
|
@ -4530,7 +4530,7 @@ void HistoryWidget::onDocumentProgress(const FullMsgId &newId) {
|
||||||
if (const auto item = App::histItemById(newId)) {
|
if (const auto item = App::histItemById(newId)) {
|
||||||
const auto media = item->getMedia();
|
const auto media = item->getMedia();
|
||||||
const auto document = media ? media->getDocument() : nullptr;
|
const auto document = media ? media->getDocument() : nullptr;
|
||||||
const auto sendAction = (document && document->voice())
|
const auto sendAction = (document && document->isVoiceMessage())
|
||||||
? SendAction::Type::UploadVoice
|
? SendAction::Type::UploadVoice
|
||||||
: SendAction::Type::UploadFile;
|
: SendAction::Type::UploadFile;
|
||||||
updateSendAction(
|
updateSendAction(
|
||||||
|
@ -4552,7 +4552,7 @@ void HistoryWidget::onDocumentFailed(const FullMsgId &newId) {
|
||||||
if (const auto item = App::histItemById(newId)) {
|
if (const auto item = App::histItemById(newId)) {
|
||||||
const auto media = item->getMedia();
|
const auto media = item->getMedia();
|
||||||
const auto document = media ? media->getDocument() : nullptr;
|
const auto document = media ? media->getDocument() : nullptr;
|
||||||
const auto sendAction = (document && document->voice())
|
const auto sendAction = (document && document->isVoiceMessage())
|
||||||
? SendAction::Type::UploadVoice
|
? SendAction::Type::UploadVoice
|
||||||
: SendAction::Type::UploadFile;
|
: SendAction::Type::UploadFile;
|
||||||
updateSendAction(item->history(), sendAction, -1);
|
updateSendAction(item->history(), sendAction, -1);
|
||||||
|
|
|
@ -1238,13 +1238,13 @@ void ListWidget::showContextMenu(
|
||||||
auto photoLink = dynamic_cast<PhotoClickHandler*>(link.data());
|
auto photoLink = dynamic_cast<PhotoClickHandler*>(link.data());
|
||||||
auto fileLink = dynamic_cast<DocumentClickHandler*>(link.data());
|
auto fileLink = dynamic_cast<DocumentClickHandler*>(link.data());
|
||||||
if (photoLink || fileLink) {
|
if (photoLink || fileLink) {
|
||||||
auto [isVideo, isVoice, isSong] = [&] {
|
auto [isVideo, isVoice, isAudio] = [&] {
|
||||||
if (fileLink) {
|
if (fileLink) {
|
||||||
auto document = fileLink->document();
|
auto document = fileLink->document();
|
||||||
return std::make_tuple(
|
return std::make_tuple(
|
||||||
document->isVideo(),
|
document->isVideoFile(),
|
||||||
(document->voice() != nullptr),
|
document->isVoiceMessage(),
|
||||||
(document->song() != nullptr)
|
document->isAudioFile()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return std::make_tuple(false, false, false);
|
return std::make_tuple(false, false, false);
|
||||||
|
@ -1285,7 +1285,7 @@ void ListWidget::showContextMenu(
|
||||||
? lng_context_save_video
|
? lng_context_save_video
|
||||||
: isVoice
|
: isVoice
|
||||||
? lng_context_save_audio
|
? lng_context_save_audio
|
||||||
: isSong
|
: isAudio
|
||||||
? lng_context_save_audio_file
|
? lng_context_save_audio_file
|
||||||
: lng_context_save_file),
|
: lng_context_save_file),
|
||||||
std::move(handler));
|
std::move(handler));
|
||||||
|
|
|
@ -75,10 +75,10 @@ int FileBase::content_height() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
int FileBase::content_duration() const {
|
int FileBase::content_duration() const {
|
||||||
if (DocumentData *document = getShownDocument()) {
|
if (const auto document = getShownDocument()) {
|
||||||
if (document->duration() > 0) {
|
if (document->duration() > 0) {
|
||||||
return document->duration();
|
return document->duration();
|
||||||
} else if (SongData *song = document->song()) {
|
} else if (const auto song = document->song()) {
|
||||||
if (song->duration) {
|
if (song->duration) {
|
||||||
return song->duration;
|
return song->duration;
|
||||||
}
|
}
|
||||||
|
@ -750,7 +750,7 @@ void File::paint(Painter &p, const QRect &clip, const PaintContext *context) con
|
||||||
} else if (true || document->loaded()) {
|
} else if (true || document->loaded()) {
|
||||||
if (document->isImage()) {
|
if (document->isImage()) {
|
||||||
return &st::historyFileInImage;
|
return &st::historyFileInImage;
|
||||||
} else if (document->voice() || document->song()) {
|
} else if (document->isVoiceMessage() || document->isAudioFile()) {
|
||||||
return &st::historyFileInPlay;
|
return &st::historyFileInPlay;
|
||||||
}
|
}
|
||||||
return &st::historyFileInDocument;
|
return &st::historyFileInDocument;
|
||||||
|
@ -850,7 +850,7 @@ bool File::updateStatusText() const {
|
||||||
statusSize = document->loadOffset();
|
statusSize = document->loadOffset();
|
||||||
} else if (document->loaded()) {
|
} else if (document->loaded()) {
|
||||||
using State = Media::Player::State;
|
using State = Media::Player::State;
|
||||||
if (document->voice()) {
|
if (document->isVoiceMessage()) {
|
||||||
statusSize = FileStatusSizeLoaded;
|
statusSize = FileStatusSizeLoaded;
|
||||||
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Voice);
|
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Voice);
|
||||||
if (state.id == AudioMsgId(document, FullMsgId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
if (state.id == AudioMsgId(document, FullMsgId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
||||||
|
@ -858,7 +858,7 @@ bool File::updateStatusText() const {
|
||||||
realDuration = (state.length / state.frequency);
|
realDuration = (state.length / state.frequency);
|
||||||
showPause = (state.state == State::Playing || state.state == State::Resuming || state.state == State::Starting);
|
showPause = (state.state == State::Playing || state.state == State::Resuming || state.state == State::Starting);
|
||||||
}
|
}
|
||||||
} else if (document->song()) {
|
} else if (document->isAudioFile()) {
|
||||||
statusSize = FileStatusSizeLoaded;
|
statusSize = FileStatusSizeLoaded;
|
||||||
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
||||||
if (state.id == AudioMsgId(document, FullMsgId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
if (state.id == AudioMsgId(document, FullMsgId()) && !Media::Player::IsStoppedOrStopping(state.state)) {
|
||||||
|
@ -876,7 +876,11 @@ bool File::updateStatusText() const {
|
||||||
statusSize = FileStatusSizeReady;
|
statusSize = FileStatusSizeReady;
|
||||||
}
|
}
|
||||||
if (statusSize != _statusSize) {
|
if (statusSize != _statusSize) {
|
||||||
int32 duration = document->song() ? document->song()->duration : (document->voice() ? document->voice()->duration : -1);
|
int32 duration = document->isSong()
|
||||||
|
? document->song()->duration
|
||||||
|
: (document->isVoiceMessage()
|
||||||
|
? document->voice()->duration
|
||||||
|
: -1);
|
||||||
setStatusSize(statusSize, document->size, duration, realDuration);
|
setStatusSize(statusSize, document->size, duration, realDuration);
|
||||||
}
|
}
|
||||||
return showPause;
|
return showPause;
|
||||||
|
|
|
@ -138,9 +138,12 @@ QString SendFile::getErrorOnSend(const Result *owner, History *history) const {
|
||||||
if (auto megagroup = history->peer->asMegagroup()) {
|
if (auto megagroup = history->peer->asMegagroup()) {
|
||||||
if (megagroup->restricted(ChannelRestriction::f_send_media)) {
|
if (megagroup->restricted(ChannelRestriction::f_send_media)) {
|
||||||
return lang(lng_restricted_send_media);
|
return lang(lng_restricted_send_media);
|
||||||
} else if (megagroup->restricted(ChannelRestriction::f_send_stickers) && (_document->sticker() != nullptr)) {
|
} else if (megagroup->restricted(ChannelRestriction::f_send_stickers)
|
||||||
|
&& (_document->sticker() != nullptr)) {
|
||||||
return lang(lng_restricted_send_stickers);
|
return lang(lng_restricted_send_stickers);
|
||||||
} else if (megagroup->restricted(ChannelRestriction::f_send_gifs) && _document->isAnimation() && !_document->isRoundVideo()) {
|
} else if (megagroup->restricted(ChannelRestriction::f_send_gifs)
|
||||||
|
&& _document->isAnimation()
|
||||||
|
&& !_document->isVideoMessage()) {
|
||||||
return lang(lng_restricted_send_gifs);
|
return lang(lng_restricted_send_gifs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -338,7 +338,7 @@ void MainWidget::checkCurrentFloatPlayer() {
|
||||||
if (auto item = App::histItemById(fullId)) {
|
if (auto item = App::histItemById(fullId)) {
|
||||||
if (auto media = item->getMedia()) {
|
if (auto media = item->getMedia()) {
|
||||||
if (auto document = media->getDocument()) {
|
if (auto document = media->getDocument()) {
|
||||||
if (document->isRoundVideo()) {
|
if (document->isVideoMessage()) {
|
||||||
_playerFloats.push_back(std::make_unique<Float>(this, item, [this](not_null<Float*> instance, bool visible) {
|
_playerFloats.push_back(std::make_unique<Float>(this, item, [this](not_null<Float*> instance, bool visible) {
|
||||||
instance->hiddenByWidget = !visible;
|
instance->hiddenByWidget = !visible;
|
||||||
toggleFloatPlayer(instance);
|
toggleFloatPlayer(instance);
|
||||||
|
@ -1853,7 +1853,7 @@ void MainWidget::documentLoadProgress(DocumentData *document) {
|
||||||
}
|
}
|
||||||
Auth().documentUpdated.notify(document, true);
|
Auth().documentUpdated.notify(document, true);
|
||||||
|
|
||||||
if (!document->loaded() && document->song()) {
|
if (!document->loaded() && document->isAudioFile()) {
|
||||||
Media::Player::instance()->documentLoadProgress(document);
|
Media::Player::instance()->documentLoadProgress(document);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,7 +247,7 @@ void CoverWidget::updateRepeatTrackIcon() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CoverWidget::handleSongUpdate(const TrackState &state) {
|
void CoverWidget::handleSongUpdate(const TrackState &state) {
|
||||||
if (!state.id.audio() || !state.id.audio()->song()) {
|
if (!state.id.audio() || !state.id.audio()->isAudioFile()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,8 +282,8 @@ void CoverWidget::updateTimeText(const TrackState &state) {
|
||||||
if (!IsStoppedOrStopping(state.state)) {
|
if (!IsStoppedOrStopping(state.state)) {
|
||||||
display = position = state.position;
|
display = position = state.position;
|
||||||
length = state.length;
|
length = state.length;
|
||||||
} else {
|
} else if (const auto songData = state.id.audio()->song()) {
|
||||||
length = state.length ? state.length : (state.id.audio()->song()->duration * frequency);
|
length = state.length ? state.length : (songData->duration * frequency);
|
||||||
}
|
}
|
||||||
|
|
||||||
_lastDurationMs = (state.length * 1000LL) / frequency;
|
_lastDurationMs = (state.length * 1000LL) / frequency;
|
||||||
|
@ -316,18 +316,23 @@ void CoverWidget::updateTimeLabel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CoverWidget::handleSongChange() {
|
void CoverWidget::handleSongChange() {
|
||||||
auto current = instance()->current(AudioMsgId::Type::Song);
|
const auto current = instance()->current(AudioMsgId::Type::Song);
|
||||||
auto song = current.audio()->song();
|
const auto document = current.audio();
|
||||||
if (!song) {
|
if (!current || !document) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
TextWithEntities textWithEntities;
|
TextWithEntities textWithEntities;
|
||||||
if (song->performer.isEmpty()) {
|
const auto song = document ? document->song() : nullptr;
|
||||||
textWithEntities.text = song->title.isEmpty()
|
if (!song) {
|
||||||
? (current.audio()->filename().isEmpty()
|
textWithEntities.text = document->filename().isEmpty()
|
||||||
? qsl("Unknown Track")
|
? qsl("Unknown Track")
|
||||||
: current.audio()->filename())
|
: document->filename();
|
||||||
|
} else if (song->performer.isEmpty()) {
|
||||||
|
textWithEntities.text = song->title.isEmpty()
|
||||||
|
? (document->filename().isEmpty()
|
||||||
|
? qsl("Unknown Track")
|
||||||
|
: document->filename())
|
||||||
: song->title;
|
: song->title;
|
||||||
} else {
|
} else {
|
||||||
auto title = song->title.isEmpty()
|
auto title = song->title.isEmpty()
|
||||||
|
|
|
@ -47,7 +47,7 @@ Float::Float(
|
||||||
|
|
||||||
auto document = media->getDocument();
|
auto document = media->getDocument();
|
||||||
Assert(document != nullptr);
|
Assert(document != nullptr);
|
||||||
Assert(document->isRoundVideo());
|
Assert(document->isVideoMessage());
|
||||||
|
|
||||||
auto margin = st::mediaPlayerFloatMargin;
|
auto margin = st::mediaPlayerFloatMargin;
|
||||||
auto size = 2 * margin + st::mediaPlayerFloatSize;
|
auto size = 2 * margin + st::mediaPlayerFloatSize;
|
||||||
|
|
|
@ -239,7 +239,7 @@ bool Instance::moveInPlaylist(
|
||||||
item->fullId()
|
item->fullId()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (document->tryPlaySong()) {
|
if (document->isAudioFile()) {
|
||||||
play(AudioMsgId(document, item->fullId()));
|
play(AudioMsgId(document, item->fullId()));
|
||||||
} else {
|
} else {
|
||||||
DocumentOpenClickHandler::doOpen(
|
DocumentOpenClickHandler::doOpen(
|
||||||
|
@ -298,18 +298,19 @@ void Instance::play(AudioMsgId::Type type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Instance::play(const AudioMsgId &audioId) {
|
void Instance::play(const AudioMsgId &audioId) {
|
||||||
if (!audioId) {
|
const auto document = audioId.audio();
|
||||||
|
if (!audioId || !document) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (audioId.audio()->tryPlaySong() || audioId.audio()->voice()) {
|
if (document->isAudioFile() || document->isVoiceMessage()) {
|
||||||
mixer()->play(audioId);
|
mixer()->play(audioId);
|
||||||
setCurrent(audioId);
|
setCurrent(audioId);
|
||||||
if (audioId.audio()->loading()) {
|
if (document->loading()) {
|
||||||
documentLoadProgress(audioId.audio());
|
documentLoadProgress(document);
|
||||||
}
|
}
|
||||||
} else if (audioId.audio()->isRoundVideo()) {
|
} else if (document->isVideoMessage()) {
|
||||||
if (auto item = App::histItemById(audioId.contextId())) {
|
if (const auto item = App::histItemById(audioId.contextId())) {
|
||||||
if (auto media = item->getMedia()) {
|
if (const auto media = item->getMedia()) {
|
||||||
media->playInline();
|
media->playInline();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -395,7 +396,7 @@ void Instance::stopSeeking(AudioMsgId::Type type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Instance::documentLoadProgress(DocumentData *document) {
|
void Instance::documentLoadProgress(DocumentData *document) {
|
||||||
const auto type = document->tryPlaySong()
|
const auto type = document->isAudioFile()
|
||||||
? AudioMsgId::Type::Song
|
? AudioMsgId::Type::Song
|
||||||
: AudioMsgId::Type::Voice;
|
: AudioMsgId::Type::Voice;
|
||||||
emitUpdate(type, [document](const AudioMsgId &audioId) {
|
emitUpdate(type, [document](const AudioMsgId &audioId) {
|
||||||
|
|
|
@ -23,6 +23,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "media/player/media_player_cover.h"
|
#include "media/player/media_player_cover.h"
|
||||||
#include "media/player/media_player_instance.h"
|
#include "media/player/media_player_instance.h"
|
||||||
#include "info/media/info_media_list_widget.h"
|
#include "info/media/info_media_list_widget.h"
|
||||||
|
#include "history/history_media.h"
|
||||||
|
#include "data/data_document.h"
|
||||||
#include "ui/widgets/shadow.h"
|
#include "ui/widgets/shadow.h"
|
||||||
#include "ui/widgets/scroll_area.h"
|
#include "ui/widgets/scroll_area.h"
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
@ -267,14 +269,16 @@ void Panel::refreshList() {
|
||||||
const auto contextId = current.contextId();
|
const auto contextId = current.contextId();
|
||||||
const auto peer = [&]() -> PeerData* {
|
const auto peer = [&]() -> PeerData* {
|
||||||
const auto item = contextId ? App::histItemById(contextId) : nullptr;
|
const auto item = contextId ? App::histItemById(contextId) : nullptr;
|
||||||
if (item) {
|
const auto media = item ? item->getMedia() : nullptr;
|
||||||
|
const auto document = media ? media->getDocument() : nullptr;
|
||||||
|
if (!document || !document->isSharedMediaMusic()) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
const auto result = item->history()->peer;
|
const auto result = item->history()->peer;
|
||||||
if (const auto migrated = result->migrateTo()) {
|
if (const auto migrated = result->migrateTo()) {
|
||||||
return migrated;
|
return migrated;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
|
||||||
return nullptr;
|
|
||||||
}();
|
}();
|
||||||
const auto migrated = peer ? peer->migrateFrom() : nullptr;
|
const auto migrated = peer ? peer->migrateFrom() : nullptr;
|
||||||
if (_listPeer != peer || _listMigratedPeer != migrated) {
|
if (_listPeer != peer || _listMigratedPeer != migrated) {
|
||||||
|
|
|
@ -431,20 +431,21 @@ void Widget::handleSongUpdate(const TrackState &state) {
|
||||||
void Widget::updateTimeText(const TrackState &state) {
|
void Widget::updateTimeText(const TrackState &state) {
|
||||||
QString time;
|
QString time;
|
||||||
qint64 position = 0, length = 0, display = 0;
|
qint64 position = 0, length = 0, display = 0;
|
||||||
auto frequency = state.frequency;
|
const auto frequency = state.frequency;
|
||||||
|
const auto document = state.id.audio();
|
||||||
if (!IsStoppedOrStopping(state.state)) {
|
if (!IsStoppedOrStopping(state.state)) {
|
||||||
display = position = state.position;
|
display = position = state.position;
|
||||||
length = state.length;
|
length = state.length;
|
||||||
} else if (state.length) {
|
} else if (state.length) {
|
||||||
display = state.length;
|
display = state.length;
|
||||||
} else if (state.id.audio()->song()) {
|
} else if (const auto song = document->song()) {
|
||||||
display = (state.id.audio()->song()->duration * frequency);
|
display = (song->duration * frequency);
|
||||||
}
|
}
|
||||||
|
|
||||||
_lastDurationMs = (state.length * 1000LL) / frequency;
|
_lastDurationMs = (state.length * 1000LL) / frequency;
|
||||||
|
|
||||||
if (state.id.audio()->loading()) {
|
if (document->loading()) {
|
||||||
_time = QString::number(qRound(state.id.audio()->progress() * 100)) + '%';
|
_time = QString::number(qRound(document->progress() * 100)) + '%';
|
||||||
_playbackSlider->setDisabled(true);
|
_playbackSlider->setDisabled(true);
|
||||||
} else {
|
} else {
|
||||||
display = display / frequency;
|
display = display / frequency;
|
||||||
|
@ -470,13 +471,14 @@ void Widget::updateTimeLabel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::handleSongChange() {
|
void Widget::handleSongChange() {
|
||||||
auto current = instance()->current(_type);
|
const auto current = instance()->current(_type);
|
||||||
if (!current || !current.audio()) {
|
const auto document = current.audio();
|
||||||
|
if (!current || !document) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
TextWithEntities textWithEntities;
|
TextWithEntities textWithEntities;
|
||||||
if (current.audio()->voice() || current.audio()->isRoundVideo()) {
|
if (document->isVoiceMessage() || document->isVideoMessage()) {
|
||||||
if (auto item = App::histItemById(current.contextId())) {
|
if (auto item = App::histItemById(current.contextId())) {
|
||||||
auto name = App::peerName(item->fromOriginal());
|
auto name = App::peerName(item->fromOriginal());
|
||||||
auto date = [item] {
|
auto date = [item] {
|
||||||
|
@ -497,12 +499,12 @@ void Widget::handleSongChange() {
|
||||||
textWithEntities.text = lang(lng_media_audio);
|
textWithEntities.text = lang(lng_media_audio);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
auto song = current.audio()->song();
|
const auto song = document->song();
|
||||||
if (!song || song->performer.isEmpty()) {
|
if (!song || song->performer.isEmpty()) {
|
||||||
textWithEntities.text = (!song || song->title.isEmpty())
|
textWithEntities.text = (!song || song->title.isEmpty())
|
||||||
? (current.audio()->filename().isEmpty()
|
? (document->filename().isEmpty()
|
||||||
? qsl("Unknown Track")
|
? qsl("Unknown Track")
|
||||||
: current.audio()->filename())
|
: document->filename())
|
||||||
: song->title;
|
: song->title;
|
||||||
} else {
|
} else {
|
||||||
auto title = song->title.isEmpty()
|
auto title = song->title.isEmpty()
|
||||||
|
|
|
@ -211,11 +211,11 @@ bool MediaView::fileBubbleShown() const {
|
||||||
bool MediaView::gifShown() const {
|
bool MediaView::gifShown() const {
|
||||||
if (_gif && _gif->ready()) {
|
if (_gif && _gif->ready()) {
|
||||||
if (!_gif->started()) {
|
if (!_gif->started()) {
|
||||||
if (_doc && (_doc->isVideo() || _doc->isRoundVideo()) && _autoplayVideoDocument != _doc && !_gif->videoPaused()) {
|
if (_doc && (_doc->isVideoFile() || _doc->isVideoMessage()) && _autoplayVideoDocument != _doc && !_gif->videoPaused()) {
|
||||||
_gif->pauseResumeVideo();
|
_gif->pauseResumeVideo();
|
||||||
const_cast<MediaView*>(this)->_videoPaused = _gif->videoPaused();
|
const_cast<MediaView*>(this)->_videoPaused = _gif->videoPaused();
|
||||||
}
|
}
|
||||||
auto rounding = (_doc && _doc->isRoundVideo()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
auto rounding = (_doc && _doc->isVideoMessage()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
||||||
_gif->start(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All);
|
_gif->start(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All);
|
||||||
const_cast<MediaView*>(this)->_current = QPixmap();
|
const_cast<MediaView*>(this)->_current = QPixmap();
|
||||||
updateMixerVideoVolume();
|
updateMixerVideoVolume();
|
||||||
|
@ -517,16 +517,16 @@ void MediaView::step_radial(TimeMs ms, bool timer) {
|
||||||
if (timer && (wasAnimating || _radial.animating())) {
|
if (timer && (wasAnimating || _radial.animating())) {
|
||||||
update(radialRect());
|
update(radialRect());
|
||||||
}
|
}
|
||||||
if (_doc && _doc->loaded() && _doc->size < App::kImageSizeLimit && (!_radial.animating() || _doc->isAnimation() || _doc->isVideo())) {
|
if (_doc && _doc->loaded() && _doc->size < App::kImageSizeLimit && (!_radial.animating() || _doc->isAnimation() || _doc->isVideoFile())) {
|
||||||
if (_doc->isVideo() || _doc->isRoundVideo()) {
|
if (_doc->isVideoFile() || _doc->isVideoMessage()) {
|
||||||
_autoplayVideoDocument = _doc;
|
_autoplayVideoDocument = _doc;
|
||||||
}
|
}
|
||||||
if (!_doc->data().isEmpty() && (_doc->isAnimation() || _doc->isVideo())) {
|
if (!_doc->data().isEmpty() && (_doc->isAnimation() || _doc->isVideoFile())) {
|
||||||
displayDocument(_doc, App::histItemById(_msgid));
|
displayDocument(_doc, App::histItemById(_msgid));
|
||||||
} else {
|
} else {
|
||||||
auto &location = _doc->location(true);
|
auto &location = _doc->location(true);
|
||||||
if (location.accessEnable()) {
|
if (location.accessEnable()) {
|
||||||
if (_doc->isAnimation() || _doc->isVideo() || _doc->isTheme() || QImageReader(location.name()).canRead()) {
|
if (_doc->isAnimation() || _doc->isVideoFile() || _doc->isTheme() || QImageReader(location.name()).canRead()) {
|
||||||
displayDocument(_doc, App::histItemById(_msgid));
|
displayDocument(_doc, App::histItemById(_msgid));
|
||||||
}
|
}
|
||||||
location.accessDisable();
|
location.accessDisable();
|
||||||
|
@ -642,7 +642,7 @@ void MediaView::showSaveMsgFile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MediaView::updateMixerVideoVolume() const {
|
void MediaView::updateMixerVideoVolume() const {
|
||||||
if (_doc && (_doc->isVideo() || _doc->isRoundVideo())) {
|
if (_doc && (_doc->isVideoFile() || _doc->isVideoMessage())) {
|
||||||
Media::Player::mixer()->setVideoVolume(Global::VideoVolume());
|
Media::Player::mixer()->setVideoVolume(Global::VideoVolume());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -825,7 +825,7 @@ void MediaView::clipCallback(Media::Clip::Notification notification) {
|
||||||
_videoStopped = true;
|
_videoStopped = true;
|
||||||
updateSilentVideoPlaybackState();
|
updateSilentVideoPlaybackState();
|
||||||
} else {
|
} else {
|
||||||
_videoIsSilent = _doc && (_doc->isVideo() || _doc->isRoundVideo()) && !_gif->hasAudio();
|
_videoIsSilent = _doc && (_doc->isVideoFile() || _doc->isVideoMessage()) && !_gif->hasAudio();
|
||||||
_videoDurationMs = _gif->getDurationMs();
|
_videoDurationMs = _gif->getDurationMs();
|
||||||
_videoPositionMs = _gif->getPositionMs();
|
_videoPositionMs = _gif->getPositionMs();
|
||||||
if (_videoIsSilent) {
|
if (_videoIsSilent) {
|
||||||
|
@ -997,7 +997,7 @@ base::optional<MediaView::SharedMediaType> MediaView::sharedMediaType() const {
|
||||||
} else if (_doc) {
|
} else if (_doc) {
|
||||||
if (_doc->isGifv()) {
|
if (_doc->isGifv()) {
|
||||||
return Type::GIF;
|
return Type::GIF;
|
||||||
} else if (_doc->isVideo()) {
|
} else if (_doc->isVideoFile()) {
|
||||||
return Type::Video;
|
return Type::Video;
|
||||||
}
|
}
|
||||||
return Type::File;
|
return Type::File;
|
||||||
|
@ -1243,7 +1243,7 @@ void MediaView::showDocument(not_null<DocumentData*> document, HistoryItem *cont
|
||||||
}
|
}
|
||||||
if (!_animOpacities.isEmpty()) _animOpacities.clear();
|
if (!_animOpacities.isEmpty()) _animOpacities.clear();
|
||||||
|
|
||||||
if (document->isVideo() || document->isRoundVideo()) {
|
if (document->isVideoFile() || document->isVideoMessage()) {
|
||||||
_autoplayVideoDocument = document;
|
_autoplayVideoDocument = document;
|
||||||
}
|
}
|
||||||
displayDocument(document, context);
|
displayDocument(document, context);
|
||||||
|
@ -1320,7 +1320,7 @@ void MediaView::destroyThemePreview() {
|
||||||
|
|
||||||
void MediaView::displayDocument(DocumentData *doc, HistoryItem *item) { // empty messages shown as docs: doc can be NULL
|
void MediaView::displayDocument(DocumentData *doc, HistoryItem *item) { // empty messages shown as docs: doc can be NULL
|
||||||
auto documentChanged = (!doc || doc != _doc || (item && item->fullId() != _msgid));
|
auto documentChanged = (!doc || doc != _doc || (item && item->fullId() != _msgid));
|
||||||
if (documentChanged || (!doc->isAnimation() && !doc->isVideo())) {
|
if (documentChanged || (!doc->isAnimation() && !doc->isVideoFile())) {
|
||||||
_fullScreenVideo = false;
|
_fullScreenVideo = false;
|
||||||
_current = QPixmap();
|
_current = QPixmap();
|
||||||
stopGif();
|
stopGif();
|
||||||
|
@ -1352,7 +1352,7 @@ void MediaView::displayDocument(DocumentData *doc, HistoryItem *item) { // empty
|
||||||
} else {
|
} else {
|
||||||
_doc->automaticLoad(item);
|
_doc->automaticLoad(item);
|
||||||
|
|
||||||
if (_doc->isAnimation() || _doc->isVideo()) {
|
if (_doc->isAnimation() || _doc->isVideoFile()) {
|
||||||
initAnimation();
|
initAnimation();
|
||||||
} else if (_doc->isTheme()) {
|
} else if (_doc->isTheme()) {
|
||||||
initThemePreview();
|
initThemePreview();
|
||||||
|
@ -1506,7 +1506,7 @@ void MediaView::displayFinished() {
|
||||||
|
|
||||||
Images::Options MediaView::videoThumbOptions() const {
|
Images::Options MediaView::videoThumbOptions() const {
|
||||||
auto options = Images::Option::Smooth | Images::Option::Blurred;
|
auto options = Images::Option::Smooth | Images::Option::Blurred;
|
||||||
if (_doc && _doc->isRoundVideo()) {
|
if (_doc && _doc->isVideoMessage()) {
|
||||||
options |= Images::Option::Circled;
|
options |= Images::Option::Circled;
|
||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
|
@ -1514,7 +1514,7 @@ Images::Options MediaView::videoThumbOptions() const {
|
||||||
|
|
||||||
void MediaView::initAnimation() {
|
void MediaView::initAnimation() {
|
||||||
Expects(_doc != nullptr);
|
Expects(_doc != nullptr);
|
||||||
Expects(_doc->isAnimation() || _doc->isVideo());
|
Expects(_doc->isAnimation() || _doc->isVideoFile());
|
||||||
|
|
||||||
auto &location = _doc->location(true);
|
auto &location = _doc->location(true);
|
||||||
if (!_doc->data().isEmpty()) {
|
if (!_doc->data().isEmpty()) {
|
||||||
|
@ -1536,7 +1536,7 @@ void MediaView::createClipReader() {
|
||||||
if (_gif) return;
|
if (_gif) return;
|
||||||
|
|
||||||
Expects(_doc != nullptr);
|
Expects(_doc != nullptr);
|
||||||
Expects(_doc->isAnimation() || _doc->isVideo());
|
Expects(_doc->isAnimation() || _doc->isVideoFile());
|
||||||
|
|
||||||
if (_doc->dimensions.width() && _doc->dimensions.height()) {
|
if (_doc->dimensions.width() && _doc->dimensions.height()) {
|
||||||
int w = _doc->dimensions.width();
|
int w = _doc->dimensions.width();
|
||||||
|
@ -1546,7 +1546,9 @@ void MediaView::createClipReader() {
|
||||||
} else {
|
} else {
|
||||||
_current = _doc->thumb->pixNoCache(_doc->thumb->width(), _doc->thumb->height(), videoThumbOptions(), st::mediaviewFileIconSize, st::mediaviewFileIconSize);
|
_current = _doc->thumb->pixNoCache(_doc->thumb->width(), _doc->thumb->height(), videoThumbOptions(), st::mediaviewFileIconSize, st::mediaviewFileIconSize);
|
||||||
}
|
}
|
||||||
auto mode = (_doc->isVideo() || _doc->isRoundVideo()) ? Media::Clip::Reader::Mode::Video : Media::Clip::Reader::Mode::Gif;
|
auto mode = (_doc->isVideoFile() || _doc->isVideoMessage())
|
||||||
|
? Media::Clip::Reader::Mode::Video
|
||||||
|
: Media::Clip::Reader::Mode::Gif;
|
||||||
_gif = Media::Clip::MakeReader(_doc, _msgid, [this](Media::Clip::Notification notification) {
|
_gif = Media::Clip::MakeReader(_doc, _msgid, [this](Media::Clip::Notification notification) {
|
||||||
clipCallback(notification);
|
clipCallback(notification);
|
||||||
}, mode);
|
}, mode);
|
||||||
|
@ -1605,7 +1607,7 @@ void MediaView::initThemePreview() {
|
||||||
|
|
||||||
void MediaView::createClipController() {
|
void MediaView::createClipController() {
|
||||||
Expects(_doc != nullptr);
|
Expects(_doc != nullptr);
|
||||||
if (!_doc->isVideo() && !_doc->isRoundVideo()) return;
|
if (!_doc->isVideoFile() && !_doc->isVideoMessage()) return;
|
||||||
|
|
||||||
_clipController.create(this);
|
_clipController.create(this);
|
||||||
setClipControllerGeometry();
|
setClipControllerGeometry();
|
||||||
|
@ -1660,7 +1662,7 @@ void MediaView::restartVideoAtSeekPosition(TimeMs positionMs) {
|
||||||
_autoplayVideoDocument = _doc;
|
_autoplayVideoDocument = _doc;
|
||||||
|
|
||||||
if (_current.isNull()) {
|
if (_current.isNull()) {
|
||||||
auto rounding = (_doc && _doc->isRoundVideo()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
auto rounding = (_doc && _doc->isVideoMessage()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
||||||
_current = _gif->current(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All, getms());
|
_current = _gif->current(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::All, getms());
|
||||||
}
|
}
|
||||||
_gif = Media::Clip::MakeReader(_doc, _msgid, [this](Media::Clip::Notification notification) {
|
_gif = Media::Clip::MakeReader(_doc, _msgid, [this](Media::Clip::Notification notification) {
|
||||||
|
@ -1773,7 +1775,7 @@ void MediaView::paintEvent(QPaintEvent *e) {
|
||||||
for (int i = 0, l = region.rectCount(); i < l; ++i) {
|
for (int i = 0, l = region.rectCount(); i < l; ++i) {
|
||||||
p.fillRect(rs.at(i), st::mediaviewVideoBg);
|
p.fillRect(rs.at(i), st::mediaviewVideoBg);
|
||||||
}
|
}
|
||||||
if (_doc && _doc->isRoundVideo()) {
|
if (_doc && _doc->isVideoMessage()) {
|
||||||
p.setCompositionMode(m);
|
p.setCompositionMode(m);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -1808,7 +1810,7 @@ void MediaView::paintEvent(QPaintEvent *e) {
|
||||||
if (_photo || fileShown()) {
|
if (_photo || fileShown()) {
|
||||||
QRect imgRect(_x, _y, _w, _h);
|
QRect imgRect(_x, _y, _w, _h);
|
||||||
if (imgRect.intersects(r)) {
|
if (imgRect.intersects(r)) {
|
||||||
auto rounding = (_doc && _doc->isRoundVideo()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
auto rounding = (_doc && _doc->isVideoMessage()) ? ImageRoundRadius::Ellipse : ImageRoundRadius::None;
|
||||||
auto toDraw = _current.isNull() ? _gif->current(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::None, ms) : _current;
|
auto toDraw = _current.isNull() ? _gif->current(_gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), _gif->width() / cIntRetinaFactor(), _gif->height() / cIntRetinaFactor(), rounding, ImageRoundCorner::None, ms) : _current;
|
||||||
if (!_gif && (!_doc || !_doc->sticker() || _doc->sticker()->img->isNull()) && toDraw.hasAlpha()) {
|
if (!_gif && (!_doc || !_doc->sticker() || _doc->sticker()->img->isNull()) && toDraw.hasAlpha()) {
|
||||||
p.fillRect(imgRect, _transparentBrush);
|
p.fillRect(imgRect, _transparentBrush);
|
||||||
|
@ -2150,7 +2152,7 @@ void MediaView::keyPressEvent(QKeyEvent *e) {
|
||||||
} else if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return || e->key() == Qt::Key_Space) {
|
} else if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return || e->key() == Qt::Key_Space) {
|
||||||
if (_doc && !_doc->loading() && (fileBubbleShown() || !_doc->loaded())) {
|
if (_doc && !_doc->loading() && (fileBubbleShown() || !_doc->loaded())) {
|
||||||
onDocClick();
|
onDocClick();
|
||||||
} else if (_doc && (_doc->isVideo() || _doc->isRoundVideo())) {
|
} else if (_doc && (_doc->isVideoFile() || _doc->isVideoMessage())) {
|
||||||
onVideoPauseResume();
|
onVideoPauseResume();
|
||||||
}
|
}
|
||||||
} else if (e->key() == Qt::Key_Left) {
|
} else if (e->key() == Qt::Key_Left) {
|
||||||
|
@ -2570,7 +2572,7 @@ void MediaView::updateOver(QPoint pos) {
|
||||||
} else if (_closeNav.contains(pos)) {
|
} else if (_closeNav.contains(pos)) {
|
||||||
updateOverState(OverClose);
|
updateOverState(OverClose);
|
||||||
} else if (_doc && fileShown() && QRect(_x, _y, _w, _h).contains(pos)) {
|
} else if (_doc && fileShown() && QRect(_x, _y, _w, _h).contains(pos)) {
|
||||||
if ((_doc->isVideo() || _doc->isRoundVideo()) && _gif) {
|
if ((_doc->isVideoFile() || _doc->isVideoMessage()) && _gif) {
|
||||||
updateOverState(OverVideo);
|
updateOverState(OverVideo);
|
||||||
} else if (!_doc->loaded()) {
|
} else if (!_doc->loaded()) {
|
||||||
updateOverState(OverIcon);
|
updateOverState(OverIcon);
|
||||||
|
|
|
@ -220,7 +220,7 @@ void Messenger::showPhoto(not_null<PhotoData*> photo, PeerData *peer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Messenger::showDocument(not_null<DocumentData*> document, HistoryItem *item) {
|
void Messenger::showDocument(not_null<DocumentData*> document, HistoryItem *item) {
|
||||||
if (cUseExternalVideoPlayer() && document->isVideo()) {
|
if (cUseExternalVideoPlayer() && document->isVideoFile()) {
|
||||||
QDesktopServices::openUrl(QUrl("file:///" + document->location(false).fname));
|
QDesktopServices::openUrl(QUrl("file:///" + document->location(false).fname));
|
||||||
} else {
|
} else {
|
||||||
if (_mediaView->isHidden()) {
|
if (_mediaView->isHidden()) {
|
||||||
|
|
|
@ -50,7 +50,7 @@ TextParseOptions _documentNameOptions = {
|
||||||
|
|
||||||
TextWithEntities ComposeNameWithEntities(DocumentData *document) {
|
TextWithEntities ComposeNameWithEntities(DocumentData *document) {
|
||||||
TextWithEntities result;
|
TextWithEntities result;
|
||||||
auto song = document->song();
|
const auto song = document->song();
|
||||||
if (!song || (song->title.isEmpty() && song->performer.isEmpty())) {
|
if (!song || (song->title.isEmpty() && song->performer.isEmpty())) {
|
||||||
result.text = document->filename().isEmpty()
|
result.text = document->filename().isEmpty()
|
||||||
? qsl("Unknown File")
|
? qsl("Unknown File")
|
||||||
|
@ -185,7 +185,7 @@ void RadialProgressItem::setDocumentLinks(
|
||||||
auto createSaveHandler = [](
|
auto createSaveHandler = [](
|
||||||
not_null<DocumentData*> document
|
not_null<DocumentData*> document
|
||||||
) -> ClickHandlerPtr {
|
) -> ClickHandlerPtr {
|
||||||
if (document->voice()) {
|
if (document->isVoiceMessage()) {
|
||||||
return MakeShared<DocumentOpenClickHandler>(document);
|
return MakeShared<DocumentOpenClickHandler>(document);
|
||||||
}
|
}
|
||||||
return MakeShared<DocumentSaveClickHandler>(document);
|
return MakeShared<DocumentSaveClickHandler>(document);
|
||||||
|
@ -548,7 +548,7 @@ Voice::Voice(
|
||||||
, _st(st) {
|
, _st(st) {
|
||||||
AddComponents(Info::Bit());
|
AddComponents(Info::Bit());
|
||||||
|
|
||||||
Assert(_data->voice() != 0);
|
Assert(_data->isVoiceMessage());
|
||||||
|
|
||||||
setDocumentLinks(_data);
|
setDocumentLinks(_data);
|
||||||
|
|
||||||
|
@ -799,7 +799,7 @@ Document::Document(
|
||||||
|
|
||||||
setDocumentLinks(_data);
|
setDocumentLinks(_data);
|
||||||
|
|
||||||
_status.update(FileStatusSizeReady, _data->size, _data->song() ? _data->song()->duration : -1, 0);
|
_status.update(FileStatusSizeReady, _data->size, _data->isSong() ? _data->song()->duration : -1, 0);
|
||||||
|
|
||||||
if (withThumb()) {
|
if (withThumb()) {
|
||||||
_data->thumb->load();
|
_data->thumb->load();
|
||||||
|
@ -822,7 +822,7 @@ Document::Document(
|
||||||
|
|
||||||
void Document::initDimensions() {
|
void Document::initDimensions() {
|
||||||
_maxw = _st.maxWidth;
|
_maxw = _st.maxWidth;
|
||||||
if (_data->song()) {
|
if (_data->isAudioFile()) {
|
||||||
_minh = _st.songPadding.top() + _st.songThumbSize + _st.songPadding.bottom();
|
_minh = _st.songPadding.top() + _st.songThumbSize + _st.songPadding.bottom();
|
||||||
} else {
|
} else {
|
||||||
_minh = _st.filePadding.top() + _st.fileThumbSize + _st.filePadding.bottom() + st::lineWidth;
|
_minh = _st.filePadding.top() + _st.fileThumbSize + _st.filePadding.bottom() + st::lineWidth;
|
||||||
|
@ -847,7 +847,7 @@ void Document::paint(Painter &p, const QRect &clip, TextSelection selection, con
|
||||||
int32 nameleft = 0, nametop = 0, nameright = 0, statustop = 0, datetop = -1;
|
int32 nameleft = 0, nametop = 0, nameright = 0, statustop = 0, datetop = -1;
|
||||||
bool wthumb = withThumb();
|
bool wthumb = withThumb();
|
||||||
|
|
||||||
auto isSong = (_data->song() != nullptr);
|
auto isSong = _data->isAudioFile();
|
||||||
if (isSong) {
|
if (isSong) {
|
||||||
nameleft = _st.songPadding.left() + _st.songThumbSize + _st.songPadding.right();
|
nameleft = _st.songPadding.left() + _st.songThumbSize + _st.songPadding.right();
|
||||||
nameright = _st.songPadding.left();
|
nameright = _st.songPadding.left();
|
||||||
|
@ -998,7 +998,7 @@ HistoryTextState Document::getState(
|
||||||
|| Local::willStickerImageLoad(_data->mediaKey());
|
|| Local::willStickerImageLoad(_data->mediaKey());
|
||||||
const auto wthumb = withThumb();
|
const auto wthumb = withThumb();
|
||||||
|
|
||||||
if (_data->song()) {
|
if (_data->isAudioFile()) {
|
||||||
const auto nameleft = _st.songPadding.left() + _st.songThumbSize + _st.songPadding.right();
|
const auto nameleft = _st.songPadding.left() + _st.songThumbSize + _st.songPadding.right();
|
||||||
const auto nameright = _st.songPadding.left();
|
const auto nameright = _st.songPadding.left();
|
||||||
const auto namewidth = std::min(
|
const auto namewidth = std::min(
|
||||||
|
@ -1106,11 +1106,13 @@ bool Document::dataLoaded() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Document::iconAnimated() const {
|
bool Document::iconAnimated() const {
|
||||||
return _data->song() || !_data->loaded() || (_radial && _radial->animating());
|
return _data->isAudioFile()
|
||||||
|
|| !_data->loaded()
|
||||||
|
|| (_radial && _radial->animating());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Document::withThumb() const {
|
bool Document::withThumb() const {
|
||||||
return !_data->song()
|
return !_data->isAudioFile()
|
||||||
&& !_data->thumb->isNull()
|
&& !_data->thumb->isNull()
|
||||||
&& _data->thumb->width()
|
&& _data->thumb->width()
|
||||||
&& _data->thumb->height()
|
&& _data->thumb->height()
|
||||||
|
@ -1127,7 +1129,7 @@ bool Document::updateStatusText() {
|
||||||
} else if (_data->loading()) {
|
} else if (_data->loading()) {
|
||||||
statusSize = _data->loadOffset();
|
statusSize = _data->loadOffset();
|
||||||
} else if (_data->loaded()) {
|
} else if (_data->loaded()) {
|
||||||
if (_data->song()) {
|
if (_data->isAudioFile()) {
|
||||||
statusSize = FileStatusSizeLoaded;
|
statusSize = FileStatusSizeLoaded;
|
||||||
using State = Media::Player::State;
|
using State = Media::Player::State;
|
||||||
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
auto state = Media::Player::mixer()->currentState(AudioMsgId::Type::Song);
|
||||||
|
@ -1146,7 +1148,7 @@ bool Document::updateStatusText() {
|
||||||
statusSize = FileStatusSizeReady;
|
statusSize = FileStatusSizeReady;
|
||||||
}
|
}
|
||||||
if (statusSize != _status.size()) {
|
if (statusSize != _status.size()) {
|
||||||
_status.update(statusSize, _data->size, _data->song() ? _data->song()->duration : -1, realDuration);
|
_status.update(statusSize, _data->size, _data->isSong() ? _data->song()->duration : -1, realDuration);
|
||||||
}
|
}
|
||||||
return showPause;
|
return showPause;
|
||||||
}
|
}
|
||||||
|
@ -1327,7 +1329,9 @@ void Link::paint(Painter &p, const QRect &clip, TextSelection selection, const P
|
||||||
}
|
}
|
||||||
p.drawPixmapLeft(pixLeft, pixTop, _width, pix);
|
p.drawPixmapLeft(pixLeft, pixTop, _width, pix);
|
||||||
} else if (_page && _page->document && !_page->document->thumb->isNull()) {
|
} else if (_page && _page->document && !_page->document->thumb->isNull()) {
|
||||||
auto roundRadius = _page->document->isRoundVideo() ? ImageRoundRadius::Ellipse : ImageRoundRadius::Small;
|
auto roundRadius = _page->document->isVideoMessage()
|
||||||
|
? ImageRoundRadius::Ellipse
|
||||||
|
: ImageRoundRadius::Small;
|
||||||
p.drawPixmapLeft(pixLeft, pixTop, _width, _page->document->thumb->pixSingle(_pixw, _pixh, st::linksPhotoSize, st::linksPhotoSize, roundRadius));
|
p.drawPixmapLeft(pixLeft, pixTop, _width, _page->document->thumb->pixSingle(_pixw, _pixh, st::linksPhotoSize, st::linksPhotoSize, roundRadius));
|
||||||
} else {
|
} else {
|
||||||
const auto index = _letter.isEmpty()
|
const auto index = _letter.isEmpty()
|
||||||
|
|
|
@ -251,7 +251,7 @@ bool FileLoadTask::CheckForSong(const QString &filepath, const QByteArray &conte
|
||||||
if (!CheckMimeOrExtensions(filepath, result->filemime, mimes, extensions)) {
|
if (!CheckMimeOrExtensions(filepath, result->filemime, mimes, extensions)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
auto media = Media::Player::PrepareForSending(filepath, content);
|
auto media = Media::Player::PrepareForSending(filepath, content);
|
||||||
if (media.duration < 0) {
|
if (media.duration < 0) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -3134,7 +3134,7 @@ public:
|
||||||
_wavemax = wavemax;
|
_wavemax = wavemax;
|
||||||
}
|
}
|
||||||
void finish() {
|
void finish() {
|
||||||
if (VoiceData *voice = _doc ? _doc->voice() : 0) {
|
if (const auto voice = _doc ? _doc->voice() : nullptr) {
|
||||||
if (!_waveform.isEmpty()) {
|
if (!_waveform.isEmpty()) {
|
||||||
voice->waveform = _waveform;
|
voice->waveform = _waveform;
|
||||||
voice->wavemax = _wavemax;
|
voice->wavemax = _wavemax;
|
||||||
|
@ -3172,7 +3172,7 @@ protected:
|
||||||
};
|
};
|
||||||
|
|
||||||
void countVoiceWaveform(DocumentData *document) {
|
void countVoiceWaveform(DocumentData *document) {
|
||||||
if (VoiceData *voice = document->voice()) {
|
if (const auto voice = document->voice()) {
|
||||||
if (_localLoader) {
|
if (_localLoader) {
|
||||||
voice->waveform.resize(1 + sizeof(TaskId));
|
voice->waveform.resize(1 + sizeof(TaskId));
|
||||||
voice->waveform[0] = -1; // counting
|
voice->waveform[0] = -1; // counting
|
||||||
|
|
|
@ -837,7 +837,9 @@ void MediaPreviewWidget::resizeEvent(QResizeEvent *e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MediaPreviewWidget::showPreview(DocumentData *document) {
|
void MediaPreviewWidget::showPreview(DocumentData *document) {
|
||||||
if (!document || (!document->isAnimation() && !document->sticker()) || document->isRoundVideo()) {
|
if (!document
|
||||||
|
|| (!document->isAnimation() && !document->sticker())
|
||||||
|
|| document->isVideoMessage()) {
|
||||||
hidePreview();
|
hidePreview();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue