mirror of https://github.com/procxx/kepka.git
Fix GIF pause by layer.
Let MainWindow enable / disable GIF pausing when a layer is shown.
This commit is contained in:
parent
0d0307e175
commit
6b242a982b
|
@ -537,7 +537,6 @@ void LayerStackWidget::showBox(object_ptr<BoxContent> box) {
|
||||||
void LayerStackWidget::prepareForAnimation() {
|
void LayerStackWidget::prepareForAnimation() {
|
||||||
if (isHidden()) {
|
if (isHidden()) {
|
||||||
show();
|
show();
|
||||||
App::wnd()->enableGifPauseReason(Window::GifPauseReason::Layer);
|
|
||||||
}
|
}
|
||||||
if (_mainMenu) {
|
if (_mainMenu) {
|
||||||
_mainMenu->hide();
|
_mainMenu->hide();
|
||||||
|
|
|
@ -376,9 +376,7 @@ void MainWindow::showSettings() {
|
||||||
void MainWindow::showSpecialLayer(object_ptr<LayerWidget> layer) {
|
void MainWindow::showSpecialLayer(object_ptr<LayerWidget> layer) {
|
||||||
if (_passcode) return;
|
if (_passcode) return;
|
||||||
|
|
||||||
if (!_layerBg) {
|
ensureLayerCreated();
|
||||||
_layerBg.create(bodyWidget());
|
|
||||||
}
|
|
||||||
_layerBg->showSpecialLayer(std::move(layer));
|
_layerBg->showSpecialLayer(std::move(layer));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -387,17 +385,29 @@ void MainWindow::showMainMenu() {
|
||||||
|
|
||||||
if (isHidden()) showFromTray();
|
if (isHidden()) showFromTray();
|
||||||
|
|
||||||
|
ensureLayerCreated();
|
||||||
|
_layerBg->showMainMenu();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::ensureLayerCreated() {
|
||||||
if (!_layerBg) {
|
if (!_layerBg) {
|
||||||
_layerBg.create(bodyWidget());
|
_layerBg.create(bodyWidget());
|
||||||
|
enableGifPauseReason(Window::GifPauseReason::Layer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::destroyLayerDelayed() {
|
||||||
|
if (_layerBg) {
|
||||||
|
_layerBg.destroyDelayed();
|
||||||
|
disableGifPauseReason(Window::GifPauseReason::Layer);
|
||||||
}
|
}
|
||||||
_layerBg->showMainMenu();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::ui_hideSettingsAndLayer(ShowLayerOptions options) {
|
void MainWindow::ui_hideSettingsAndLayer(ShowLayerOptions options) {
|
||||||
if (_layerBg) {
|
if (_layerBg) {
|
||||||
_layerBg->hideAll();
|
_layerBg->hideAll();
|
||||||
if (options.testFlag(ForceFastShowLayer)) {
|
if (options.testFlag(ForceFastShowLayer)) {
|
||||||
_layerBg.destroyDelayed();
|
destroyLayerDelayed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -433,9 +443,7 @@ PasscodeWidget *MainWindow::passcodeWidget() {
|
||||||
|
|
||||||
void MainWindow::ui_showBox(object_ptr<BoxContent> box, ShowLayerOptions options) {
|
void MainWindow::ui_showBox(object_ptr<BoxContent> box, ShowLayerOptions options) {
|
||||||
if (box) {
|
if (box) {
|
||||||
if (!_layerBg) {
|
ensureLayerCreated();
|
||||||
_layerBg.create(bodyWidget());
|
|
||||||
}
|
|
||||||
if (options.testFlag(KeepOtherLayers)) {
|
if (options.testFlag(KeepOtherLayers)) {
|
||||||
if (options.testFlag(ShowAfterOtherLayers)) {
|
if (options.testFlag(ShowAfterOtherLayers)) {
|
||||||
_layerBg->prependBox(std::move(box));
|
_layerBg->prependBox(std::move(box));
|
||||||
|
@ -452,7 +460,7 @@ void MainWindow::ui_showBox(object_ptr<BoxContent> box, ShowLayerOptions options
|
||||||
if (_layerBg) {
|
if (_layerBg) {
|
||||||
_layerBg->hideTopLayer();
|
_layerBg->hideTopLayer();
|
||||||
if (options.testFlag(ForceFastShowLayer) && !_layerBg->layerShown()) {
|
if (options.testFlag(ForceFastShowLayer) && !_layerBg->layerShown()) {
|
||||||
_layerBg.destroyDelayed();
|
destroyLayerDelayed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
hideMediaview();
|
hideMediaview();
|
||||||
|
@ -566,7 +574,7 @@ void MainWindow::checkHistoryActivation() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::layerHidden() {
|
void MainWindow::layerHidden() {
|
||||||
_layerBg.destroyDelayed();
|
destroyLayerDelayed();
|
||||||
hideMediaview();
|
hideMediaview();
|
||||||
setInnerFocus();
|
setInnerFocus();
|
||||||
checkHistoryActivation();
|
checkHistoryActivation();
|
||||||
|
@ -762,6 +770,7 @@ void MainWindow::noMain(MainWidget *was) {
|
||||||
void MainWindow::noLayerStack(LayerStackWidget *was) {
|
void MainWindow::noLayerStack(LayerStackWidget *was) {
|
||||||
if (was == _layerBg) {
|
if (was == _layerBg) {
|
||||||
_layerBg = nullptr;
|
_layerBg = nullptr;
|
||||||
|
disableGifPauseReason(Window::GifPauseReason::Layer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -198,6 +198,9 @@ private:
|
||||||
void showConnecting(const QString &text, const QString &reconnect = QString());
|
void showConnecting(const QString &text, const QString &reconnect = QString());
|
||||||
void hideConnecting();
|
void hideConnecting();
|
||||||
|
|
||||||
|
void ensureLayerCreated();
|
||||||
|
void destroyLayerDelayed();
|
||||||
|
|
||||||
void themeUpdated(const Window::Theme::BackgroundUpdate &data);
|
void themeUpdated(const Window::Theme::BackgroundUpdate &data);
|
||||||
|
|
||||||
QPixmap grabInner();
|
QPixmap grabInner();
|
||||||
|
|
Loading…
Reference in New Issue