Index: /trunk/BNC/bnc.pro
===================================================================
--- /trunk/BNC/bnc.pro	(revision 3739)
+++ /trunk/BNC/bnc.pro	(revision 3740)
@@ -46,5 +46,5 @@
           bnctides.h bncmap.h bncmapview.h bncantex.h                 \
           bncephuser.h bncoutf.h bncclockrinex.h bncsp3.h             \
-          bncbytescounter.h bncsslconfig.h                            \
+          bncbytescounter.h bncsslconfig.h teqcdlg.h                  \
           upload/bncrtnetdecoder.h upload/bncuploadcaster.h           \
           upload/bncrtnetuploadcaster.h upload/bnccustomtrafo.h       \
@@ -78,5 +78,5 @@
           bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp         \
           bncephuser.cpp bncoutf.cpp bncclockrinex.cpp bncsp3.cpp     \
-          bncbytescounter.cpp bncsslconfig.cpp                        \
+          bncbytescounter.cpp bncsslconfig.cpp teqcdlg.cpp            \
           upload/bncrtnetdecoder.cpp upload/bncuploadcaster.cpp       \
           upload/bncrtnetuploadcaster.cpp upload/bnccustomtrafo.cpp   \
Index: /trunk/BNC/bncwindow.cpp
===================================================================
--- /trunk/BNC/bncwindow.cpp	(revision 3739)
+++ /trunk/BNC/bncwindow.cpp	(revision 3740)
@@ -62,4 +62,5 @@
 #include "upload/bncephuploadcaster.h"
 #include "qtfilechooser.h"
+#include "teqcdlg.h"
 #ifdef USE_POSTPROCESSING
 #  include "rinex/bncpostprocess.h"
@@ -1003,4 +1004,7 @@
 
   teqcgroup->setLayout(teqcLayout);
+
+  connect(_teqcEditOptionButton, SIGNAL(clicked()), 
+          this, SLOT(slotTeqcEditOption()));
 
   // Combination
@@ -2397,2 +2401,10 @@
 }
 
+// Edit teqc-like editing options
+////////////////////////////////////////////////////////////////////////////
+void bncWindow::slotTeqcEditOption() {
+  teqcDlg* dlg = new teqcDlg(this);
+  dlg->move(this->pos().x()+50, this->pos().y()+50);
+  dlg->exec();
+  delete dlg;
+}
Index: /trunk/BNC/bncwindow.h
===================================================================
--- /trunk/BNC/bncwindow.h	(revision 3739)
+++ /trunk/BNC/bncwindow.h	(revision 3740)
@@ -92,4 +92,5 @@
     void slotSetUploadTrafo();
     void slotEnablePostProcessing();
+    void slotTeqcEditOption();
 
   protected:
Index: /trunk/BNC/teqcdlg.cpp
===================================================================
--- /trunk/BNC/teqcdlg.cpp	(revision 3740)
+++ /trunk/BNC/teqcdlg.cpp	(revision 3740)
@@ -0,0 +1,83 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program 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, version 2.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+/* -------------------------------------------------------------------------
+ * BKG NTRIP Client
+ * -------------------------------------------------------------------------
+ *
+ * Class:      teqcDlg
+ *
+ * Purpose:    Displays the teqc-like editing options
+ *
+ * Author:     L. Mervart
+ *
+ * Created:    28-Mar-2012
+ *
+ * Changes:    
+ *
+ * -----------------------------------------------------------------------*/
+
+#include <iostream>
+
+#include "teqcdlg.h"
+
+using namespace std;
+
+// Constructor
+////////////////////////////////////////////////////////////////////////////
+teqcDlg::teqcDlg(QWidget* parent) : QDialog(parent) {
+
+  setMinimumSize(600,400);
+  setWindowTitle(tr("Editing Options"));
+
+  QVBoxLayout* mainLayout = new QVBoxLayout(this);
+
+  int ww = QFontMetrics(font()).width('w');
+
+  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
+  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
+
+  _buttonOK = new QPushButton(tr("OK"), this);
+  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(slotOK()));
+
+  _buttonCancel = new QPushButton(tr("Cancel"), this);
+  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(cancel()));
+
+  QHBoxLayout* buttonLayout = new QHBoxLayout;
+  buttonLayout->addWidget(_buttonWhatsThis);
+  buttonLayout->addStretch(1);
+  buttonLayout->addWidget(_buttonOK);
+  buttonLayout->addWidget(_buttonCancel);
+
+  mainLayout->addLayout(buttonLayout);
+}
+
+// Destructor
+////////////////////////////////////////////////////////////////////////////
+teqcDlg::~teqcDlg() {
+  delete _buttonOK;
+  delete _buttonCancel;
+  delete _buttonWhatsThis;
+}
+
Index: /trunk/BNC/teqcdlg.h
===================================================================
--- /trunk/BNC/teqcdlg.h	(revision 3740)
+++ /trunk/BNC/teqcdlg.h	(revision 3740)
@@ -0,0 +1,51 @@
+// Part of BNC, a utility for retrieving decoding and
+// converting GNSS data streams from NTRIP broadcasters.
+//
+// Copyright (C) 2007
+// German Federal Agency for Cartography and Geodesy (BKG)
+// http://www.bkg.bund.de
+// Czech Technical University Prague, Department of Geodesy
+// http://www.fsv.cvut.cz
+//
+// Email: euref-ip@bkg.bund.de
+//
+// This program 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, version 2.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef TEQCDLG_H
+#define TEQCDLG_H
+
+#include <QtCore>
+#include <QtGui>
+
+#include "bncconst.h"
+
+class teqcDlg : public QDialog {
+
+  Q_OBJECT
+
+  public:
+    teqcDlg(QWidget* parent);
+    ~teqcDlg();
+
+  signals:
+
+  private slots:
+
+  private:
+    QPushButton* _buttonOK;
+    QPushButton* _buttonCancel;
+    QPushButton* _buttonWhatsThis;
+};
+
+#endif
