tdesktop/Telegram/SourceFiles/ui/twidget.cpp

118 lines
3.6 KiB
C++
Raw Normal View History

/*
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.
2015-10-03 13:16:42 +00:00
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-2017 John Preston, https://desktop.telegram.org
*/
#include "stdafx.h"
2014-06-14 19:32:11 +00:00
#include "application.h"
#include "mainwindow.h"
2014-06-14 19:32:11 +00:00
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"));
}
}
}
2014-06-14 19:32:11 +00:00
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, QColor bg) {
myEnsureResized(target);
2015-10-17 14:52:26 +00:00
if (rect.isNull()) rect = target->rect();
auto result = QPixmap(rect.size() * cIntRetinaFactor());
result.setDevicePixelRatio(cRetinaFactor());
if (!target->testAttribute(Qt::WA_OpaquePaintEvent)) {
result.fill(bg);
}
2015-10-17 14:52:26 +00:00
target->grabStart();
target->render(&result, QPoint(0, 0), rect, QWidget::DrawChildren | QWidget::IgnoreMask);
2015-10-17 14:52:26 +00:00
target->grabFinish();
return std::move(result);
2016-11-24 19:28:23 +00:00
}
QImage myGrabImage(TWidget *target, QRect rect, QColor bg) {
2016-11-24 19:28:23 +00:00
myEnsureResized(target);
if (rect.isNull()) rect = target->rect();
auto result = QImage(rect.size() * cIntRetinaFactor(), QImage::Format_ARGB32_Premultiplied);
2016-11-24 19:28:23 +00:00
result.setDevicePixelRatio(cRetinaFactor());
if (!target->testAttribute(Qt::WA_OpaquePaintEvent)) {
result.fill(bg);
2016-11-24 19:28:23 +00:00
}
target->grabStart();
target->render(&result, QPoint(0, 0), rect, QWidget::DrawChildren | QWidget::IgnoreMask);
target->grabFinish();
return std::move(result);
2014-06-14 19:32:11 +00:00
}
void sendSynteticMouseEvent(QWidget *widget, QEvent::Type type, Qt::MouseButton button, const QPoint &globalPoint) {
if (auto windowHandle = widget->window()->windowHandle()) {
auto localPoint = windowHandle->mapFromGlobal(globalPoint);
2016-08-31 20:06:12 +00:00
QMouseEvent ev(type
, localPoint
, localPoint
, globalPoint
, button
, QGuiApplication::mouseButtons() | button
, QGuiApplication::keyboardModifiers()
#ifndef OS_MAC_OLD
2016-08-31 20:06:12 +00:00
, Qt::MouseEventSynthesizedByApplication
#endif // OS_MAC_OLD
2016-08-31 20:06:12 +00:00
);
ev.setTimestamp(getms());
QGuiApplication::sendEvent(windowHandle, &ev);
}
}