X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=2c6a59efd22c8d14d181223c45c1abc92279e9d4;hp=b72fc70c46b38320b25179b593ef0b5afc05f762;hb=7cc05d0295b41755e38ecad57860582ea9c13e86;hpb=d52d8455db515a779b4451c223ba7aaded70951a diff --git a/main.cpp b/main.cpp index b72fc70c..2c6a59ef 100644 --- a/main.cpp +++ b/main.cpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifdef ENABLE_SIGROKDECODE -#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#ifdef ENABLE_DECODE +#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ #endif #include @@ -30,11 +30,21 @@ #include #include +#ifdef ENABLE_SIGNALS #include "signalhandler.h" +#endif + +#include "pv/devicemanager.h" #include "pv/mainwindow.h" #include "config.h" +#ifdef _WIN32 +// The static qsvg lib is required for SVG graphics/icons (on Windows). +#include +Q_IMPORT_PLUGIN(qsvg) +#endif + void usage() { fprintf(stdout, @@ -81,7 +91,7 @@ int main(int argc, char *argv[]) const int loglevel = atoi(optarg); sr_log_loglevel_set(loglevel); -#ifdef ENABLE_SIGROKDECODE +#ifdef ENABLE_DECODE srd_log_loglevel_set(loglevel); #endif @@ -114,7 +124,7 @@ int main(int argc, char *argv[]) do { -#ifdef ENABLE_SIGROKDECODE +#ifdef ENABLE_DECODE // Initialise libsigrokdecode if (srd_init(NULL) != SRD_OK) { qDebug() << "ERROR: libsigrokdecode init failed."; @@ -125,22 +135,15 @@ int main(int argc, char *argv[]) srd_decoder_load_all(); #endif - // Initialize all libsigrok drivers - sr_dev_driver **const drivers = sr_driver_list(); - for (sr_dev_driver **driver = drivers; *driver; driver++) { - if (sr_driver_init(sr_ctx, *driver) != SR_OK) { - qDebug("Failed to initialize driver %s", - (*driver)->name); - ret = 1; - break; - } - } + try { + // Create the device manager, initialise the drivers + pv::DeviceManager device_manager(sr_ctx); - if (ret == 0) { // Initialise the main window - pv::MainWindow w(open_file); + pv::MainWindow w(device_manager, open_file); w.show(); +#ifdef ENABLE_SIGNALS if(SignalHandler::prepare_signals()) { SignalHandler *const handler = new SignalHandler(&w); @@ -154,12 +157,16 @@ int main(int argc, char *argv[]) qWarning() << "Could not prepare signal handler."; } +#endif // Run the application ret = a.exec(); + + } catch(std::exception e) { + qDebug() << e.what(); } -#ifdef ENABLE_SIGROKDECODE +#ifdef ENABLE_DECODE // Destroy libsigrokdecode srd_exit(); #endif