X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=3fcfcc776626130ab732b2dd23f2d6ba4d14babf;hp=fef53247deb71820a424050f899f31f7a297f350;hb=7a255aa9c51ebb41bb629f6d327560dcfa18433f;hpb=9b5099b654d1d631ef6f46b10f0d85b2994916d1 diff --git a/main.cpp b/main.cpp index fef5324..3fcfcc7 100644 --- a/main.cpp +++ b/main.cpp @@ -19,7 +19,6 @@ */ #include /* First, so we avoid a _POSIX_C_SOURCE warning. */ -#include #include #include @@ -28,13 +27,11 @@ #include #include +#include "signalhandler.h" #include "pv/mainwindow.h" #include "config.h" -// Global pointer to our QApplication -QApplication *g_app = NULL; - void usage() { fprintf(stdout, @@ -48,31 +45,13 @@ void usage() "\n", PV_BIN_NAME, PV_DESCRIPTION); } -/* - * SIGINT handler (likely received Ctrl-C from terminal) - */ -void sigint_handler(int param) -{ - (void)param; - - qDebug("Received SIGINT."); - - if (g_app) - g_app->quit(); -} - int main(int argc, char *argv[]) { int ret = 0; struct sr_context *sr_ctx = NULL; const char *open_file = NULL; - // Register a SIGINT handler - signal(SIGINT, sigint_handler); - QApplication a(argc, argv); - // Now we have an application to populate our global pointer - g_app = &a; // Set some application metadata QApplication::setApplicationVersion(PV_VERSION_STRING); @@ -148,6 +127,20 @@ int main(int argc, char *argv[]) pv::MainWindow w(open_file); w.show(); + if(SignalHandler::prepareSignals()) { + SignalHandler *const signalHandler = + new SignalHandler(&w); + QObject::connect(signalHandler, + SIGNAL(sigIntReceived()), + &w, SLOT(close())); + QObject::connect(signalHandler, + SIGNAL(sigTermReceived()), + &w, SLOT(close())); + } else { + qWarning() << + "Could not prepare signal handler."; + } + // Run the application ret = a.exec(); }