76 lines
2.8 KiB
C++
76 lines
2.8 KiB
C++
/*
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
* running old operating systems and software designed for IBM
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
* system designs based on the PCI bus.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* About dialog module.
|
|
*
|
|
*
|
|
*
|
|
* Authors: Joakim L. Gilje <jgilje@jgilje.net>
|
|
* Cacodemon345
|
|
* Teemu Korhonen
|
|
* dob205
|
|
*
|
|
* Copyright 2021 Joakim L. Gilje
|
|
* Copyright 2021-2022 Cacodemon345
|
|
* Copyright 2021-2022 Teemu Korhonen
|
|
* Copyright 2022 dob205
|
|
*/
|
|
#include "qt_about.hpp"
|
|
|
|
extern "C" {
|
|
#include <86box/86box.h>
|
|
#include <86box/version.h>
|
|
}
|
|
|
|
#include <QMessageBox>
|
|
#include <QIcon>
|
|
#include <QPushButton>
|
|
#include <QUrl>
|
|
#include <QDesktopServices>
|
|
|
|
About::About(QWidget *parent)
|
|
{
|
|
setTextFormat(Qt::RichText);
|
|
QString versioninfo;
|
|
#ifdef EMU_GIT_HASH
|
|
versioninfo = QString(" [%1]").arg(EMU_GIT_HASH);
|
|
#endif
|
|
#ifdef USE_DYNAREC
|
|
# ifdef USE_NEW_DYNAREC
|
|
# define DYNAREC_STR "new dynarec"
|
|
# else
|
|
# define DYNAREC_STR "old dynarec"
|
|
# endif
|
|
#else
|
|
# define DYNAREC_STR "no dynarec"
|
|
#endif
|
|
versioninfo.append(QString(" [%1, %2]").arg(QSysInfo::buildCpuArchitecture(), tr(DYNAREC_STR)));
|
|
setText(QString("<b>%3%1%2</b>").arg(EMU_VERSION_FULL, versioninfo, tr("86Box v")));
|
|
setInformativeText(tr("An emulator of old computers\n\nAuthors: Miran Grča (OBattler), RichardG867, Jasmine Iwanek, TC1995, coldbrewed, Teemu Korhonen (Manaatti), Joakim L. Gilje, Adrien Moulin (elyosh), Daniel Balsom (gloriouscow), Cacodemon345, Fred N. van Kempen (waltje), Tiseno100, reenigne, and others.\n\nWith previous core contributions from Sarah Walker, leilei, JohnElliott, greatpsycho, and others.\n\nReleased under the GNU General Public License version 2 or later. See LICENSE for more information."));
|
|
setWindowTitle(tr("About 86Box"));
|
|
const auto closeButton = addButton("OK", QMessageBox::ButtonRole::AcceptRole);
|
|
setEscapeButton(closeButton);
|
|
const auto webSiteButton = addButton(EMU_SITE, QMessageBox::ButtonRole::HelpRole);
|
|
webSiteButton->connect(webSiteButton, &QPushButton::released, []() {
|
|
QDesktopServices::openUrl(QUrl("https://" EMU_SITE));
|
|
});
|
|
#ifdef RELEASE_BUILD
|
|
setIconPixmap(QIcon(":/settings/qt/icons/86Box-green.ico").pixmap(32, 32));
|
|
#elif defined ALPHA_BUILD
|
|
setIconPixmap(QIcon(":/settings/qt/icons/86Box-red.ico").pixmap(32, 32));
|
|
#elif defined BETA_BUILD
|
|
setIconPixmap(QIcon(":/settings/qt/icons/86Box-yellow.ico").pixmap(32, 32));
|
|
#else
|
|
setIconPixmap(QIcon(":/settings/qt/icons/86Box-gray.ico").pixmap(32, 32));
|
|
#endif
|
|
setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint);
|
|
}
|
|
|
|
About::~About()
|
|
= default;
|