Index: trunk/GnssCenter/monitor/dlgconf.cpp
===================================================================
--- trunk/GnssCenter/monitor/dlgconf.cpp	(revision 5459)
+++ trunk/GnssCenter/monitor/dlgconf.cpp	(revision 5461)
@@ -27,4 +27,13 @@
 t_dlgConf::t_dlgConf(QWidget* parent) : QDialog(parent) {
 
+  _hostLineEdit = new QLineEdit;
+  _portLineEdit = new QLineEdit;
+
+  QFormLayout* formLayout = new QFormLayout;
+  formLayout->addRow("Host:", _hostLineEdit);
+  formLayout->addRow("Port:", _portLineEdit);
+
+  setLayout(formLayout);
+
   t_settings settings(pluginName);
   settings.setValue("host", "rtnet.rtcm-ntrip.org");
Index: trunk/GnssCenter/monitor/dlgconf.h
===================================================================
--- trunk/GnssCenter/monitor/dlgconf.h	(revision 5459)
+++ trunk/GnssCenter/monitor/dlgconf.h	(revision 5461)
@@ -13,4 +13,6 @@
   ~t_dlgConf();
  private:
+  QLineEdit* _hostLineEdit;
+  QLineEdit* _portLineEdit;
 };
 
