2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "lang.h"
|
|
|
|
|
|
|
|
#include "layerwidget.h"
|
|
|
|
#include "application.h"
|
|
|
|
#include "window.h"
|
|
|
|
#include "mainwidget.h"
|
|
|
|
#include "gui/filedialog.h"
|
|
|
|
|
|
|
|
BackgroundWidget::BackgroundWidget(QWidget *parent, LayeredWidget *w) : QWidget(parent), w(w), _hidden(0),
|
|
|
|
aBackground(0), aBackgroundFunc(anim::easeOutCirc), hiding(false), shadow(st::boxShadow) {
|
|
|
|
w->setParent(this);
|
|
|
|
setGeometry(0, 0, App::wnd()->width(), App::wnd()->height());
|
|
|
|
aBackground.start(1);
|
|
|
|
anim::start(this);
|
|
|
|
show();
|
|
|
|
connect(w, SIGNAL(closed()), this, SLOT(onInnerClose()));
|
|
|
|
connect(w, SIGNAL(resized()), this, SLOT(update()));
|
2014-12-12 16:27:03 +00:00
|
|
|
connect(w, SIGNAL(destroyed(QObject*)), this, SLOT(boxDestroyed(QObject*)));
|
2014-05-30 08:53:19 +00:00
|
|
|
w->setFocus();
|
|
|
|
}
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
void BackgroundWidget::showFast() {
|
|
|
|
animStep(st::layerSlideDuration + 1);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void BackgroundWidget::paintEvent(QPaintEvent *e) {
|
2014-12-12 16:27:03 +00:00
|
|
|
if (!w) return;
|
2014-05-30 08:53:19 +00:00
|
|
|
bool trivial = (rect() == e->rect());
|
|
|
|
|
|
|
|
QPainter p(this);
|
|
|
|
if (!trivial) {
|
|
|
|
p.setClipRect(e->rect());
|
|
|
|
}
|
|
|
|
p.setOpacity(st::layerAlpha * aBackground.current());
|
|
|
|
p.fillRect(rect(), st::layerBG->b);
|
|
|
|
|
|
|
|
p.setOpacity(aBackground.current());
|
|
|
|
shadow.paint(p, w->boxRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundWidget::keyPressEvent(QKeyEvent *e) {
|
|
|
|
if (e->key() == Qt::Key_Escape) {
|
|
|
|
startHide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundWidget::mousePressEvent(QMouseEvent *e) {
|
2014-10-10 12:46:20 +00:00
|
|
|
onClose();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundWidget::onClose() {
|
|
|
|
startHide();
|
|
|
|
}
|
|
|
|
|
2014-11-25 12:15:29 +00:00
|
|
|
bool BackgroundWidget::onInnerClose() {
|
|
|
|
if (!_hidden) {
|
2014-05-30 08:53:19 +00:00
|
|
|
onClose();
|
2014-11-25 12:15:29 +00:00
|
|
|
return true;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-11-25 12:15:29 +00:00
|
|
|
w->deleteLater();
|
|
|
|
w = _hidden;
|
|
|
|
_hidden = 0;
|
|
|
|
w->show();
|
|
|
|
resizeEvent(0);
|
|
|
|
w->animStep(1);
|
|
|
|
update();
|
|
|
|
return false;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundWidget::startHide() {
|
|
|
|
if (App::main()) App::main()->setInnerFocus();
|
|
|
|
hiding = true;
|
|
|
|
aBackground.start(0);
|
|
|
|
anim::start(this);
|
|
|
|
w->startHide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundWidget::resizeEvent(QResizeEvent *e) {
|
|
|
|
w->parentResized();
|
|
|
|
}
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
void BackgroundWidget::updateWideMode() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void BackgroundWidget::replaceInner(LayeredWidget *n) {
|
|
|
|
if (_hidden) _hidden->deleteLater();
|
|
|
|
_hidden = w;
|
|
|
|
_hidden->hide();
|
|
|
|
w = n;
|
|
|
|
w->setParent(this);
|
|
|
|
connect(w, SIGNAL(closed()), this, SLOT(onInnerClose()));
|
|
|
|
connect(w, SIGNAL(resized()), this, SLOT(update()));
|
2014-12-12 16:27:03 +00:00
|
|
|
connect(w, SIGNAL(destroyed(QObject*)), this, SLOT(boxDestroyed(QObject*)));
|
2014-05-30 08:53:19 +00:00
|
|
|
w->show();
|
|
|
|
resizeEvent(0);
|
|
|
|
w->animStep(1);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BackgroundWidget::animStep(float64 ms) {
|
|
|
|
float64 dt = ms / (hiding ? st::layerHideDuration : st::layerSlideDuration);
|
|
|
|
w->animStep(dt);
|
|
|
|
bool res = true;
|
|
|
|
if (dt >= 1) {
|
|
|
|
aBackground.finish();
|
|
|
|
if (hiding) {
|
2014-12-12 16:27:03 +00:00
|
|
|
App::wnd()->layerFinishedHide(this);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-12-12 16:27:03 +00:00
|
|
|
anim::stop(this);
|
2014-05-30 08:53:19 +00:00
|
|
|
res = false;
|
|
|
|
} else {
|
|
|
|
aBackground.update(dt, aBackgroundFunc);
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
void BackgroundWidget::boxDestroyed(QObject *obj) {
|
|
|
|
if (obj == w) {
|
|
|
|
if (App::wnd()) App::wnd()->layerFinishedHide(this);
|
|
|
|
w = 0;
|
|
|
|
} else if (_hidden == obj) {
|
|
|
|
_hidden = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
BackgroundWidget::~BackgroundWidget() {
|
|
|
|
if (App::wnd()) App::wnd()->noBox(this);
|
|
|
|
w->deleteLater();
|
|
|
|
if (_hidden) _hidden->deleteLater();
|
|
|
|
}
|