source: ntrip/trunk/BNC/src/app.cpp@ 9538

Last change on this file since 9538 was 8898, checked in by stuerze, 4 years ago

minor changes

File size: 1.3 KB
Line 
1/* -------------------------------------------------------------------------
2 * GnssCenter
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_app
6 *
7 * Purpose: This class implements the main application
8 *
9 * Author: L. Mervart
10 *
11 * Created: 05-Jan-2013
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include "app.h"
18#include "bnccore.h"
19
20using namespace std;
21
22QCoreApplication* createApplication(int& argc, char* argv[], bool GUIenabled) {
23
24 if (GUIenabled) {
25 return new t_app(argc, argv);
26 }
27
28 return new QCoreApplication(argc, argv);
29}
30
31
32// Constructor
33////////////////////////////////////////////////////////////////////////////
34t_app::t_app(int& argc, char* argv[]) : QApplication(argc, argv) {
35 setWindowIcon(QPixmap(":ntrip-logo.png"));
36}
37
38// Destructor
39////////////////////////////////////////////////////////////////////////////
40t_app::~t_app() {
41}
42
43// Handling Events (virtual)
44////////////////////////////////////////////////////////////////////////////
45bool t_app::event(QEvent* ev) {
46
47 if (ev->type() == QEvent::FileOpen) { // currently happens on Mac only
48 QString fileName = static_cast<QFileOpenEvent*>(ev)->file();
49 BNC_CORE->setConfFileName(fileName);
50 return true;
51 }
52
53 return QApplication::event(ev);
54}
55
56
Note: See TracBrowser for help on using the repository browser.