-
Notifications
You must be signed in to change notification settings - Fork 4
/
aboutdialog.cpp
57 lines (49 loc) · 2.2 KB
/
aboutdialog.cpp
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
/****************************************************************************
**
** Copyright (C) 2019 Robert Vetter.
**
** This file is part of the MagicstompFrenzy - an editor for Yamaha Magicstomp
** effect processor
**
** THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
** ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
** IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
** PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
**
** GNU General Public License Usage
** This file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version . The licenses are
** as published by the Free Software Foundation and appearing in the file LICENSE
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**/
#include "aboutdialog.h"
#include <QGridLayout>
#include <QPushButton>
#include <QApplication>
#include <QLabel>
#include <QDesktopServices>
#include <QUrl>
AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent)
{
setWindowTitle("About MagicstompFrenzy");
QGridLayout *mainlyt = new QGridLayout();
QLabel *appLabel = new QLabel( qApp->applicationName() + " (C) 2018-2023 Robert Vetter. Version: " + qApp->applicationVersion());
mainlyt->addWidget(appLabel, 0,0, 1, 2);
mainlyt->addWidget(new QLabel(tr("Online Manual: ")), 1,0);
QLabel *helpLabel = new QLabel();
helpLabel->setText("<a href=\"https://github.com/dulnikovsky/magicstompfrenzy/blob/master/README.md\">Magicstompfrenzy Manual on GitHub</a>");
helpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
connect(helpLabel, &QLabel::linkActivated, []() {
QDesktopServices::openUrl(QUrl("https://github.com/dulnikovsky/magicstompfrenzy/blob/master/README.md"));
}
);
mainlyt->addWidget(helpLabel,1,1);
QPushButton *closeButton = new QPushButton(tr("Close"));
connect( closeButton, SIGNAL(clicked()), this, SLOT(accept()));
mainlyt->addWidget(closeButton, 2,1);
setLayout(mainlyt);
}