mirror of https://github.com/procxx/kepka.git
Open theme preview after loading.
This commit is contained in:
parent
95ee17bd54
commit
37a4c79c81
|
@ -284,6 +284,14 @@ void Application::showDocument(not_null<DocumentData*> document, HistoryItem *it
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Application::showTheme(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
const Data::CloudTheme &cloud) {
|
||||||
|
_mediaView->showTheme(document, cloud);
|
||||||
|
_mediaView->activateWindow();
|
||||||
|
_mediaView->setFocus();
|
||||||
|
}
|
||||||
|
|
||||||
PeerData *Application::ui_getPeerForMouseAction() {
|
PeerData *Application::ui_getPeerForMouseAction() {
|
||||||
if (_mediaView && !_mediaView->isHidden()) {
|
if (_mediaView && !_mediaView->isHidden()) {
|
||||||
return _mediaView->ui_getPeerForMouseAction();
|
return _mediaView->ui_getPeerForMouseAction();
|
||||||
|
|
|
@ -68,6 +68,10 @@ class Translator;
|
||||||
class CloudManager;
|
class CloudManager;
|
||||||
} // namespace Lang
|
} // namespace Lang
|
||||||
|
|
||||||
|
namespace Data {
|
||||||
|
struct CloudTheme;
|
||||||
|
} // namespace Data
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
|
|
||||||
class Launcher;
|
class Launcher;
|
||||||
|
@ -103,6 +107,9 @@ public:
|
||||||
void showPhoto(not_null<PhotoData*> photo, HistoryItem *item);
|
void showPhoto(not_null<PhotoData*> photo, HistoryItem *item);
|
||||||
void showPhoto(not_null<PhotoData*> photo, not_null<PeerData*> item);
|
void showPhoto(not_null<PhotoData*> photo, not_null<PeerData*> item);
|
||||||
void showDocument(not_null<DocumentData*> document, HistoryItem *item);
|
void showDocument(not_null<DocumentData*> document, HistoryItem *item);
|
||||||
|
void showTheme(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
const Data::CloudTheme &cloud);
|
||||||
PeerData *ui_getPeerForMouseAction();
|
PeerData *ui_getPeerForMouseAction();
|
||||||
|
|
||||||
QPoint getPointForCallPanelCenter() const;
|
QPoint getPointForCallPanelCenter() const;
|
||||||
|
|
|
@ -16,6 +16,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "data/data_file_origin.h"
|
#include "data/data_file_origin.h"
|
||||||
#include "main/main_session.h"
|
#include "main/main_session.h"
|
||||||
#include "boxes/confirm_box.h"
|
#include "boxes/confirm_box.h"
|
||||||
|
#include "core/application.h" // Core::App().showTheme.
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "apiwrap.h"
|
#include "apiwrap.h"
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
@ -147,26 +148,7 @@ void CloudThemes::resolve(
|
||||||
MTP_inputThemeSlug(MTP_string(slug)),
|
MTP_inputThemeSlug(MTP_string(slug)),
|
||||||
MTP_long(0)
|
MTP_long(0)
|
||||||
)).done([=](const MTPTheme &result) {
|
)).done([=](const MTPTheme &result) {
|
||||||
result.match([&](const MTPDtheme &data) {
|
showPreview(result);
|
||||||
const auto cloud = CloudTheme::Parse(_session, data);
|
|
||||||
if (cloud.documentId) {
|
|
||||||
const auto document = _session->data().document(
|
|
||||||
cloud.documentId);
|
|
||||||
DocumentOpenClickHandler::Open(
|
|
||||||
Data::FileOrigin(),
|
|
||||||
document,
|
|
||||||
_session->data().message(clickFromMessageId));
|
|
||||||
} else if (cloud.createdBy == _session->userId()) {
|
|
||||||
Ui::show(Box(
|
|
||||||
Window::Theme::CreateForExistingBox,
|
|
||||||
&App::wnd()->controller(),
|
|
||||||
cloud));
|
|
||||||
} else {
|
|
||||||
Ui::show(Box<InformBox>(
|
|
||||||
tr::lng_theme_no_desktop(tr::now)));
|
|
||||||
}
|
|
||||||
}, [&](const MTPDthemeDocumentNotModified &data) {
|
|
||||||
});
|
|
||||||
}).fail([=](const RPCError &error) {
|
}).fail([=](const RPCError &error) {
|
||||||
if (error.type() == qstr("THEME_FORMAT_INVALID")) {
|
if (error.type() == qstr("THEME_FORMAT_INVALID")) {
|
||||||
Ui::show(Box<InformBox>(
|
Ui::show(Box<InformBox>(
|
||||||
|
@ -175,30 +157,80 @@ void CloudThemes::resolve(
|
||||||
}).send();
|
}).send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CloudThemes::showPreview(const MTPTheme &data) {
|
||||||
|
data.match([&](const MTPDtheme &data) {
|
||||||
|
showPreview(CloudTheme::Parse(_session, data));
|
||||||
|
}, [&](const MTPDthemeDocumentNotModified &data) {
|
||||||
|
LOG(("API Error: Unexpected themeDocumentNotModified."));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void CloudThemes::showPreview(const CloudTheme &cloud) {
|
||||||
|
if (const auto documentId = cloud.documentId) {
|
||||||
|
previewFromDocument(cloud, _session->data().document(documentId));
|
||||||
|
} else if (cloud.createdBy == _session->userId()) {
|
||||||
|
Ui::show(Box(
|
||||||
|
Window::Theme::CreateForExistingBox,
|
||||||
|
&App::wnd()->controller(),
|
||||||
|
cloud));
|
||||||
|
} else {
|
||||||
|
Ui::show(Box<InformBox>(
|
||||||
|
tr::lng_theme_no_desktop(tr::now)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void CloudThemes::updateFromDocument(
|
void CloudThemes::updateFromDocument(
|
||||||
const CloudTheme &cloud,
|
const CloudTheme &cloud,
|
||||||
not_null<DocumentData*> document) {
|
not_null<DocumentData*> document) {
|
||||||
if (_updatingFrom) {
|
loadDocumentAndInvoke(_updatingFrom, document, [=] {
|
||||||
_updatingFrom->cancel();
|
auto preview = Window::Theme::PreviewFromFile(
|
||||||
} else {
|
document->data(),
|
||||||
|
document->location().name(),
|
||||||
|
cloud);
|
||||||
|
if (preview) {
|
||||||
|
Window::Theme::Apply(std::move(preview));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void CloudThemes::previewFromDocument(
|
||||||
|
const CloudTheme &cloud,
|
||||||
|
not_null<DocumentData*> document) {
|
||||||
|
loadDocumentAndInvoke(_previewFrom, document, [=] {
|
||||||
|
Core::App().showTheme(document, cloud);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void CloudThemes::loadDocumentAndInvoke(
|
||||||
|
LoadingDocument &value,
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
Fn<void()> callback) {
|
||||||
|
const auto alreadyWaiting = (value.document != nullptr);
|
||||||
|
if (alreadyWaiting) {
|
||||||
|
value.document->cancel();
|
||||||
|
}
|
||||||
|
value.document = document;
|
||||||
|
value.document->save(Data::FileOrigin(), QString()); // #TODO themes
|
||||||
|
value.callback = std::move(callback);
|
||||||
|
if (document->loaded()) {
|
||||||
|
invokeForLoaded(value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!alreadyWaiting) {
|
||||||
base::ObservableViewer(
|
base::ObservableViewer(
|
||||||
_session->downloaderTaskFinished()
|
_session->downloaderTaskFinished()
|
||||||
) | rpl::filter([=] {
|
) | rpl::filter([=] {
|
||||||
return _updatingFrom->loaded();
|
return document->loaded();
|
||||||
}) | rpl::start_with_next([=] {
|
}) | rpl::start_with_next([=, &value] {
|
||||||
_updatingFromLifetime.destroy();
|
invokeForLoaded(value);
|
||||||
auto preview = Window::Theme::PreviewFromFile(
|
}, value.subscription);
|
||||||
document->data(),
|
|
||||||
document->location().name(),
|
|
||||||
cloud);
|
|
||||||
if (preview) {
|
|
||||||
Window::Theme::Apply(std::move(preview));
|
|
||||||
}
|
|
||||||
}, _updatingFromLifetime);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
_updatingFrom = document;
|
void CloudThemes::invokeForLoaded(LoadingDocument &value) {
|
||||||
_updatingFrom->save(Data::FileOrigin(), QString()); // #TODO themes
|
const auto onstack = std::move(value.callback);
|
||||||
|
value = LoadingDocument();
|
||||||
|
onstack();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CloudThemes::scheduleReload() {
|
void CloudThemes::scheduleReload() {
|
||||||
|
|
|
@ -44,8 +44,16 @@ public:
|
||||||
void applyUpdate(const MTPTheme &theme);
|
void applyUpdate(const MTPTheme &theme);
|
||||||
|
|
||||||
void resolve(const QString &slug, const FullMsgId &clickFromMessageId);
|
void resolve(const QString &slug, const FullMsgId &clickFromMessageId);
|
||||||
|
void showPreview(const MTPTheme &data);
|
||||||
|
void showPreview(const CloudTheme &cloud);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
struct LoadingDocument {
|
||||||
|
DocumentData *document = nullptr;
|
||||||
|
rpl::lifetime subscription;
|
||||||
|
Fn<void()> callback;
|
||||||
|
};
|
||||||
|
|
||||||
void parseThemes(const QVector<MTPTheme> &list);
|
void parseThemes(const QVector<MTPTheme> &list);
|
||||||
|
|
||||||
void install();
|
void install();
|
||||||
|
@ -56,6 +64,14 @@ private:
|
||||||
void updateFromDocument(
|
void updateFromDocument(
|
||||||
const CloudTheme &cloud,
|
const CloudTheme &cloud,
|
||||||
not_null<DocumentData*> document);
|
not_null<DocumentData*> document);
|
||||||
|
void previewFromDocument(
|
||||||
|
const CloudTheme &cloud,
|
||||||
|
not_null<DocumentData*> document);
|
||||||
|
void loadDocumentAndInvoke(
|
||||||
|
LoadingDocument &value,
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
Fn<void()> callback);
|
||||||
|
void invokeForLoaded(LoadingDocument &value);
|
||||||
|
|
||||||
const not_null<Main::Session*> _session;
|
const not_null<Main::Session*> _session;
|
||||||
int32 _hash = 0;
|
int32 _hash = 0;
|
||||||
|
@ -65,8 +81,8 @@ private:
|
||||||
rpl::event_stream<> _updates;
|
rpl::event_stream<> _updates;
|
||||||
|
|
||||||
base::Timer _reloadCurrentTimer;
|
base::Timer _reloadCurrentTimer;
|
||||||
DocumentData *_updatingFrom = nullptr;
|
LoadingDocument _updatingFrom;
|
||||||
rpl::lifetime _updatingFromLifetime;
|
LoadingDocument _previewFrom;
|
||||||
uint64 _installedDayThemeId = 0;
|
uint64 _installedDayThemeId = 0;
|
||||||
uint64 _installedNightThemeId = 0;
|
uint64 _installedNightThemeId = 0;
|
||||||
|
|
||||||
|
|
|
@ -1744,6 +1744,19 @@ void OverlayWidget::showPhoto(not_null<PhotoData*> photo, not_null<PeerData*> co
|
||||||
}
|
}
|
||||||
|
|
||||||
void OverlayWidget::showDocument(not_null<DocumentData*> document, HistoryItem *context) {
|
void OverlayWidget::showDocument(not_null<DocumentData*> document, HistoryItem *context) {
|
||||||
|
showDocument(document, context, Data::CloudTheme());
|
||||||
|
}
|
||||||
|
|
||||||
|
void OverlayWidget::showTheme(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
const Data::CloudTheme &cloud) {
|
||||||
|
showDocument(document, nullptr, cloud);
|
||||||
|
}
|
||||||
|
|
||||||
|
void OverlayWidget::showDocument(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
HistoryItem *context,
|
||||||
|
const Data::CloudTheme &cloud) {
|
||||||
if (context) {
|
if (context) {
|
||||||
setContext(context);
|
setContext(context);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1754,7 +1767,7 @@ void OverlayWidget::showDocument(not_null<DocumentData*> document, HistoryItem *
|
||||||
_photo = nullptr;
|
_photo = nullptr;
|
||||||
|
|
||||||
_streamingStartPaused = false;
|
_streamingStartPaused = false;
|
||||||
displayDocument(document, context);
|
displayDocument(document, context, cloud);
|
||||||
preloadData(0);
|
preloadData(0);
|
||||||
activateControls();
|
activateControls();
|
||||||
}
|
}
|
||||||
|
@ -1813,7 +1826,10 @@ void OverlayWidget::redisplayContent() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Empty messages shown as docs: doc can be nullptr.
|
// Empty messages shown as docs: doc can be nullptr.
|
||||||
void OverlayWidget::displayDocument(DocumentData *doc, HistoryItem *item) {
|
void OverlayWidget::displayDocument(
|
||||||
|
DocumentData *doc,
|
||||||
|
HistoryItem *item,
|
||||||
|
const Data::CloudTheme &cloud) {
|
||||||
if (isHidden()) {
|
if (isHidden()) {
|
||||||
moveToScreen();
|
moveToScreen();
|
||||||
}
|
}
|
||||||
|
@ -1822,6 +1838,7 @@ void OverlayWidget::displayDocument(DocumentData *doc, HistoryItem *item) {
|
||||||
clearStreaming();
|
clearStreaming();
|
||||||
destroyThemePreview();
|
destroyThemePreview();
|
||||||
_doc = doc;
|
_doc = doc;
|
||||||
|
_themeCloudData = cloud;
|
||||||
_photo = nullptr;
|
_photo = nullptr;
|
||||||
_radial.stop();
|
_radial.stop();
|
||||||
|
|
||||||
|
@ -2223,7 +2240,7 @@ void OverlayWidget::initThemePreview() {
|
||||||
const auto cloud = (i != end(cloudList)) ? *i : Data::CloudTheme();
|
const auto cloud = (i != end(cloudList)) ? *i : Data::CloudTheme();
|
||||||
const auto isTrusted = (cloud.documentId != 0);
|
const auto isTrusted = (cloud.documentId != 0);
|
||||||
const auto fields = [&] {
|
const auto fields = [&] {
|
||||||
auto result = cloud;
|
auto result = _themeCloudData.id ? _themeCloudData : cloud;
|
||||||
if (!result.documentId) {
|
if (!result.documentId) {
|
||||||
result.documentId = _doc->id;
|
result.documentId = _doc->id;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "data/data_shared_media.h"
|
#include "data/data_shared_media.h"
|
||||||
#include "data/data_user_photos.h"
|
#include "data/data_user_photos.h"
|
||||||
#include "data/data_web_page.h"
|
#include "data/data_web_page.h"
|
||||||
|
#include "data/data_cloud_themes.h" // Data::CloudTheme.
|
||||||
#include "media/view/media_view_playback_controls.h"
|
#include "media/view/media_view_playback_controls.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
|
@ -70,7 +71,12 @@ public:
|
||||||
|
|
||||||
void showPhoto(not_null<PhotoData*> photo, HistoryItem *context);
|
void showPhoto(not_null<PhotoData*> photo, HistoryItem *context);
|
||||||
void showPhoto(not_null<PhotoData*> photo, not_null<PeerData*> context);
|
void showPhoto(not_null<PhotoData*> photo, not_null<PeerData*> context);
|
||||||
void showDocument(not_null<DocumentData*> document, HistoryItem *context);
|
void showDocument(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
HistoryItem *context);
|
||||||
|
void showTheme(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
const Data::CloudTheme &cloud);
|
||||||
|
|
||||||
void leaveToChildEvent(QEvent *e, QWidget *child) override { // e -- from enterEvent() of child TWidget
|
void leaveToChildEvent(QEvent *e, QWidget *child) override { // e -- from enterEvent() of child TWidget
|
||||||
updateOverState(OverNone);
|
updateOverState(OverNone);
|
||||||
|
@ -229,8 +235,15 @@ private:
|
||||||
void resizeCenteredControls();
|
void resizeCenteredControls();
|
||||||
void resizeContentByScreenSize();
|
void resizeContentByScreenSize();
|
||||||
|
|
||||||
|
void showDocument(
|
||||||
|
not_null<DocumentData*> document,
|
||||||
|
HistoryItem *context,
|
||||||
|
const Data::CloudTheme &cloud);
|
||||||
void displayPhoto(not_null<PhotoData*> photo, HistoryItem *item);
|
void displayPhoto(not_null<PhotoData*> photo, HistoryItem *item);
|
||||||
void displayDocument(DocumentData *document, HistoryItem *item);
|
void displayDocument(
|
||||||
|
DocumentData *document,
|
||||||
|
HistoryItem *item,
|
||||||
|
const Data::CloudTheme &cloud = Data::CloudTheme());
|
||||||
void displayFinished();
|
void displayFinished();
|
||||||
void redisplayContent();
|
void redisplayContent();
|
||||||
void findCurrent();
|
void findCurrent();
|
||||||
|
@ -455,6 +468,7 @@ private:
|
||||||
std::unique_ptr<Window::Theme::Preview> _themePreview;
|
std::unique_ptr<Window::Theme::Preview> _themePreview;
|
||||||
object_ptr<Ui::RoundButton> _themeApply = { nullptr };
|
object_ptr<Ui::RoundButton> _themeApply = { nullptr };
|
||||||
object_ptr<Ui::RoundButton> _themeCancel = { nullptr };
|
object_ptr<Ui::RoundButton> _themeCancel = { nullptr };
|
||||||
|
Data::CloudTheme _themeCloudData;
|
||||||
|
|
||||||
bool _wasRepainted = false;
|
bool _wasRepainted = false;
|
||||||
|
|
||||||
|
|
|
@ -481,19 +481,7 @@ void CloudList::insert(int index, const Data::CloudTheme &theme) {
|
||||||
|| i->waiting) {
|
|| i->waiting) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const auto documentId = i->theme.documentId;
|
_window->session().data().cloudThemes().showPreview(i->theme);
|
||||||
if (!documentId) {
|
|
||||||
if (amCreator(i->theme)) {
|
|
||||||
_window->window().show(
|
|
||||||
Box(CreateForExistingBox, &_window->window(), i->theme));
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const auto document = _window->session().data().document(documentId);
|
|
||||||
DocumentOpenClickHandler::Open(
|
|
||||||
Data::FileOrigin(),
|
|
||||||
document,
|
|
||||||
nullptr);
|
|
||||||
});
|
});
|
||||||
auto &element = *_elements.insert(
|
auto &element = *_elements.insert(
|
||||||
begin(_elements) + index,
|
begin(_elements) + index,
|
||||||
|
|
Loading…
Reference in New Issue