/* -*- c++ -*- */ /* * Copyright 2011-2012 Alexandru Csete OZ9AEC. * * Gqrx is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * Gqrx is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Gqrx; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #include #include #include #include #include "qtgui/ioconfig.h" #include "mainwindow.h" #include "gqrx.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); QCoreApplication::setOrganizationName(GQRX_ORG_NAME); QCoreApplication::setOrganizationDomain(GQRX_ORG_DOMAIN); QCoreApplication::setApplicationName(GQRX_APP_NAME); QCoreApplication::setApplicationVersion(VERSION); QString indev = CIoConfig::getFcdDeviceName(); if (indev.isEmpty()) { QMessageBox::critical(NULL, "Gqrx error", "Funcube Dongle could not be found

" "Please ensure that the Funcube Dongle is plugged in " "and properly configured with the latest firmware, " "then try again.", QMessageBox::Close); return 0; } // We should now have at least an input device configured // and MainWindow will pick that up. MainWindow w; w.show(); return a.exec(); }