]> sigrok.org Git - pulseview.git/blob - pv/dialogs/about.cpp
f8394f2ae6f3784bdd72ef84089ac26e3dcd3711
[pulseview.git] / pv / dialogs / about.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifdef ENABLE_DECODE
22 #include <libsigrokdecode/libsigrokdecode.h>
23 #endif
24
25 #include <QTextDocument>
26
27 #include "about.h"
28 #include <ui_about.h>
29
30 /* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
31 #define __STDC_FORMAT_MACROS
32 #include <glib.h>
33 #include <libsigrok/libsigrok.h>
34
35
36 namespace pv {
37 namespace dialogs {
38
39 About::About(QWidget *parent) :
40         QDialog(parent),
41         ui(new Ui::About)
42 {
43         struct sr_dev_driver **drivers;
44
45 #ifdef ENABLE_DECODE
46         struct srd_decoder *dec;
47 #endif
48
49         QString s;
50
51         ui->setupUi(this);
52
53         /* Setup the version field */
54         ui->versionInfo->setText(tr("%1 %2<br />%3<br /><a href=\"%4\">%4</a>")
55                                  .arg(QApplication::applicationName())
56                                  .arg(QApplication::applicationVersion())
57                                  .arg(tr("GNU GPL, version 3 or later"))
58                                  .arg(QApplication::organizationDomain()));
59         ui->versionInfo->setOpenExternalLinks(true);
60
61         s.append("<table>");
62
63         /* Set up the supported field */
64         s.append("<tr><td colspan=\"2\"><b>" +
65                 tr("Supported hardware drivers:") +
66                 "</b></td></tr>");
67         drivers = sr_driver_list();
68         for (int i = 0; drivers[i]; ++i) {
69                 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
70                          .arg(QString::fromUtf8(drivers[i]->name))
71                          .arg(QString::fromUtf8(drivers[i]->longname)));
72         }
73
74 #ifdef ENABLE_DECODE
75         s.append("<tr><td colspan=\"2\"><b>" +
76                 tr("Supported protocol decoders:") +
77                 "</b></td></tr>");
78         for (const GSList *l = srd_decoder_list(); l; l = l->next) {
79                 dec = (struct srd_decoder *)l->data;
80                 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
81                          .arg(QString::fromUtf8(dec->id))
82                          .arg(QString::fromUtf8(dec->longname)));
83         }
84 #endif
85
86         s.append("</table>");
87
88         supportedDoc.reset(new QTextDocument(this));
89         supportedDoc->setHtml(s);
90         ui->supportList->setDocument(supportedDoc.get());
91 }
92
93 About::~About()
94 {
95         delete ui;
96 }
97
98 } // namespace dialogs
99 } // namespace pv