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

Last change on this file since 5073 was 5073, checked in by mervart, 11 years ago
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
22// Global Variable
23////////////////////////////////////////////////////////////////////////////
24t_bncCore* BNC_CORE = 0;
25
26// Constructor
27////////////////////////////////////////////////////////////////////////////
28t_app::t_app(int& argc, char* argv[], bool GUIenabled) :
29 QApplication(argc, argv, GUIenabled) {
30 BNC_CORE = new t_bncCore(argc, argv, GUIenabled);
31}
32
33// Destructor
34////////////////////////////////////////////////////////////////////////////
35t_app::~t_app() {
36}
37
38// Handling Events (virtual)
39////////////////////////////////////////////////////////////////////////////
40bool t_app::event(QEvent* ev) {
41
42 if (ev->type() == QEvent::FileOpen) { // currently happens on Mac only
43 QString fileName = static_cast<QFileOpenEvent*>(ev)->file();
44 BNC_CORE->setConfFileName(fileName);
45 return true;
46 }
47
48 return QApplication::event(ev);
49}
50
Note: See TracBrowser for help on using the repository browser.