]> sigrok.org Git - pulseview.git/blame - pv/dialogs/about.cpp
Added Tango configure icon
[pulseview.git] / pv / dialogs / about.cpp
CommitLineData
40eb2ff4 1/*
b3f22de0 2 * This file is part of the PulseView project.
40eb2ff4
JH
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
21extern "C" {
22#include <sigrokdecode.h>
23}
24
25#include <QTextDocument>
26
27#include "about.h"
51e77110 28#include <ui_about.h>
40eb2ff4
JH
29
30extern "C" {
31/* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
32#define __STDC_FORMAT_MACROS
33#include <glib.h>
34#include <libsigrok/libsigrok.h>
35}
36
51e77110 37namespace pv {
acda14b8 38namespace dialogs {
51e77110 39
40eb2ff4
JH
40About::About(QWidget *parent) :
41 QDialog(parent),
42 ui(new Ui::About)
43{
44 GSList *l;
45 struct sr_dev_driver **drivers;
46 struct sr_input_format **inputs;
47 struct sr_output_format **outputs;
48 struct srd_decoder *dec;
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 2 or later"))
58 .arg(QApplication::organizationDomain()));
59
be20a3b8
JH
60 s.append("<table>");
61
40eb2ff4 62 /* Set up the supported field */
be20a3b8
JH
63 s.append("<tr><td colspan=\"2\"><b>" +
64 tr("Supported hardware drivers:") +
65 "</b></td></tr>");
40eb2ff4
JH
66 drivers = sr_driver_list();
67 for (int i = 0; drivers[i]; ++i) {
68 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
69 .arg(QString(drivers[i]->name))
70 .arg(QString(drivers[i]->longname)));
71 }
40eb2ff4 72
be20a3b8
JH
73 s.append("<tr><td colspan=\"2\"><b>" +
74 tr("Supported input formats:") +
75 "</b></td></tr>");
40eb2ff4
JH
76 inputs = sr_input_list();
77 for (int i = 0; inputs[i]; ++i) {
78 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
79 .arg(QString(inputs[i]->id))
80 .arg(QString(inputs[i]->description)));
81 }
40eb2ff4 82
be20a3b8
JH
83 s.append("<tr><td colspan=\"2\"><b>" +
84 tr("Supported output formats:") +
85 "</b></td></tr>");
40eb2ff4
JH
86 outputs = sr_output_list();
87 for (int i = 0; outputs[i]; ++i) {
88 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
89 .arg(QString(outputs[i]->id))
90 .arg(QString(outputs[i]->description)));
91 }
40eb2ff4 92
be20a3b8
JH
93 s.append("<tr><td colspan=\"2\"><b>" +
94 tr("Supported protocol decoders:") +
95 "</b></td></tr>");
40eb2ff4
JH
96 for (l = srd_decoder_list(); l; l = l->next) {
97 dec = (struct srd_decoder *)l->data;
98 s.append(QString("<tr><td><i>%1</i></td><td>%2</td></tr>")
99 .arg(QString(dec->id))
100 .arg(QString(dec->longname)));
101 }
be20a3b8 102
40eb2ff4
JH
103 s.append("</table>");
104
105 supportedDoc.reset(new QTextDocument(this));
106 supportedDoc->setHtml(s);
107 ui->supportList->setDocument(supportedDoc.get());
108}
109
110About::~About()
111{
112 delete ui;
113}
51e77110 114
acda14b8 115} // namespace dialogs
51e77110 116} // namespace pv