X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=bb95f9ba4ef8e0e0ad9467ba6e8b0829b847e901;hp=af81536712484a82ae8118a7628f14defcd9cdf3;hb=30236a549137e5f183e19fb696c50d7150fc1124;hpb=d7bed479b0f4d152e6fd08a3fb219bcba32f9586 diff --git a/main.cpp b/main.cpp index af815367..bb95f9ba 100644 --- a/main.cpp +++ b/main.cpp @@ -18,14 +18,50 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +extern "C" { +#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include +#include +} + #include +#include #include "mainwindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); + + /* Set some application metadata. */ + QApplication::setApplicationVersion(APP_VERSION); + QApplication::setApplicationName("sigrok-qt"); + QApplication::setOrganizationDomain("http://www.sigrok.org"); + + /* Initialise libsigrok */ + if (sr_init() != SR_OK) { + qDebug() << "ERROR: libsigrok init failed."; + return 1; + } + + /* Initialise libsigrokdecode */ + if (srd_init(NULL) != SRD_OK) { + qDebug() << "ERROR: libsigrokdecode init failed."; + return 1; + } + + /* Load the protocol decoders */ + srd_decoder_load_all(); + + /* Initialise the main window */ MainWindow w; w.show(); - return a.exec(); + /* Run the application */ + const int ret = a.exec(); + + /* Destroy libsigrokdecode and libsigrok */ + srd_exit(); + sr_exit(); + + return ret; }