Index: trunk/BNC/src/PPP/pppwidgets.cpp
===================================================================
--- trunk/BNC/src/PPP/pppwidgets.cpp	(revision 5702)
+++ trunk/BNC/src/PPP/pppwidgets.cpp	(revision 5703)
@@ -68,4 +68,6 @@
   _sigmaL1      = new QLineEdit();     _sigmaL1     ->setObjectName("PPP/sigmaL1");      _widgets << _sigmaL1;     
   _corrWaitTime = new QSpinBox();      _corrWaitTime->setObjectName("PPP/corrWaitTime"); _widgets << _corrWaitTime;
+  _addStaButton = new QPushButton("Add Station");                                        _widgets << _addStaButton;
+  _delStaButton = new QPushButton("Delete Station");                                     _widgets << _delStaButton;
   
   _dataSource->setEditable(false);
@@ -89,8 +91,15 @@
 
   _staTable->setColumnCount(9);
-  _staTable->setRowCount(10);
+  _staTable->setRowCount(0);
   _staTable->setHorizontalHeaderLabels(
      QString("Station,Sigma N,Sigma E,Sigma H,Noise N,Noise E,Noise H,Tropo Sigma,Tropo Noise").split(","));
-
+  _staTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
+  _staTable->setSelectionBehavior(QAbstractItemView::SelectRows);
+  _staTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
+  /// _staTable->horizontalHeader()->setStretchLastSection(true);
+  _staTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
+  
+  connect(_addStaButton, SIGNAL(clicked()), this, SLOT(slotAddStation()));
+  connect(_delStaButton, SIGNAL(clicked()), this, SLOT(slotDelStation()));
 
   readOptions();
@@ -200,2 +209,14 @@
   }
 }
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void t_pppWidgets::slotAddStation() {
+
+}
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void t_pppWidgets::slotDelStation() {
+
+}
Index: trunk/BNC/src/PPP/pppwidgets.h
===================================================================
--- trunk/BNC/src/PPP/pppwidgets.h	(revision 5702)
+++ trunk/BNC/src/PPP/pppwidgets.h	(revision 5703)
@@ -54,7 +54,11 @@
   QLineEdit*     _sigmaL1;
   QSpinBox*      _corrWaitTime;
+  QPushButton*   _addStaButton;
+  QPushButton*   _delStaButton;
 
  private slots:
   void slotEnableWidgets();  
+  void slotAddStation();
+  void slotDelStation();
 
  private:
