130 lines
4.0 KiB
C++
130 lines
4.0 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
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.
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|
*/
|
|
#include "stdafx.h"
|
|
|
|
#include "application.h"
|
|
#include "mainwindow.h"
|
|
|
|
namespace Fonts {
|
|
|
|
bool Started = false;
|
|
void start() {
|
|
if (!Started) {
|
|
Started = true;
|
|
|
|
QFontDatabase::addApplicationFont(qsl(":/gui/art/fonts/OpenSans-Regular.ttf"));
|
|
QFontDatabase::addApplicationFont(qsl(":/gui/art/fonts/OpenSans-Bold.ttf"));
|
|
QFontDatabase::addApplicationFont(qsl(":/gui/art/fonts/OpenSans-Semibold.ttf"));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
namespace {
|
|
void _sendResizeEvents(QWidget *target) {
|
|
QResizeEvent e(target->size(), QSize());
|
|
QApplication::sendEvent(target, &e);
|
|
|
|
const QObjectList children = target->children();
|
|
for (int i = 0; i < children.size(); ++i) {
|
|
QWidget *child = static_cast<QWidget*>(children.at(i));
|
|
if (child->isWidgetType() && !child->isWindow() && child->testAttribute(Qt::WA_PendingResizeEvent)) {
|
|
_sendResizeEvents(child);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool TWidget::inFocusChain() const {
|
|
return !isHidden() && App::wnd() && (App::wnd()->focusWidget() == this || isAncestorOf(App::wnd()->focusWidget()));
|
|
}
|
|
|
|
void myEnsureResized(QWidget *target) {
|
|
if (target && (target->testAttribute(Qt::WA_PendingResizeEvent) || !target->testAttribute(Qt::WA_WState_Created))) {
|
|
_sendResizeEvents(target);
|
|
}
|
|
}
|
|
|
|
QPixmap myGrab(TWidget *target, QRect rect) {
|
|
myEnsureResized(target);
|
|
if (rect.isNull()) rect = target->rect();
|
|
|
|
QPixmap result(rect.size() * cRetinaFactor());
|
|
result.setDevicePixelRatio(cRetinaFactor());
|
|
result.fill(Qt::transparent);
|
|
|
|
target->grabStart();
|
|
target->render(&result, QPoint(), QRegion(rect), QWidget::DrawChildren | QWidget::IgnoreMask);
|
|
target->grabFinish();
|
|
|
|
return result;
|
|
}
|
|
|
|
enum class Mode {
|
|
Shown,
|
|
ShownFast,
|
|
Hidden,
|
|
HiddenFast
|
|
};
|
|
void ToggleableShadow::setMode(Mode mode) {
|
|
if (mode == Mode::ShownFast || mode == Mode::HiddenFast) {
|
|
if (!_a_opacity.isNull()) {
|
|
_a_opacity.finish();
|
|
update();
|
|
}
|
|
}
|
|
if (_shown && (mode == Mode::Hidden || mode == Mode::HiddenFast)) {
|
|
_shown = false;
|
|
if (mode == Mode::Hidden) {
|
|
if (_a_opacity.isNull()) {
|
|
_a_opacity.setup(1., func(this, &ToggleableShadow::repaintCallback));
|
|
}
|
|
_a_opacity.start(0., st::shadowToggleDuration);
|
|
}
|
|
} else if (!_shown && (mode == Mode::Shown || mode == Mode::ShownFast)) {
|
|
_shown = true;
|
|
if (mode == Mode::Shown) {
|
|
if (_a_opacity.isNull()) {
|
|
_a_opacity.setup(0., func(this, &ToggleableShadow::repaintCallback));
|
|
}
|
|
_a_opacity.start(1., st::shadowToggleDuration);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ToggleableShadow::paintEvent(QPaintEvent *e) {
|
|
Painter p(this);
|
|
if (_a_opacity.animating(getms())) {
|
|
p.setOpacity(_a_opacity.current());
|
|
} else if (!_shown) {
|
|
return;
|
|
}
|
|
p.fillRect(e->rect(), _color);
|
|
}
|
|
|
|
void sendSynteticMouseEvent(QWidget *widget, QEvent::Type type, Qt::MouseButton button, const QPoint &globalPoint) {
|
|
auto windowHandle = widget->window()->windowHandle();
|
|
auto localPoint = windowHandle->mapFromGlobal(globalPoint);
|
|
QMouseEvent ev(type, localPoint, localPoint, globalPoint, button, QGuiApplication::mouseButtons() | button, QGuiApplication::keyboardModifiers(), Qt::MouseEventSynthesizedByApplication);
|
|
ev.setTimestamp(getms());
|
|
QGuiApplication::sendEvent(windowHandle, &ev);
|
|
}
|