1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/*
aboutwidget.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2013 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "aboutwidget.h"
#include "ui_aboutwidget.h"
#include <ui/uiresources.h>
#include <QPainter>
#include <QScrollBar>
using namespace GammaRay;
AboutWidget::AboutWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::AboutWidget)
{
ui->setupUi(this);
// Try to reduce the scrollbar width to hide it a bit...
auto vsb = ui->textAuthors->verticalScrollBar();
#if defined(Q_OS_MAC)
vsb->setAttribute(Qt::WA_MacSmallSize);
#else
vsb->setFixedWidth(10);
#endif
}
AboutWidget::~AboutWidget() = default;
void AboutWidget::setLogo(const QString &iconFileName)
{
ui->logoLabel->setPixmap(iconFileName);
}
void AboutWidget::setThemeLogo(const QString &fileName)
{
ui->logoLabel->setThemeFileName(fileName);
}
void AboutWidget::setTitle(const QString &title)
{
ui->titleLabel->setText(title);
}
void AboutWidget::setHeader(const QString &header)
{
ui->textHeader->setText(header);
}
void AboutWidget::setAuthors(const QString &authors)
{
ui->textAuthors->setHtml(authors);
}
void AboutWidget::setFooter(const QString &footer)
{
ui->textFooter->setText(footer);
}
void AboutWidget::setText(const QString &text)
{
setHeader(text);
ui->textAuthors->setVisible(false);
ui->textFooter->setVisible(false);
}
void AboutWidget::setBackgroundWindow(QWidget *window)
{
if (m_backgroundWindow == window)
return;
if (m_backgroundWindow) {
m_backgroundWindow->removeEventFilter(this);
m_backgroundWindow->update();
}
m_backgroundWindow = window;
m_watermark = QPixmap();
if (m_backgroundWindow) {
m_backgroundWindow->installEventFilter(this);
m_backgroundWindow->update();
}
}
void AboutWidget::showEvent(QShowEvent *event)
{
QWidget::showEvent(event);
setBackgroundWindow(window());
}
bool AboutWidget::eventFilter(QObject *object, QEvent *event)
{
if (object == m_backgroundWindow) {
if (event->type() == QEvent::ScreenChangeInternal)
m_watermark = QPixmap();
else if (event->type() == QEvent::Paint) {
if (m_watermark.isNull())
m_watermark = UIResources::themedPixmap(QStringLiteral("watermark.png"), this);
qreal dpr = 1.0;
dpr = m_watermark.devicePixelRatio();
QPainter p(m_backgroundWindow);
p.drawPixmap(m_backgroundWindow->width() - (m_watermark.width() / dpr),
m_backgroundWindow->height() - (m_watermark.height() / dpr), m_watermark);
}
}
return QWidget::eventFilter(object, event);
}
|