mirror of https://github.com/procxx/kepka.git
Remove DocumentData::actionOnLoad. Fix GIF open.
This commit is contained in:
parent
261720c941
commit
c063d94aa5
|
@ -1492,7 +1492,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_player_message_today" = "Today at {time}";
|
"lng_player_message_today" = "Today at {time}";
|
||||||
"lng_player_message_yesterday" = "Yesterday at {time}";
|
"lng_player_message_yesterday" = "Yesterday at {time}";
|
||||||
"lng_player_message_date" = "{date} at {time}";
|
"lng_player_message_date" = "{date} at {time}";
|
||||||
"lng_player_cant_stream" = "This file can't be played before it is fully downloaded.\n\nWould you like to download it?";
|
//"lng_player_cant_stream" = "This file can't be played before it is fully downloaded.\n\nWould you like to download it?";
|
||||||
"lng_player_download" = "Download";
|
"lng_player_download" = "Download";
|
||||||
|
|
||||||
"lng_rights_edit_admin" = "Manage permissions";
|
"lng_rights_edit_admin" = "Manage permissions";
|
||||||
|
|
|
@ -289,108 +289,91 @@ QString documentSaveFilename(const DocumentData *data, bool forceSavingAs = fals
|
||||||
void DocumentOpenClickHandler::Open(
|
void DocumentOpenClickHandler::Open(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
not_null<DocumentData*> data,
|
not_null<DocumentData*> data,
|
||||||
HistoryItem *context,
|
HistoryItem *context) {
|
||||||
ActionOnLoad action) {
|
if (!data->date) {
|
||||||
if (!data->date) return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const auto msgId = context ? context->fullId() : FullMsgId();
|
|
||||||
const auto playVoice = data->isVoiceMessage();
|
|
||||||
const auto playAnimation = data->isAnimation();
|
|
||||||
const auto &location = data->location(true);
|
const auto &location = data->location(true);
|
||||||
if (data->isTheme() && !location.isEmpty() && location.accessEnable()) {
|
if (data->isTheme() && !location.isEmpty() && location.accessEnable()) {
|
||||||
Core::App().showDocument(data, context);
|
Core::App().showDocument(data, context);
|
||||||
location.accessDisable();
|
location.accessDisable();
|
||||||
return;
|
|
||||||
} else if (data->canBePlayed()) {
|
} else if (data->canBePlayed()) {
|
||||||
if (data->isAudioFile()
|
if (data->isAudioFile()
|
||||||
|| data->isVoiceMessage()
|
|| data->isVoiceMessage()
|
||||||
|| data->isVideoMessage()) {
|
|| data->isVideoMessage()) {
|
||||||
|
const auto msgId = context ? context->fullId() : FullMsgId();
|
||||||
Media::Player::instance()->playPause({ data, msgId });
|
Media::Player::instance()->playPause({ data, msgId });
|
||||||
|
} else if (context && data->isAnimation()) {
|
||||||
|
data->owner().requestAnimationPlayInline(context);
|
||||||
} else {
|
} else {
|
||||||
Core::App().showDocument(data, context);
|
Core::App().showDocument(data, context);
|
||||||
}
|
}
|
||||||
return;
|
} else if (!location.isEmpty()) {
|
||||||
}
|
if (data->size < App::kImageSizeLimit && location.accessEnable()) {
|
||||||
if (!location.isEmpty() || (!data->data().isEmpty() && (playVoice || playAnimation))) {
|
const auto guard = gsl::finally([&] {
|
||||||
if (playVoice) {
|
|
||||||
Media::Player::instance()->playPause({ data, msgId });
|
|
||||||
} else if (data->size < App::kImageSizeLimit) {
|
|
||||||
if (!data->data().isEmpty() && playAnimation) {
|
|
||||||
if (action == ActionOnLoadPlayInline && context) {
|
|
||||||
data->owner().requestAnimationPlayInline(context);
|
|
||||||
} else {
|
|
||||||
Core::App().showDocument(data, context);
|
|
||||||
}
|
|
||||||
} else if (location.accessEnable()) {
|
|
||||||
if (playAnimation || QImageReader(location.name()).canRead()) {
|
|
||||||
if (playAnimation && action == ActionOnLoadPlayInline && context) {
|
|
||||||
data->owner().requestAnimationPlayInline(context);
|
|
||||||
} else {
|
|
||||||
Core::App().showDocument(data, context);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
LaunchWithWarning(location.name(), context);
|
|
||||||
}
|
|
||||||
location.accessDisable();
|
location.accessDisable();
|
||||||
} else {
|
});
|
||||||
LaunchWithWarning(location.name(), context);
|
if (QImageReader(location.name()).canRead()) {
|
||||||
|
Core::App().showDocument(data, context);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
LaunchWithWarning(location.name(), context);
|
|
||||||
}
|
}
|
||||||
return;
|
LaunchWithWarning(location.name(), context);
|
||||||
|
} else if (data->status == FileReady
|
||||||
|
|| data->status == FileDownloadFailed) {
|
||||||
|
DocumentSaveClickHandler::Save(origin, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->status != FileReady
|
|
||||||
&& data->status != FileDownloadFailed) return;
|
|
||||||
|
|
||||||
QString filename;
|
|
||||||
if (!data->saveToCache()
|
|
||||||
|| (location.isEmpty() && (!data->data().isEmpty()))) {
|
|
||||||
filename = documentSaveFilename(data);
|
|
||||||
if (filename.isEmpty()) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
data->save(origin, filename, action, msgId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentOpenClickHandler::onClickImpl() const {
|
void DocumentOpenClickHandler::onClickImpl() const {
|
||||||
const auto data = document();
|
Open(context(), document(), getActionItem());
|
||||||
const auto action = data->isVoiceMessage()
|
|
||||||
? ActionOnLoadNone
|
|
||||||
: ActionOnLoadOpen;
|
|
||||||
Open(context(), data, getActionItem(), action);
|
|
||||||
}
|
|
||||||
|
|
||||||
void GifOpenClickHandler::onClickImpl() const {
|
|
||||||
Open(context(), document(), getActionItem(), ActionOnLoadPlayInline);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentSaveClickHandler::Save(
|
void DocumentSaveClickHandler::Save(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
not_null<DocumentData*> data,
|
not_null<DocumentData*> data,
|
||||||
HistoryItem *context,
|
Mode mode) {
|
||||||
bool forceSavingAs) {
|
if (!data->date) {
|
||||||
if (!data->date) return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
auto filepath = data->filepath(
|
if (mode == Mode::ToCacheOrFile
|
||||||
DocumentData::FilePathResolveSaveFromDataSilent,
|
&& data->loaded(DocumentData::FilePathResolveSaveFromDataSilent)) {
|
||||||
forceSavingAs);
|
File::OpenWith(data->filepath(), QCursor::pos());
|
||||||
if (!filepath.isEmpty() && !forceSavingAs) {
|
return;
|
||||||
File::OpenWith(filepath, QCursor::pos());
|
}
|
||||||
} else {
|
auto savename = QString();
|
||||||
auto fileinfo = QFileInfo(filepath);
|
if (mode != Mode::ToCacheOrFile || !data->saveToCache()) {
|
||||||
auto filedir = filepath.isEmpty() ? QDir() : fileinfo.dir();
|
const auto filepath = data->filepath(
|
||||||
auto filename = filepath.isEmpty() ? QString() : fileinfo.fileName();
|
DocumentData::FilePathResolveChecked);
|
||||||
auto newfname = documentSaveFilename(data, forceSavingAs, filename, filedir);
|
if (mode != Mode::ToNewFile
|
||||||
if (!newfname.isEmpty()) {
|
&& (!filepath.isEmpty()
|
||||||
data->save(origin, newfname, ActionOnLoadNone, FullMsgId());
|
|| !data->filepath(
|
||||||
|
DocumentData::FilePathResolveSaveFromData).isEmpty())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto fileinfo = QFileInfo(filepath);
|
||||||
|
const auto filedir = filepath.isEmpty()
|
||||||
|
? QDir()
|
||||||
|
: fileinfo.dir();
|
||||||
|
const auto filename = filepath.isEmpty()
|
||||||
|
? QString()
|
||||||
|
: fileinfo.fileName();
|
||||||
|
savename = documentSaveFilename(
|
||||||
|
data,
|
||||||
|
(mode == Mode::ToNewFile),
|
||||||
|
filename,
|
||||||
|
filedir);
|
||||||
|
if (savename.isEmpty()) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
data->save(origin, savename);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentSaveClickHandler::onClickImpl() const {
|
void DocumentSaveClickHandler::onClickImpl() const {
|
||||||
Save(context(), document(), getActionItem());
|
Save(context(), document());
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentCancelClickHandler::onClickImpl() const {
|
void DocumentCancelClickHandler::onClickImpl() const {
|
||||||
|
@ -695,8 +678,6 @@ void DocumentData::automaticLoad(
|
||||||
save(
|
save(
|
||||||
origin,
|
origin,
|
||||||
filename,
|
filename,
|
||||||
_actionOnLoad,
|
|
||||||
_actionOnLoadMsgId,
|
|
||||||
loadFromCloud,
|
loadFromCloud,
|
||||||
true);
|
true);
|
||||||
}
|
}
|
||||||
|
@ -708,41 +689,6 @@ void DocumentData::automaticLoadSettingsChanged() {
|
||||||
_loader = nullptr;
|
_loader = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DocumentData::performActionOnLoad() {
|
|
||||||
if (_actionOnLoad == ActionOnLoadNone) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const auto loc = location(true);
|
|
||||||
const auto &already = loc.name();
|
|
||||||
const auto item = _actionOnLoadMsgId.msg
|
|
||||||
? App::histItemById(_actionOnLoadMsgId)
|
|
||||||
: nullptr;
|
|
||||||
const auto showImage = !isVideoFile() && (size < App::kImageSizeLimit);
|
|
||||||
const auto playVoice = isVoiceMessage();
|
|
||||||
const auto playMusic = isAudioFile();
|
|
||||||
const auto playAnimation = isAnimation()
|
|
||||||
&& loaded()
|
|
||||||
&& showImage
|
|
||||||
&& item;
|
|
||||||
if (isTheme()) {
|
|
||||||
if (!loc.isEmpty() && loc.accessEnable()) {
|
|
||||||
Core::App().showDocument(this, item);
|
|
||||||
loc.accessDisable();
|
|
||||||
}
|
|
||||||
} else if (_actionOnLoad == ActionOnLoadOpenWith) {
|
|
||||||
if (!already.isEmpty()) {
|
|
||||||
File::OpenWith(already, QCursor::pos());
|
|
||||||
}
|
|
||||||
} else if (playVoice
|
|
||||||
|| playMusic
|
|
||||||
|| playAnimation
|
|
||||||
|| !already.isEmpty()) {
|
|
||||||
DocumentOpenClickHandler::Open({}, this, item, _actionOnLoad);
|
|
||||||
}
|
|
||||||
_actionOnLoad = ActionOnLoadNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool DocumentData::loaded(FilePathResolveType type) const {
|
bool DocumentData::loaded(FilePathResolveType type) const {
|
||||||
if (loading() && _loader->finished()) {
|
if (loading() && _loader->finished()) {
|
||||||
if (_loader->cancelled()) {
|
if (_loader->cancelled()) {
|
||||||
|
@ -834,8 +780,6 @@ bool DocumentData::waitingForAlbum() const {
|
||||||
void DocumentData::save(
|
void DocumentData::save(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
const QString &toFile,
|
const QString &toFile,
|
||||||
ActionOnLoad action,
|
|
||||||
const FullMsgId &actionMsgId,
|
|
||||||
LoadFromCloudSetting fromCloud,
|
LoadFromCloudSetting fromCloud,
|
||||||
bool autoLoading) {
|
bool autoLoading) {
|
||||||
if (loaded(FilePathResolveChecked)) {
|
if (loaded(FilePathResolveChecked)) {
|
||||||
|
@ -858,9 +802,6 @@ void DocumentData::save(
|
||||||
l.accessDisable();
|
l.accessDisable();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_actionOnLoad = action;
|
|
||||||
_actionOnLoadMsgId = actionMsgId;
|
|
||||||
performActionOnLoad();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -874,8 +815,6 @@ void DocumentData::save(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_actionOnLoad = action;
|
|
||||||
_actionOnLoadMsgId = actionMsgId;
|
|
||||||
if (_loader) {
|
if (_loader) {
|
||||||
if (fromCloud == LoadFromCloudOrLocal) {
|
if (fromCloud == LoadFromCloudOrLocal) {
|
||||||
_loader->permitLoadFromCloud();
|
_loader->permitLoadFromCloud();
|
||||||
|
@ -929,8 +868,6 @@ void DocumentData::cancel() {
|
||||||
destroyLoader(CancelledMtpFileLoader);
|
destroyLoader(CancelledMtpFileLoader);
|
||||||
_owner->notifyDocumentLayoutChanged(this);
|
_owner->notifyDocumentLayoutChanged(this);
|
||||||
App::main()->documentLoadProgress(this);
|
App::main()->documentLoadProgress(this);
|
||||||
|
|
||||||
_actionOnLoad = ActionOnLoadNone;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DocumentData::cancelled() const {
|
bool DocumentData::cancelled() const {
|
||||||
|
@ -1009,19 +946,19 @@ void DocumentData::setLocation(const FileLocation &loc) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QString DocumentData::filepath(FilePathResolveType type, bool forceSavingAs) const {
|
QString DocumentData::filepath(FilePathResolveType type) const {
|
||||||
bool check = (type != FilePathResolveCached);
|
bool check = (type != FilePathResolveCached);
|
||||||
QString result = (check && _location.name().isEmpty()) ? QString() : location(check).name();
|
QString result = (check && _location.name().isEmpty()) ? QString() : location(check).name();
|
||||||
bool saveFromData = result.isEmpty() && !data().isEmpty();
|
bool saveFromData = result.isEmpty() && !data().isEmpty();
|
||||||
if (saveFromData) {
|
if (saveFromData) {
|
||||||
if (type != FilePathResolveSaveFromData && type != FilePathResolveSaveFromDataSilent) {
|
if (type != FilePathResolveSaveFromData && type != FilePathResolveSaveFromDataSilent) {
|
||||||
saveFromData = false;
|
saveFromData = false;
|
||||||
} else if (type == FilePathResolveSaveFromDataSilent && (Global::AskDownloadPath() || forceSavingAs)) {
|
} else if (type == FilePathResolveSaveFromDataSilent && Global::AskDownloadPath()) {
|
||||||
saveFromData = false;
|
saveFromData = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (saveFromData) {
|
if (saveFromData) {
|
||||||
QString filename = documentSaveFilename(this, forceSavingAs);
|
QString filename = documentSaveFilename(this);
|
||||||
if (!filename.isEmpty()) {
|
if (!filename.isEmpty()) {
|
||||||
QFile f(filename);
|
QFile f(filename);
|
||||||
if (f.open(QIODevice::WriteOnly)) {
|
if (f.open(QIODevice::WriteOnly)) {
|
||||||
|
@ -1194,7 +1131,8 @@ bool DocumentData::hasRemoteLocation() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DocumentData::canBeStreamed() const {
|
bool DocumentData::canBeStreamed() const {
|
||||||
return hasRemoteLocation() && supportsStreaming();
|
// For now video messages are not streamed.
|
||||||
|
return hasRemoteLocation() && supportsStreaming() && !isVideoMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DocumentData::canBePlayed() const {
|
bool DocumentData::canBePlayed() const {
|
||||||
|
|
|
@ -113,8 +113,6 @@ public:
|
||||||
void save(
|
void save(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
const QString &toFile,
|
const QString &toFile,
|
||||||
ActionOnLoad action = ActionOnLoadNone,
|
|
||||||
const FullMsgId &actionMsgId = FullMsgId(),
|
|
||||||
LoadFromCloudSetting fromCloud = LoadFromCloudOrLocal,
|
LoadFromCloudSetting fromCloud = LoadFromCloudOrLocal,
|
||||||
bool autoLoading = false);
|
bool autoLoading = false);
|
||||||
void cancel();
|
void cancel();
|
||||||
|
@ -131,13 +129,10 @@ public:
|
||||||
void setLocation(const FileLocation &loc);
|
void setLocation(const FileLocation &loc);
|
||||||
|
|
||||||
[[nodiscard]] QString filepath(
|
[[nodiscard]] QString filepath(
|
||||||
FilePathResolveType type = FilePathResolveCached,
|
FilePathResolveType type = FilePathResolveCached) const;
|
||||||
bool forceSavingAs = false) const;
|
|
||||||
|
|
||||||
[[nodiscard]] bool saveToCache() const;
|
[[nodiscard]] bool saveToCache() const;
|
||||||
|
|
||||||
void performActionOnLoad();
|
|
||||||
|
|
||||||
void unload();
|
void unload();
|
||||||
[[nodiscard]] Image *getReplyPreview(Data::FileOrigin origin);
|
[[nodiscard]] Image *getReplyPreview(Data::FileOrigin origin);
|
||||||
|
|
||||||
|
@ -285,8 +280,6 @@ private:
|
||||||
SupportsStreaming _supportsStreaming = SupportsStreaming::Unknown;
|
SupportsStreaming _supportsStreaming = SupportsStreaming::Unknown;
|
||||||
bool _inappPlaybackFailed = false;
|
bool _inappPlaybackFailed = false;
|
||||||
|
|
||||||
ActionOnLoad _actionOnLoad = ActionOnLoadNone;
|
|
||||||
FullMsgId _actionOnLoadMsgId;
|
|
||||||
mutable FileLoader *_loader = nullptr;
|
mutable FileLoader *_loader = nullptr;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -313,12 +306,16 @@ private:
|
||||||
|
|
||||||
class DocumentSaveClickHandler : public DocumentClickHandler {
|
class DocumentSaveClickHandler : public DocumentClickHandler {
|
||||||
public:
|
public:
|
||||||
|
enum class Mode {
|
||||||
|
ToCacheOrFile,
|
||||||
|
ToFile,
|
||||||
|
ToNewFile,
|
||||||
|
};
|
||||||
using DocumentClickHandler::DocumentClickHandler;
|
using DocumentClickHandler::DocumentClickHandler;
|
||||||
static void Save(
|
static void Save(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
not_null<DocumentData*> document,
|
not_null<DocumentData*> document,
|
||||||
HistoryItem *context,
|
Mode mode = Mode::ToCacheOrFile);
|
||||||
bool forceSavingAs = false);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void onClickImpl() const override;
|
void onClickImpl() const override;
|
||||||
|
@ -331,8 +328,7 @@ public:
|
||||||
static void Open(
|
static void Open(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
not_null<DocumentData*> document,
|
not_null<DocumentData*> document,
|
||||||
HistoryItem *context,
|
HistoryItem *context);
|
||||||
ActionOnLoad action = ActionOnLoadOpen);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void onClickImpl() const override;
|
void onClickImpl() const override;
|
||||||
|
@ -348,15 +344,6 @@ protected:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class GifOpenClickHandler : public DocumentOpenClickHandler {
|
|
||||||
public:
|
|
||||||
using DocumentOpenClickHandler::DocumentOpenClickHandler;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
void onClickImpl() const override;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
class VoiceSeekClickHandler : public DocumentOpenClickHandler {
|
class VoiceSeekClickHandler : public DocumentOpenClickHandler {
|
||||||
public:
|
public:
|
||||||
using DocumentOpenClickHandler::DocumentOpenClickHandler;
|
using DocumentOpenClickHandler::DocumentOpenClickHandler;
|
||||||
|
|
|
@ -295,7 +295,6 @@ class DocumentSaveClickHandler;
|
||||||
class DocumentOpenClickHandler;
|
class DocumentOpenClickHandler;
|
||||||
class DocumentCancelClickHandler;
|
class DocumentCancelClickHandler;
|
||||||
class DocumentWrappedClickHandler;
|
class DocumentWrappedClickHandler;
|
||||||
class GifOpenClickHandler;
|
|
||||||
class VoiceSeekClickHandler;
|
class VoiceSeekClickHandler;
|
||||||
|
|
||||||
using PhotoId = uint64;
|
using PhotoId = uint64;
|
||||||
|
@ -313,13 +312,6 @@ using PreparedPhotoThumbs = base::flat_map<char, QImage>;
|
||||||
// [0] == -1 -- counting, [0] == -2 -- could not count
|
// [0] == -1 -- counting, [0] == -2 -- could not count
|
||||||
using VoiceWaveform = QVector<signed char>;
|
using VoiceWaveform = QVector<signed char>;
|
||||||
|
|
||||||
enum ActionOnLoad {
|
|
||||||
ActionOnLoadNone,
|
|
||||||
ActionOnLoadOpen,
|
|
||||||
ActionOnLoadOpenWith,
|
|
||||||
ActionOnLoadPlayInline
|
|
||||||
};
|
|
||||||
|
|
||||||
enum LocationType {
|
enum LocationType {
|
||||||
UnknownFileLocation = 0,
|
UnknownFileLocation = 0,
|
||||||
// 1, 2, etc are used as "version" value in mediaKey() method.
|
// 1, 2, etc are used as "version" value in mediaKey() method.
|
||||||
|
|
|
@ -1095,8 +1095,7 @@ void InnerWidget::saveDocumentToFile(DocumentData *document) {
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
Data::FileOrigin(),
|
Data::FileOrigin(),
|
||||||
document,
|
document,
|
||||||
nullptr,
|
DocumentSaveClickHandler::Mode::ToNewFile);
|
||||||
true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void InnerWidget::copyContextImage(PhotoData *photo) {
|
void InnerWidget::copyContextImage(PhotoData *photo) {
|
||||||
|
|
|
@ -1826,8 +1826,7 @@ void HistoryInner::saveDocumentToFile(
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
contextId,
|
contextId,
|
||||||
document,
|
document,
|
||||||
App::histItemById(contextId),
|
DocumentSaveClickHandler::Mode::ToNewFile);
|
||||||
true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryInner::openContextGif(FullMsgId itemId) {
|
void HistoryInner::openContextGif(FullMsgId itemId) {
|
||||||
|
@ -3066,7 +3065,7 @@ QString HistoryInner::tooltipText() const {
|
||||||
if (const auto media = view->media()) {
|
if (const auto media = view->media()) {
|
||||||
if (media->hidesForwardedInfo()) {
|
if (media->hidesForwardedInfo()) {
|
||||||
dateText += "\n" + lng_forwarded(
|
dateText += "\n" + lng_forwarded(
|
||||||
lt_user,
|
lt_user,
|
||||||
forwarded->originalSender->shortName());
|
forwarded->originalSender->shortName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,7 +82,7 @@ void HistoryDocument::createComponents(bool caption) {
|
||||||
mask |= HistoryDocumentCaptioned::Bit();
|
mask |= HistoryDocumentCaptioned::Bit();
|
||||||
}
|
}
|
||||||
UpdateComponents(mask);
|
UpdateComponents(mask);
|
||||||
if (auto thumbed = Get<HistoryDocumentThumbed>()) {
|
if (const auto thumbed = Get<HistoryDocumentThumbed>()) {
|
||||||
thumbed->_linksavel = std::make_shared<DocumentSaveClickHandler>(
|
thumbed->_linksavel = std::make_shared<DocumentSaveClickHandler>(
|
||||||
_data,
|
_data,
|
||||||
_parent->data()->fullId());
|
_parent->data()->fullId());
|
||||||
|
@ -90,7 +90,7 @@ void HistoryDocument::createComponents(bool caption) {
|
||||||
_data,
|
_data,
|
||||||
_parent->data()->fullId());
|
_parent->data()->fullId());
|
||||||
}
|
}
|
||||||
if (auto voice = Get<HistoryDocumentVoice>()) {
|
if (const auto voice = Get<HistoryDocumentVoice>()) {
|
||||||
voice->_seekl = std::make_shared<VoiceSeekClickHandler>(
|
voice->_seekl = std::make_shared<VoiceSeekClickHandler>(
|
||||||
_data,
|
_data,
|
||||||
_parent->data()->fullId());
|
_parent->data()->fullId());
|
||||||
|
@ -98,7 +98,7 @@ void HistoryDocument::createComponents(bool caption) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryDocument::fillNamedFromData(HistoryDocumentNamed *named) {
|
void HistoryDocument::fillNamedFromData(HistoryDocumentNamed *named) {
|
||||||
auto nameString = named->_name = _data->composeNameString();
|
const auto nameString = named->_name = _data->composeNameString();
|
||||||
named->_namew = st::semiboldFont->width(nameString);
|
named->_namew = st::semiboldFont->width(nameString);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,23 +101,11 @@ void HistoryFileMedia::checkAnimationFinished() const {
|
||||||
}
|
}
|
||||||
void HistoryFileMedia::setDocumentLinks(
|
void HistoryFileMedia::setDocumentLinks(
|
||||||
not_null<DocumentData*> document,
|
not_null<DocumentData*> document,
|
||||||
not_null<HistoryItem*> realParent,
|
not_null<HistoryItem*> realParent) {
|
||||||
bool inlinegif) {
|
|
||||||
FileClickHandlerPtr open, save;
|
|
||||||
const auto context = realParent->fullId();
|
const auto context = realParent->fullId();
|
||||||
if (inlinegif) {
|
|
||||||
open = std::make_shared<GifOpenClickHandler>(document, context);
|
|
||||||
} else {
|
|
||||||
open = std::make_shared<DocumentOpenClickHandler>(document, context);
|
|
||||||
}
|
|
||||||
if (inlinegif) {
|
|
||||||
save = std::make_shared<GifOpenClickHandler>(document, context);
|
|
||||||
} else {
|
|
||||||
save = std::make_shared<DocumentSaveClickHandler>(document, context);
|
|
||||||
}
|
|
||||||
setLinks(
|
setLinks(
|
||||||
std::move(open),
|
std::make_shared<DocumentOpenClickHandler>(document, context),
|
||||||
std::move(save),
|
std::make_shared<DocumentSaveClickHandler>(document, context),
|
||||||
std::make_shared<DocumentCancelClickHandler>(document, context));
|
std::make_shared<DocumentCancelClickHandler>(document, context));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,8 +49,7 @@ protected:
|
||||||
FileClickHandlerPtr &&cancell);
|
FileClickHandlerPtr &&cancell);
|
||||||
void setDocumentLinks(
|
void setDocumentLinks(
|
||||||
not_null<DocumentData*> document,
|
not_null<DocumentData*> document,
|
||||||
not_null<HistoryItem*> realParent,
|
not_null<HistoryItem*> realParent);
|
||||||
bool inlinegif = false);
|
|
||||||
|
|
||||||
// >= 0 will contain download / upload string, _statusSize = loaded bytes
|
// >= 0 will contain download / upload string, _statusSize = loaded bytes
|
||||||
// < 0 will contain played string, _statusSize = -(seconds + 1) played
|
// < 0 will contain played string, _statusSize = -(seconds + 1) played
|
||||||
|
|
|
@ -22,6 +22,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "history/view/history_view_element.h"
|
#include "history/view/history_view_element.h"
|
||||||
#include "history/view/history_view_cursor_state.h"
|
#include "history/view/history_view_cursor_state.h"
|
||||||
#include "window/window_controller.h"
|
#include "window/window_controller.h"
|
||||||
|
#include "core/application.h" // for Application::showDocument.
|
||||||
#include "ui/image/image.h"
|
#include "ui/image/image.h"
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
#include "data/data_document.h"
|
#include "data/data_document.h"
|
||||||
|
@ -52,7 +53,7 @@ HistoryGif::HistoryGif(
|
||||||
, _data(document)
|
, _data(document)
|
||||||
, _caption(st::minPhotoSize - st::msgPadding.left() - st::msgPadding.right()) {
|
, _caption(st::minPhotoSize - st::msgPadding.left() - st::msgPadding.right()) {
|
||||||
const auto item = parent->data();
|
const auto item = parent->data();
|
||||||
setDocumentLinks(_data, item, !_data->isVideoMessage());
|
setDocumentLinks(_data, item);
|
||||||
|
|
||||||
setStatusSize(FileStatusSizeReady);
|
setStatusSize(FileStatusSizeReady);
|
||||||
|
|
||||||
|
@ -68,12 +69,6 @@ QSize HistoryGif::countOptimalSize() {
|
||||||
_parent->skipBlockWidth(),
|
_parent->skipBlockWidth(),
|
||||||
_parent->skipBlockHeight());
|
_parent->skipBlockHeight());
|
||||||
}
|
}
|
||||||
if (!_openInMediaviewLink) {
|
|
||||||
_openInMediaviewLink = std::make_shared<DocumentOpenClickHandler>(
|
|
||||||
_data,
|
|
||||||
_parent->data()->fullId());
|
|
||||||
}
|
|
||||||
|
|
||||||
auto tw = 0;
|
auto tw = 0;
|
||||||
auto th = 0;
|
auto th = 0;
|
||||||
if (_gif && _gif->state() == Media::Clip::State::Error) {
|
if (_gif && _gif->state() == Media::Clip::State::Error) {
|
||||||
|
@ -635,10 +630,12 @@ TextState HistoryGif::textState(QPoint point, StateRequest request) const {
|
||||||
if (QRect(usex + paintx, painty, usew, painth).contains(point)) {
|
if (QRect(usex + paintx, painty, usew, painth).contains(point)) {
|
||||||
if (_data->uploading()) {
|
if (_data->uploading()) {
|
||||||
result.link = _cancell;
|
result.link = _cancell;
|
||||||
} else if (!_gif || !cAutoPlayGif() || _data->isVideoMessage()) {
|
|
||||||
result.link = _data->loaded() ? _openl : (_data->loading() ? _cancell : _savel);
|
|
||||||
} else {
|
} else {
|
||||||
result.link = _openInMediaviewLink;
|
result.link = _data->loaded()
|
||||||
|
? _openl :
|
||||||
|
_data->loading()
|
||||||
|
? _cancell
|
||||||
|
: _savel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isRound || _caption.isEmpty()) {
|
if (isRound || _caption.isEmpty()) {
|
||||||
|
@ -771,15 +768,6 @@ void HistoryGif::updateStatusText() const {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryGif::refreshParentId(not_null<HistoryItem*> realParent) {
|
|
||||||
HistoryFileMedia::refreshParentId(realParent);
|
|
||||||
|
|
||||||
const auto fullId = realParent->fullId();
|
|
||||||
if (_openInMediaviewLink) {
|
|
||||||
_openInMediaviewLink->setMessageId(fullId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QString HistoryGif::additionalInfoString() const {
|
QString HistoryGif::additionalInfoString() const {
|
||||||
if (_data->isVideoMessage()) {
|
if (_data->isVideoMessage()) {
|
||||||
updateStatusText();
|
updateStatusText();
|
||||||
|
@ -879,6 +867,9 @@ void HistoryGif::playAnimation(bool autoplay) {
|
||||||
return;
|
return;
|
||||||
} else if (_gif && autoplay) {
|
} else if (_gif && autoplay) {
|
||||||
return;
|
return;
|
||||||
|
} else if (_gif && cAutoPlayGif()) {
|
||||||
|
Core::App().showDocument(_data, _parent->data());
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
using Mode = Media::Clip::Reader::Mode;
|
using Mode = Media::Clip::Reader::Mode;
|
||||||
if (_gif) {
|
if (_gif) {
|
||||||
|
|
|
@ -29,8 +29,6 @@ public:
|
||||||
not_null<Element*> parent,
|
not_null<Element*> parent,
|
||||||
not_null<DocumentData*> document);
|
not_null<DocumentData*> document);
|
||||||
|
|
||||||
void refreshParentId(not_null<HistoryItem*> realParent) override;
|
|
||||||
|
|
||||||
void draw(Painter &p, const QRect &r, TextSelection selection, crl::time ms) const override;
|
void draw(Painter &p, const QRect &r, TextSelection selection, crl::time ms) const override;
|
||||||
TextState textState(QPoint point, StateRequest request) const override;
|
TextState textState(QPoint point, StateRequest request) const override;
|
||||||
|
|
||||||
|
@ -104,7 +102,6 @@ private:
|
||||||
bool isSeparateRoundVideo() const;
|
bool isSeparateRoundVideo() const;
|
||||||
|
|
||||||
not_null<DocumentData*> _data;
|
not_null<DocumentData*> _data;
|
||||||
FileClickHandlerPtr _openInMediaviewLink;
|
|
||||||
int _thumbw = 1;
|
int _thumbw = 1;
|
||||||
int _thumbh = 1;
|
int _thumbh = 1;
|
||||||
Text _caption;
|
Text _caption;
|
||||||
|
|
|
@ -123,7 +123,10 @@ void AddSaveDocumentAction(
|
||||||
Data::FileOrigin origin,
|
Data::FileOrigin origin,
|
||||||
not_null<DocumentData*> document) {
|
not_null<DocumentData*> document) {
|
||||||
const auto save = [=] {
|
const auto save = [=] {
|
||||||
DocumentSaveClickHandler::Save(origin, document, nullptr, true);
|
DocumentSaveClickHandler::Save(
|
||||||
|
origin,
|
||||||
|
document,
|
||||||
|
DocumentSaveClickHandler::Mode::ToNewFile);
|
||||||
};
|
};
|
||||||
menu->addAction(
|
menu->addAction(
|
||||||
lang(document->isVideoFile()
|
lang(document->isVideoFile()
|
||||||
|
|
|
@ -1277,8 +1277,7 @@ void ListWidget::showContextMenu(
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
itemFullId,
|
itemFullId,
|
||||||
document,
|
document,
|
||||||
App::histItemById(itemFullId),
|
DocumentSaveClickHandler::Mode::ToNewFile);
|
||||||
true);
|
|
||||||
});
|
});
|
||||||
_contextMenu->addAction(
|
_contextMenu->addAction(
|
||||||
lang(isVideo
|
lang(isVideo
|
||||||
|
|
|
@ -1388,10 +1388,6 @@ void MainWidget::documentLoadProgress(FileLoader *loader) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::documentLoadProgress(DocumentData *document) {
|
void MainWidget::documentLoadProgress(DocumentData *document) {
|
||||||
if (document->loaded()) {
|
|
||||||
document->performActionOnLoad();
|
|
||||||
}
|
|
||||||
|
|
||||||
session().data().requestDocumentViewRepaint(document);
|
session().data().requestDocumentViewRepaint(document);
|
||||||
session().documentUpdated.notify(document, true);
|
session().documentUpdated.notify(document, true);
|
||||||
|
|
||||||
|
|
|
@ -137,15 +137,12 @@ void Instance::setCurrent(const AudioMsgId &audioId) {
|
||||||
return (check.audio() != audioId.audio())
|
return (check.audio() != audioId.audio())
|
||||||
|| (check.contextId() != audioId.contextId());
|
|| (check.contextId() != audioId.contextId());
|
||||||
};
|
};
|
||||||
const auto trackChanged = changed(data->current);
|
if (changed(data->current)
|
||||||
if (trackChanged && data->streamed && changed(data->streamed->id)) {
|
&& data->streamed
|
||||||
|
&& changed(data->streamed->id)) {
|
||||||
clearStreamed(data);
|
clearStreamed(data);
|
||||||
}
|
}
|
||||||
data->current = audioId;
|
data->current = audioId;
|
||||||
if (!trackChanged) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
data->current = audioId;
|
|
||||||
data->isPlaying = false;
|
data->isPlaying = false;
|
||||||
|
|
||||||
const auto history = data->history;
|
const auto history = data->history;
|
||||||
|
@ -362,6 +359,7 @@ void Instance::play(const AudioMsgId &audioId) {
|
||||||
playStreamed(audioId, std::move(loader));
|
playStreamed(audioId, std::move(loader));
|
||||||
} else if (document->isVideoMessage()) {
|
} else if (document->isVideoMessage()) {
|
||||||
if (const auto item = App::histItemById(audioId.contextId())) {
|
if (const auto item = App::histItemById(audioId.contextId())) {
|
||||||
|
setCurrent(audioId);
|
||||||
App::wnd()->controller()->startRoundVideo(item);
|
App::wnd()->controller()->startRoundVideo(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -378,7 +376,6 @@ void Instance::playPause(const AudioMsgId &audioId) {
|
||||||
} else {
|
} else {
|
||||||
play(audioId);
|
play(audioId);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Instance::playStreamed(
|
void Instance::playStreamed(
|
||||||
|
@ -462,7 +459,9 @@ void Instance::playPause(AudioMsgId::Type type) {
|
||||||
emitUpdate(type);
|
emitUpdate(type);
|
||||||
} else {
|
} else {
|
||||||
const auto state = getState(type);
|
const auto state = getState(type);
|
||||||
if (state.id) {
|
if (state.id
|
||||||
|
&& state.id.audio() == data->current.audio()
|
||||||
|
&& state.id.contextId() == data->current.contextId()) {
|
||||||
if (IsStopped(state.state)) {
|
if (IsStopped(state.state)) {
|
||||||
play(state.id);
|
play(state.id);
|
||||||
} else if (IsPaused(state.state) || state.state == State::Pausing) {
|
} else if (IsPaused(state.state) || state.state == State::Pausing) {
|
||||||
|
@ -470,7 +469,7 @@ void Instance::playPause(AudioMsgId::Type type) {
|
||||||
} else {
|
} else {
|
||||||
mixer()->pause(state.id);
|
mixer()->pause(state.id);
|
||||||
}
|
}
|
||||||
} else if (auto data = getData(type)) {
|
} else {
|
||||||
play(data->current);
|
play(data->current);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -697,14 +696,13 @@ void Instance::handleStreamingError(
|
||||||
document->setNotSupportsStreaming();
|
document->setNotSupportsStreaming();
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
(contextId ? contextId : ::Data::FileOrigin()),
|
(contextId ? contextId : ::Data::FileOrigin()),
|
||||||
document,
|
document);
|
||||||
App::histItemById(contextId));
|
|
||||||
} else if (error == Streaming::Error::OpenFailed) {
|
} else if (error == Streaming::Error::OpenFailed) {
|
||||||
document->setInappPlaybackFailed();
|
document->setInappPlaybackFailed();
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
(contextId ? contextId : ::Data::FileOrigin()),
|
(contextId ? contextId : ::Data::FileOrigin()),
|
||||||
document,
|
document,
|
||||||
App::histItemById(contextId));
|
DocumentSaveClickHandler::Mode::ToFile);
|
||||||
}
|
}
|
||||||
emitUpdate(data->type);
|
emitUpdate(data->type);
|
||||||
if (data->streamed && data->streamed->player.failed()) {
|
if (data->streamed && data->streamed->player.failed()) {
|
||||||
|
|
|
@ -499,9 +499,13 @@ void Widget::updateTimeLabel() {
|
||||||
void Widget::handleSongChange() {
|
void Widget::handleSongChange() {
|
||||||
const auto current = instance()->current(_type);
|
const auto current = instance()->current(_type);
|
||||||
const auto document = current.audio();
|
const auto document = current.audio();
|
||||||
if (!current || !document) {
|
if (!current
|
||||||
|
|| !document
|
||||||
|
|| ((_lastSongId.audio() == document)
|
||||||
|
&& (_lastSongId.contextId() == current.contextId()))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
_lastSongId = current;
|
||||||
|
|
||||||
TextWithEntities textWithEntities;
|
TextWithEntities textWithEntities;
|
||||||
if (document->isVoiceMessage() || document->isVideoMessage()) {
|
if (document->isVoiceMessage() || document->isVideoMessage()) {
|
||||||
|
|
|
@ -93,6 +93,7 @@ private:
|
||||||
// We switch to Type::Song only if _voiceIsActive == false.
|
// We switch to Type::Song only if _voiceIsActive == false.
|
||||||
// We change _voiceIsActive to false only manually or from tracksFinished().
|
// We change _voiceIsActive to false only manually or from tracksFinished().
|
||||||
AudioMsgId::Type _type = AudioMsgId::Type::Unknown;
|
AudioMsgId::Type _type = AudioMsgId::Type::Unknown;
|
||||||
|
AudioMsgId _lastSongId;
|
||||||
bool _voiceIsActive = false;
|
bool _voiceIsActive = false;
|
||||||
Fn<void()> _closeCallback;
|
Fn<void()> _closeCallback;
|
||||||
|
|
||||||
|
|
|
@ -1065,7 +1065,10 @@ void OverlayWidget::onSaveAs() {
|
||||||
if (_doc->data().isEmpty()) location.accessDisable();
|
if (_doc->data().isEmpty()) location.accessDisable();
|
||||||
} else {
|
} else {
|
||||||
if (!documentContentShown()) {
|
if (!documentContentShown()) {
|
||||||
DocumentSaveClickHandler::Save(fileOrigin(), _doc, App::histItemById(_msgid), true);
|
DocumentSaveClickHandler::Save(
|
||||||
|
fileOrigin(),
|
||||||
|
_doc,
|
||||||
|
DocumentSaveClickHandler::Mode::ToNewFile);
|
||||||
updateControls();
|
updateControls();
|
||||||
} else {
|
} else {
|
||||||
_saveVisible = false;
|
_saveVisible = false;
|
||||||
|
@ -1109,8 +1112,7 @@ void OverlayWidget::onDocClick() {
|
||||||
DocumentOpenClickHandler::Open(
|
DocumentOpenClickHandler::Open(
|
||||||
fileOrigin(),
|
fileOrigin(),
|
||||||
_doc,
|
_doc,
|
||||||
App::histItemById(_msgid),
|
App::histItemById(_msgid));
|
||||||
ActionOnLoadNone);
|
|
||||||
if (_doc->loading() && !_radial.animating()) {
|
if (_doc->loading() && !_radial.animating()) {
|
||||||
_radial.start(_doc->progress());
|
_radial.start(_doc->progress());
|
||||||
}
|
}
|
||||||
|
@ -1155,7 +1157,7 @@ void OverlayWidget::onDownload() {
|
||||||
DocumentSaveClickHandler::Save(
|
DocumentSaveClickHandler::Save(
|
||||||
fileOrigin(),
|
fileOrigin(),
|
||||||
_doc,
|
_doc,
|
||||||
App::histItemById(_msgid));
|
DocumentSaveClickHandler::Mode::ToFile);
|
||||||
updateControls();
|
updateControls();
|
||||||
} else {
|
} else {
|
||||||
_saveVisible = false;
|
_saveVisible = false;
|
||||||
|
@ -3145,22 +3147,15 @@ void OverlayWidget::mousePressEvent(QMouseEvent *e) {
|
||||||
_lastAction = e->pos();
|
_lastAction = e->pos();
|
||||||
} else if (_over == OverRightNav && moveToNext(1)) {
|
} else if (_over == OverRightNav && moveToNext(1)) {
|
||||||
_lastAction = e->pos();
|
_lastAction = e->pos();
|
||||||
} else if (_over == OverName) {
|
} else if (_over == OverName
|
||||||
_down = OverName;
|
|| _over == OverDate
|
||||||
} else if (_over == OverDate) {
|
|| _over == OverHeader
|
||||||
_down = OverDate;
|
|| _over == OverSave
|
||||||
} else if (_over == OverHeader) {
|
|| _over == OverIcon
|
||||||
_down = OverHeader;
|
|| _over == OverMore
|
||||||
} else if (_over == OverSave) {
|
|| _over == OverClose
|
||||||
_down = OverSave;
|
|| _over == OverVideo) {
|
||||||
} else if (_over == OverIcon) {
|
_down = _over;
|
||||||
_down = OverIcon;
|
|
||||||
} else if (_over == OverMore) {
|
|
||||||
_down = OverMore;
|
|
||||||
} else if (_over == OverClose) {
|
|
||||||
_down = OverClose;
|
|
||||||
} else if (_over == OverVideo) {
|
|
||||||
_down = OverVideo;
|
|
||||||
} else if (!_saveMsg.contains(e->pos()) || !_saveMsgStarted) {
|
} else if (!_saveMsg.contains(e->pos()) || !_saveMsgStarted) {
|
||||||
_pressed = true;
|
_pressed = true;
|
||||||
_dragging = 0;
|
_dragging = 0;
|
||||||
|
|
|
@ -188,35 +188,15 @@ ItemBase::~ItemBase() = default;
|
||||||
void RadialProgressItem::setDocumentLinks(
|
void RadialProgressItem::setDocumentLinks(
|
||||||
not_null<DocumentData*> document) {
|
not_null<DocumentData*> document) {
|
||||||
const auto context = parent()->fullId();
|
const auto context = parent()->fullId();
|
||||||
const auto createSaveHandler = [&]() -> ClickHandlerPtr {
|
|
||||||
if (document->isVideoMessage()) {
|
|
||||||
return std::make_shared<GifOpenClickHandler>(
|
|
||||||
document,
|
|
||||||
context);
|
|
||||||
} else if (document->isVoiceMessage()) {
|
|
||||||
return std::make_shared<DocumentOpenClickHandler>(
|
|
||||||
document,
|
|
||||||
context);
|
|
||||||
}
|
|
||||||
return std::make_shared<DocumentSaveClickHandler>(
|
|
||||||
document,
|
|
||||||
context);
|
|
||||||
};
|
|
||||||
setLinks(
|
setLinks(
|
||||||
(document->isVideoMessage()
|
std::make_shared<DocumentOpenClickHandler>(document, context),
|
||||||
? std::make_shared<GifOpenClickHandler>(
|
std::make_shared<DocumentSaveClickHandler>(document, context),
|
||||||
document,
|
std::make_shared<DocumentCancelClickHandler>(document, context));
|
||||||
context)
|
|
||||||
: std::make_shared<DocumentOpenClickHandler>(
|
|
||||||
document,
|
|
||||||
context)),
|
|
||||||
createSaveHandler(),
|
|
||||||
std::make_shared<DocumentCancelClickHandler>(
|
|
||||||
document,
|
|
||||||
context));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RadialProgressItem::clickHandlerActiveChanged(const ClickHandlerPtr &action, bool active) {
|
void RadialProgressItem::clickHandlerActiveChanged(
|
||||||
|
const ClickHandlerPtr &action,
|
||||||
|
bool active) {
|
||||||
ItemBase::clickHandlerActiveChanged(action, active);
|
ItemBase::clickHandlerActiveChanged(action, active);
|
||||||
if (action == _openl || action == _savel || action == _cancell) {
|
if (action == _openl || action == _savel || action == _cancell) {
|
||||||
if (iconAnimated()) {
|
if (iconAnimated()) {
|
||||||
|
@ -229,7 +209,10 @@ void RadialProgressItem::clickHandlerActiveChanged(const ClickHandlerPtr &action
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void RadialProgressItem::setLinks(ClickHandlerPtr &&openl, ClickHandlerPtr &&savel, ClickHandlerPtr &&cancell) {
|
void RadialProgressItem::setLinks(
|
||||||
|
ClickHandlerPtr &&openl,
|
||||||
|
ClickHandlerPtr &&savel,
|
||||||
|
ClickHandlerPtr &&cancell) {
|
||||||
_openl = std::move(openl);
|
_openl = std::move(openl);
|
||||||
_savel = std::move(savel);
|
_savel = std::move(savel);
|
||||||
_cancell = std::move(cancell);
|
_cancell = std::move(cancell);
|
||||||
|
@ -585,9 +568,7 @@ Voice::Voice(
|
||||||
const style::OverviewFileLayout &st)
|
const style::OverviewFileLayout &st)
|
||||||
: RadialProgressItem(parent)
|
: RadialProgressItem(parent)
|
||||||
, _data(voice)
|
, _data(voice)
|
||||||
, _namel(_data->isVideoMessage()
|
, _namel(std::make_shared<DocumentOpenClickHandler>(_data, parent->fullId()))
|
||||||
? std::make_shared<GifOpenClickHandler>(_data, parent->fullId())
|
|
||||||
: std::make_shared<DocumentOpenClickHandler>(_data, parent->fullId()))
|
|
||||||
, _st(st) {
|
, _st(st) {
|
||||||
AddComponents(Info::Bit());
|
AddComponents(Info::Bit());
|
||||||
|
|
||||||
|
@ -670,13 +651,18 @@ void Voice::paint(Painter &p, const QRect &clip, TextSelection selection, const
|
||||||
p.setBrush(st::imageBg);
|
p.setBrush(st::imageBg);
|
||||||
p.drawEllipse(inner);
|
p.drawEllipse(inner);
|
||||||
}
|
}
|
||||||
|
const auto &checkLink = (_data->loading() || _data->uploading())
|
||||||
|
? _cancell
|
||||||
|
: (_data->canBePlayed() || loaded)
|
||||||
|
? _openl
|
||||||
|
: _savel;
|
||||||
if (selected) {
|
if (selected) {
|
||||||
p.setBrush((thumbLoaded || blurred) ? st::msgDateImgBgSelected : st::msgFileInBgSelected);
|
p.setBrush((thumbLoaded || blurred) ? st::msgDateImgBgSelected : st::msgFileInBgSelected);
|
||||||
} else if (_data->hasThumbnail()) {
|
} else if (_data->hasThumbnail()) {
|
||||||
auto over = ClickHandler::showAsActive(loaded ? _openl : (_data->loading() ? _cancell : _openl));
|
auto over = ClickHandler::showAsActive(checkLink);
|
||||||
p.setBrush(anim::brush(st::msgDateImgBg, st::msgDateImgBgOver, _a_iconOver.current(context->ms, over ? 1. : 0.)));
|
p.setBrush(anim::brush(st::msgDateImgBg, st::msgDateImgBgOver, _a_iconOver.current(context->ms, over ? 1. : 0.)));
|
||||||
} else {
|
} else {
|
||||||
auto over = ClickHandler::showAsActive(loaded ? _openl : (_data->loading() ? _cancell : _openl));
|
auto over = ClickHandler::showAsActive(checkLink);
|
||||||
p.setBrush(anim::brush(st::msgFileInBg, st::msgFileInBgOver, _a_iconOver.current(context->ms, over ? 1. : 0.)));
|
p.setBrush(anim::brush(st::msgFileInBg, st::msgFileInBgOver, _a_iconOver.current(context->ms, over ? 1. : 0.)));
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -690,12 +676,12 @@ void Voice::paint(Painter &p, const QRect &clip, TextSelection selection, const
|
||||||
_radial->draw(p, rinner, st::msgFileRadialLine, bg);
|
_radial->draw(p, rinner, st::msgFileRadialLine, bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto icon = [&] {
|
const auto icon = [&] {
|
||||||
if (_data->loading() || _data->uploading()) {
|
if (_data->loading() || _data->uploading()) {
|
||||||
return &(selected ? _st.songCancelSelected : _st.songCancel);
|
return &(selected ? _st.songCancelSelected : _st.songCancel);
|
||||||
} else if (showPause) {
|
} else if (showPause) {
|
||||||
return &(selected ? _st.songPauseSelected : _st.songPause);
|
return &(selected ? _st.songPauseSelected : _st.songPause);
|
||||||
} else if (_status.size() < 0 || _status.size() == FileStatusSizeLoaded) {
|
} else if (_data->canBePlayed()) {
|
||||||
return &(selected ? _st.songPlaySelected : _st.songPlay);
|
return &(selected ? _st.songPlaySelected : _st.songPlay);
|
||||||
}
|
}
|
||||||
return &(selected ? _st.songDownloadSelected : _st.songDownload);
|
return &(selected ? _st.songDownloadSelected : _st.songDownload);
|
||||||
|
@ -760,11 +746,11 @@ TextState Voice::getState(
|
||||||
_st.songThumbSize,
|
_st.songThumbSize,
|
||||||
_width);
|
_width);
|
||||||
if (inner.contains(point)) {
|
if (inner.contains(point)) {
|
||||||
const auto link = loaded
|
const auto link = (_data->loading() || _data->uploading())
|
||||||
? _openl
|
|
||||||
: (_data->loading() || _data->uploading())
|
|
||||||
? _cancell
|
? _cancell
|
||||||
: _openl;
|
: (_data->canBePlayed() || loaded)
|
||||||
|
? _openl
|
||||||
|
: _savel;
|
||||||
return { parent(), link };
|
return { parent(), link };
|
||||||
}
|
}
|
||||||
auto result = TextState(parent());
|
auto result = TextState(parent());
|
||||||
|
|
|
@ -644,7 +644,6 @@ void Controller::setDefaultFloatPlayerDelegate(
|
||||||
_defaultFloatPlayerDelegate = delegate;
|
_defaultFloatPlayerDelegate = delegate;
|
||||||
_floatPlayers = std::make_unique<Media::Player::FloatController>(
|
_floatPlayers = std::make_unique<Media::Player::FloatController>(
|
||||||
delegate);
|
delegate);
|
||||||
_floatPlayers->closeEvents();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Controller::replaceFloatPlayerDelegate(
|
void Controller::replaceFloatPlayerDelegate(
|
||||||
|
|
Loading…
Reference in New Issue