Index: trunk/BNC/bncsettings.cpp
===================================================================
--- trunk/BNC/bncsettings.cpp	(revision 2793)
+++ trunk/BNC/bncsettings.cpp	(revision 2794)
@@ -90,4 +90,5 @@
     setValue("pppEstTropo",      "");
     setValue("pppGLONASS",       "");
+    setValue("pppGalileo",       "");
     setValue("pppPlotCoordinates", "");
     setValue("pppRefCrdX",       "");
Index: trunk/BNC/bncwindow.cpp
===================================================================
--- trunk/BNC/bncwindow.cpp	(revision 2793)
+++ trunk/BNC/bncwindow.cpp	(revision 2794)
@@ -368,4 +368,7 @@
   _pppGLONASSCheckBox->setCheckState(Qt::CheckState(
                                     settings.value("pppGLONASS").toInt()));
+  _pppGalileoCheckBox = new QCheckBox();
+  _pppGalileoCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("pppGalileo").toInt()));
 
   _pppPlotCoordinates = new QCheckBox();
@@ -470,4 +473,5 @@
   _pppEstTropoCheckBox->setWhatsThis(tr("<p>By default BNC does not introduce troposphere parameters when estimating coordinates.</p><p>Tick 'Estimate tropo' to introduce troposphere parameters when estimating coordinates.</p>"));
   _pppGLONASSCheckBox->setWhatsThis(tr("<p>By default BNC does not use GLONASS observations in PPP mode.</p><p>Tick 'Use GLONASS' for a combined processing of both, GPS and GLONASS observations in PPP mode.</p>"));
+  _pppGalileoCheckBox->setWhatsThis(tr("<p>By default BNC does not use Galileo observations in PPP mode.</p><p>Tick 'Use Galileo' for a combined processing of both, GPS and Galileo observations in PPP mode.</p>"));
   _pppPlotCoordinates->setWhatsThis(tr("<p>PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when this option is selected. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.</p><p>Note that a PPP time series makes only sense for a stationary operated receiver."));
   _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>"));
@@ -748,6 +752,8 @@
   pppLayout->addWidget(_pppGLONASSCheckBox,                  1, 5, Qt::AlignRight);
   pppLayout->addWidget(new QLabel("Use GLONASS"),            1, 6);
-  pppLayout->addWidget(_pppPlotCoordinates,                  1, 7, Qt::AlignRight);
-  pppLayout->addWidget(new QLabel("PPP Plot               "),1, 8);
+  pppLayout->addWidget(_pppGalileoCheckBox,                  1, 7, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("Use Galileo"),            1, 8);
+  pppLayout->addWidget(_pppPlotCoordinates,                  1, 9, Qt::AlignRight);
+  pppLayout->addWidget(new QLabel("PPP Plot               "),1,10);
   pppLayout->addWidget(new QLabel("Options cont'd"),         2, 0);  
   pppLayout->addWidget(_pppSigCLineEdit,                     2, 1, Qt::AlignRight);
@@ -1102,4 +1108,5 @@
   settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState());
   settings.setValue("pppGLONASS",  _pppGLONASSCheckBox->checkState());
+  settings.setValue("pppGalileo",  _pppGalileoCheckBox->checkState());
   settings.setValue("mountPoints", mountPoints);
   settings.setValue("obsRate",     _obsRateComboBox->currentText());
@@ -1653,4 +1660,5 @@
       _pppEstTropoCheckBox->setPalette(palette_white);
       _pppGLONASSCheckBox->setPalette(palette_white);
+      _pppGalileoCheckBox->setPalette(palette_white);
       _pppSPPComboBox->setEnabled(true);
       _pppNMEALineEdit->setEnabled(true);
@@ -1663,4 +1671,5 @@
       _pppEstTropoCheckBox->setEnabled(true);
       _pppGLONASSCheckBox->setEnabled(true);
+      _pppGalileoCheckBox->setEnabled(true);
       _pppRefCrdXLineEdit->setPalette(palette_white);
       _pppRefCrdXLineEdit->setEnabled(true);
@@ -1723,4 +1732,5 @@
       _pppEstTropoCheckBox->setPalette(palette_gray);
       _pppGLONASSCheckBox->setPalette(palette_gray);
+      _pppGalileoCheckBox->setPalette(palette_gray);
       _pppSigCLineEdit->setPalette(palette_gray);
       _pppSigPLineEdit->setPalette(palette_gray);
@@ -1741,4 +1751,5 @@
       _pppEstTropoCheckBox->setEnabled(false);
       _pppGLONASSCheckBox->setEnabled(false);
+      _pppGalileoCheckBox->setEnabled(false);
       _pppSigCLineEdit->setEnabled(false);
       _pppSigPLineEdit->setEnabled(false);
Index: trunk/BNC/bncwindow.h
===================================================================
--- trunk/BNC/bncwindow.h	(revision 2793)
+++ trunk/BNC/bncwindow.h	(revision 2794)
@@ -131,4 +131,5 @@
     QCheckBox* _pppEstTropoCheckBox;
     QCheckBox* _pppGLONASSCheckBox;
+    QCheckBox* _pppGalileoCheckBox;
     QCheckBox* _rnxV3CheckBox;
     QCheckBox* _ephV3CheckBox;
