]> sigrok.org Git - pulseview.git/blame - main.cpp
Added hover point to pv::view::View
[pulseview.git] / main.cpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
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
664fca5c
JH
21extern "C" {
22#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
23#include <stdint.h>
24#include <libsigrok/libsigrok.h>
25}
26
f7951df4
JH
27#include <getopt.h>
28
d7bed479 29#include <QtGui/QApplication>
664fca5c 30#include <QDebug>
075fb499 31
51e77110 32#include "pv/mainwindow.h"
d7bed479 33
075fb499
AG
34#include "config.h"
35
d4384c6d
JH
36void usage()
37{
38 fprintf(stderr,
39 "Usage:\n"
40 " %s — %s\n"
41 "\n"
42 "Help Options:\n"
43 " -V, --version Show release version\n"
44 " -h, -?, --help Show help option\n"
45 "\n", PV_BIN_NAME, PV_DESCRIPTION);
46}
47
d7bed479
JH
48int main(int argc, char *argv[])
49{
50 QApplication a(argc, argv);
d7bed479 51
6a6772b7 52 // Set some application metadata
075fb499 53 QApplication::setApplicationVersion(PV_VERSION_STRING);
3623c8d3 54 QApplication::setApplicationName("PulseView");
640e5565
JH
55 QApplication::setOrganizationDomain("http://www.sigrok.org");
56
f7951df4
JH
57 // Parse arguments
58 while (1) {
59 static const struct option long_options[] = {
60 {"version", no_argument, 0, 'V'},
d4384c6d 61 {"help", no_argument, 0, 'h'},
f7951df4
JH
62 {0, 0, 0, 0}
63 };
64
d4384c6d
JH
65 const char c = getopt_long(argc, argv,
66 "Vh?", long_options, NULL);
f7951df4
JH
67 if (c == -1)
68 break;
69
70 switch (c) {
71 case 'V':
72 // Print version info
73 fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
74 return 0;
d4384c6d
JH
75
76 case 'h':
77 case '?':
78 usage();
79 return 0;
f7951df4
JH
80 }
81 }
82
6a6772b7 83 // Initialise libsigrok
664fca5c
JH
84 if (sr_init() != SR_OK) {
85 qDebug() << "ERROR: libsigrok init failed.";
86 return 1;
87 }
88
6a6772b7 89 // Initialise libsigrokdecode
664fca5c
JH
90 if (srd_init(NULL) != SRD_OK) {
91 qDebug() << "ERROR: libsigrokdecode init failed.";
92 return 1;
93 }
94
6a6772b7 95 // Load the protocol decoders
664fca5c
JH
96 srd_decoder_load_all();
97
6a6772b7 98 // Initialize all libsigrok drivers
6fb67b27
JH
99 sr_dev_driver **const drivers = sr_driver_list();
100 for (sr_dev_driver **driver = drivers; *driver; driver++) {
101 if (sr_driver_init(*driver) != SR_OK) {
102 qDebug("Failed to initialize driver %s",
103 (*driver)->name);
104 return 1;
105 }
106 }
107
6a6772b7 108 // Initialise the main window
51e77110 109 pv::MainWindow w;
664fca5c
JH
110 w.show();
111
6a6772b7 112 // Run the application
664fca5c
JH
113 const int ret = a.exec();
114
6a6772b7 115 // Destroy libsigrokdecode and libsigrok
664fca5c
JH
116 srd_exit();
117 sr_exit();
118
119 return ret;
d7bed479 120}