Changeset 464 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
May 27, 2007, 5:58:28 PM (17 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r463 r464  
    11// Part of BNC, a utility for retrieving decoding and
    2 // converting GNSS data streams from NTRIP broadcasters,
    3 // written by Leos Mervart.
     2// converting GNSS data streams from NTRIP broadcasters.
    43//
    5 // Copyright (C) 2006
     4// Copyright (C) 2007
    65// German Federal Agency for Cartography and Geodesy (BKG)
    76// http://www.bkg.bund.de
    8 // Czech Technical University Prague, Department of Advanced Geodesy
     7// Czech Technical University Prague, Department of Geodesy
    98// http://www.fsv.cvut.cz
    109//
     
    6160  setMinimumSize(77*ww, 65*ww);
    6261
    63   setWindowTitle(tr("BKG Ntrip Client (BNC), Version 1.2b"));
     62  setWindowTitle(tr("BKG Ntrip Client (BNC), Version 1.3"));
    6463
    6564  // Create Actions
     
    9695  _actwhatsthis= new QAction(tr("Help=Shift+F1"),this);
    9796  connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
    98 
    99 //_actwhatsthismenu= new QAction(tr("Help\tShift+F1"),this);
    100 //connect(_actwhatsthismenu, SIGNAL(triggered()), SLOT(slotWhatsThis()));
    10197
    10298  // Create Menus
     
    111107  _menuHlp = menuBar()->addMenu(tr("&Help"));
    112108  _menuHlp->addAction(_actHelp);
    113 //_menuHlp->addAction(_actwhatsthismenu);
    114109  _menuHlp->addAction(_actAbout);
    115110
     
    195190  _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
    196191  _mountPointsTable->setHorizontalHeaderLabels(labels);
    197 //  _mountPointsTable->horizontalHeader()->hide();
    198 //  _mountPointsTable->verticalHeader()->hide();
    199192  _mountPointsTable->setGridStyle(Qt::NoPen);
    200193  _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
     
    208201  while (it.hasNext()) {
    209202    QStringList hlp = it.next().split(" ");
    210     if (hlp.size() < 5) continue; // Check number of parameters saved per mountpoint
     203    if (hlp.size() < 5) continue;
    211204    _mountPointsTable->insertRow(iRow);
    212205
     
    259252          SLOT(slotSelectionChanged()));
    260253
    261 // Tab changes Focus on Log window Start Perlt
    262 //  _log = new QTextEdit();
    263254  _log = new QTextBrowser();
    264 // Tab changes Focus on Log window Ende Perlt
    265255  _log->setReadOnly(true);
    266256
     
    587577  img->setPixmap(QPixmap(":ntrip-logo.png"));
    588578  dlgLayout->addWidget(img, 0,0);
    589   dlgLayout->addWidget(new QLabel("BKG NTRIP Client (BNC), Version 1.2b"), 0,1);
     579  dlgLayout->addWidget(new QLabel("BKG NTRIP Client (BNC), Version 1.3"), 0,1);
    590580  dlgLayout->addWidget(tb,1,0,1,2);
    591581
Note: See TracChangeset for help on using the changeset viewer.