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
|
/*
aboutdialog.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 "aboutdialog.h"
#include "aboutwidget.h"
#include <QVBoxLayout>
#include <QLabel>
#include <QDialogButtonBox>
using namespace GammaRay;
AboutDialog::AboutDialog(QWidget *parent)
: QDialog(parent)
, ui(new AboutWidget)
{
auto button = new QDialogButtonBox(this);
button->setStandardButtons(QDialogButtonBox::Close);
QVBoxLayout *vl = new QVBoxLayout(this);
vl->addWidget(ui);
vl->addWidget(button);
connect(button, &QDialogButtonBox::rejected, this, &QWidget::close);
}
AboutDialog::~AboutDialog() = default;
void AboutDialog::setLogo(const QString &iconFileName)
{
ui->setLogo(iconFileName);
}
void AboutDialog::setThemeLogo(const QString &fileName)
{
ui->setThemeLogo(fileName);
}
void AboutDialog::setTitle(const QString &title)
{
ui->setTitle(title);
}
void AboutDialog::setHeader(const QString &header)
{
ui->setHeader(header);
}
void AboutDialog::setAuthors(const QString &authors)
{
ui->setAuthors(authors);
}
void AboutDialog::setFooter(const QString &footer)
{
ui->setFooter(footer);
}
void AboutDialog::setText(const QString &text)
{
ui->setText(text);
}
QSize AboutDialog::sizeHint() const
{
return { 960, 730 };
}
|