Changeset 10525 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Aug 19, 2024, 4:15:53 PM (3 months ago)
Author:
stuerze
Message:

replacement of obsolete qt-class members

Location:
trunk/BNC/src/rinex
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/graphwin.cpp

    r8566 r10525  
    6666  setWindowTitle(_fileName);
    6767
    68   int ww = QFontMetrics(font()).width('w');
     68  int ww = QFontMetrics(font()).horizontalAdvance('w');
    6969
    7070  // Buttons
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r10073 r10525  
    6666  _log             = 0;
    6767  _currEpo         = 0;
    68   _obsFileNames    = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
    69   _navFileNames    = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
     68  _obsFileNames    = settings.value("reqcObsFile").toString().split(",", Qt::SkipEmptyParts);
     69  _navFileNames    = settings.value("reqcNavFile").toString().split(",", Qt::SkipEmptyParts);
    7070  _reqcPlotSignals = settings.value("reqcSkyPlotSignals").toString();
    7171  _defaultSignalTypes << "G:1&2&5" << "R:1&2&3" << "J:1&2" << "E:1&5" << "S:1&5" << "C:2&6" << "I:5&9";
     
    149149void t_reqcAnalyze::analyzePlotSignals() {
    150150
    151   QStringList signalsOpt = _reqcPlotSignals.split(" ", QString::SkipEmptyParts);
     151  QStringList signalsOpt = _reqcPlotSignals.split(" ", Qt::SkipEmptyParts);
    152152
    153153  for (int ii = 0; ii < signalsOpt.size(); ii++) {
    154     QStringList input = signalsOpt.at(ii).split(QRegExp("[:&]"), QString::SkipEmptyParts);
     154    QStringList input = signalsOpt.at(ii).split(QRegExp("[:&]"), Qt::SkipEmptyParts);
    155155    if (input.size() > 1 && input[0].length() == 1) {
    156156      char        system   = input[0].toLatin1().constData()[0];
     
    582582      // Sort MP data (make the largest values always visible)
    583583      // -----------------------------------------------------
    584       qStableSort(dataMP._data->begin(), dataMP._data->end(), mpLessThan);
     584      std::stable_sort(dataMP._data->begin(), dataMP._data->end(), mpLessThan);
    585585    }
    586586  }
     
    718718    t_graphWin* graphWin = new t_graphWin(0, fileName, plots, true);
    719719
    720     int ww = QFontMetrics(graphWin->font()).width('w');
     720    int ww = QFontMetrics(graphWin->font()).horizontalAdvance('w');
    721721    graphWin->setMinimumSize(120*ww, 40*ww);
    722722
  • trunk/BNC/src/rinex/reqcedit.cpp

    r9945 r10525  
    5858  _logFile        = 0;
    5959  _log            = 0;
    60   _obsFileNames   = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
     60  _obsFileNames   = settings.value("reqcObsFile").toString().split(",", Qt::SkipEmptyParts);
    6161  _outObsFileName = settings.value("reqcOutObsFile").toString();
    62   _navFileNames   = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
     62  _navFileNames   = settings.value("reqcNavFile").toString().split(",", Qt::SkipEmptyParts);
    6363  _outNavFileName = settings.value("reqcOutNavFile").toString();
    6464  int version     = settings.value("reqcRnxVersion").toInt();
     
    108108  // ---------------
    109109  if (_log) {
    110     *_log << QByteArray(78, '-') << endl;
     110    *_log << QByteArray(78, '-') << '\n';
    111111    *_log << "RINEX File Editing\n";
    112     *_log << QByteArray(78, '-') << endl;
     112    *_log << QByteArray(78, '-') << '\n';
    113113
    114114    *_log << QByteArray("Program").leftJustified(15) << ": "
    115           << BNC_CORE->pgmName() << endl;
     115          << BNC_CORE->pgmName() << '\n';
    116116    *_log << QByteArray("Run by").leftJustified(15) << ": "
    117           << BNC_CORE->userName() << endl;
     117          << BNC_CORE->userName() << '\n';
    118118    *_log << QByteArray("Date").leftJustified(15) << ": "
    119           << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << endl;
     119          << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << '\n';
    120120    *_log << QByteArray("RINEX Version").leftJustified(15) << ": "
    121           << _rnxVersion << endl;
     121          << _rnxVersion << '\n';
    122122    *_log << QByteArray("Sampling").leftJustified(15) << ": "
    123           << _samplingRate << " sec" << endl;
     123          << _samplingRate << " sec" << '\n';
    124124    *_log << QByteArray("Start time").leftJustified(15) << ": "
    125125          << _begTime.datestr().c_str() << ' '
    126           << _begTime.timestr(0).c_str() << endl;
     126          << _begTime.timestr(0).c_str() << '\n';
    127127    *_log << QByteArray("End time").leftJustified(15) << ": "
    128128          << _endTime.datestr().c_str() << ' '
    129           << _endTime.timestr(0).c_str() << endl;
     129          << _endTime.timestr(0).c_str() << '\n';
    130130    *_log << QByteArray("Input Obs Files").leftJustified(15) << ": "
    131           << _obsFileNames.join(",") << endl;
     131          << _obsFileNames.join(",") << '\n';
    132132    *_log << QByteArray("Input Nav Files").leftJustified(15) << ": "
    133           << _navFileNames.join(",") << endl;
     133          << _navFileNames.join(",") << '\n';
    134134    *_log << QByteArray("Output Obs File").leftJustified(15) << ": "
    135           << _outObsFileName << endl;
     135          << _outObsFileName << '\n';
    136136    *_log << QByteArray("Output Nav File").leftJustified(15) << ": "
    137           << _outNavFileName << endl;
    138 
    139     *_log << QByteArray(78, '-') << endl;
     137          << _outNavFileName << '\n';
     138
     139    *_log << QByteArray(78, '-') << '\n';
    140140    _log->flush();
    141141  }
     
    186186          delete rnxObsFile;
    187187          if (log) {
    188             *log << "Error in rnxObsFile " << filePath.toLatin1().data() << endl;
     188            *log << "Error in rnxObsFile " << filePath.toLatin1().data() << '\n';
    189189          }
    190190        }
     
    199199      catch (...) {
    200200        if (log) {
    201           *log << "Error in rnxObsFile " << fileName.toLatin1().data() << endl;
    202         }
    203       }
    204     }
    205   }
    206   qStableSort(rnxObsFiles.begin(), rnxObsFiles.end(),
     201          *log << "Error in rnxObsFile " << fileName.toLatin1().data() << '\n';
     202        }
     203      }
     204    }
     205  }
     206  std::stable_sort(rnxObsFiles.begin(), rnxObsFiles.end(),
    207207              t_rnxObsFile::earlierStartTime);
    208208}
     
    242242  // ------------------------
    243243  bncSettings settings;
    244   QStringList useObsTypes = settings.value("reqcUseObsTypes").toString().split(" ", QString::SkipEmptyParts);
     244  QStringList useObsTypes = settings.value("reqcUseObsTypes").toString().split(" ", Qt::SkipEmptyParts);
    245245
    246246  // Put together all observation types
     
    318318      *_log << "Processing File: " << obsFile->fileName() << "  start: "
    319319            << obsFile->startTime().datestr().c_str() << ' '
    320             << obsFile->startTime().timestr(0).c_str() << endl;
     320            << obsFile->startTime().timestr(0).c_str() << '\n';
    321321    }
    322322    if (ii == 0) {
     
    367367    catch (QString str) {
    368368      if (_log) {
    369         *_log << "Exception " << str << endl;
     369        *_log << "Exception " << str << '\n';
    370370      }
    371371      else {
     
    376376    catch (...) {
    377377      if (_log) {
    378         *_log << "Exception unknown" << endl;
     378        *_log << "Exception unknown" << '\n';
    379379      }
    380380      else {
     
    540540  }
    541541  // TODO: enable user decision
    542   qStableSort(ephs.begin(), ephs.end(), t_eph::earlierTime);
    543   //qStableSort(ephs.begin(), ephs.end(), t_eph::prnSort);
     542  std::stable_sort(ephs.begin(), ephs.end(), t_eph::earlierTime);
     543  //std::stable_sort(ephs.begin(), ephs.end(), t_eph::prnSort);
    544544}
    545545
     
    785785        QString preferredAttrib;
    786786        if (preferredAttribListSys[ii].indexOf("&") != -1) {
    787           QStringList hlp = preferredAttribListSys[ii].split("&", QString::SkipEmptyParts);
     787          QStringList hlp = preferredAttribListSys[ii].split("&", Qt::SkipEmptyParts);
    788788          if (hlp.size() == 2 && hlp[0].contains(band)) {
    789789            preferredAttrib = hlp[1];
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r10318 r10525  
    158158    }
    159159
    160     QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
     160    QStringList hlp = line.split(QRegExp("\\s+"), Qt::SkipEmptyParts);
    161161    QString firstStr = hlp.at(0);
    162162    QString prn;
     
    243243      eph = new t_ephGPS(version(), lines);
    244244    }
    245    
     245
    246246    if (version() >= 4.0) {
    247247      if (eph->setNavType(navTypeStr) != success) {
     
    250250      }
    251251    }
    252    
     252
    253253    if (eph) {
    254254      _ephs.push_back(eph);
     
    317317      }
    318318      else if (it.key() == "RUN BY DATE") {
    319           runByDate = it.value().split("\\n", QString::SkipEmptyParts);
     319          runByDate = it.value().split("\\n", Qt::SkipEmptyParts);
    320320      }
    321321      else if (it.key() == "COMMENT") {
    322         comments = it.value().split("\\n", QString::SkipEmptyParts);
     322        comments = it.value().split("\\n", Qt::SkipEmptyParts);
    323323      }
    324324    }
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r9963 r10525  
    505505    for (int iType = 0; iType < useObsTypes->size(); iType++) {
    506506      if (useObsTypes->at(iType).indexOf(":") != -1) {
    507         QStringList hlp = useObsTypes->at(iType).split(":", QString::SkipEmptyParts);
     507        QStringList hlp = useObsTypes->at(iType).split(":", Qt::SkipEmptyParts);
    508508        if (hlp.size() == 2 && hlp[0].length() == 1) {
    509509          if (_version >= 3.0) {
     
    551551    else {
    552552      foreach (const QString &str, *phaseShifts) {
    553         QStringList hlp  = str.split("_", QString::SkipEmptyParts);
    554         QStringList hlp1 = hlp.last().split(":", QString::SkipEmptyParts);
     553        QStringList hlp  = str.split("_", Qt::SkipEmptyParts);
     554        QStringList hlp1 = hlp.last().split(":", Qt::SkipEmptyParts);
    555555        QString type = hlp.first();
    556556        double shift = hlp1.first().toDouble();
     
    577577    else {
    578578      foreach (const QString &str, *gloBiases) {
    579         QStringList hlp = str.split(":", QString::SkipEmptyParts);
     579        QStringList hlp = str.split(":", Qt::SkipEmptyParts);
    580580        QString type = hlp.first();;
    581581        double  value = hlp.last().toDouble();
     
    590590    else {
    591591      foreach (const QString &str, *gloSlots) {
    592         QStringList hlp = str.split(":", QString::SkipEmptyParts);
     592        QStringList hlp = str.split(":", Qt::SkipEmptyParts);
    593593        QString sat = hlp.first();
    594594        int    slot = hlp.last().toInt();
     
    631631      }
    632632      else if (it.key() == "RUN BY DATE") {
    633           runByDate = it.value().split("\\n", QString::SkipEmptyParts);
     633          runByDate = it.value().split("\\n", Qt::SkipEmptyParts);
    634634      }
    635635      else if ((it.key().indexOf("COMMENT")) != -1) {
    636         newComments += it.value().split("\\n", QString::SkipEmptyParts);
     636        newComments += it.value().split("\\n", Qt::SkipEmptyParts);
    637637      }
    638638    }
     
    14091409    const t_rnxSat& rnxSat = epo->rnxSat[iSat];
    14101410    if (iSat > 0 && iSat % 12 == 0) {
    1411       *stream << endl << QString().leftJustified(32);
     1411      *stream << '\n' << QString().leftJustified(32);
    14121412    }
    14131413    *stream << rnxSat.prn.toString().c_str();
    14141414  }
    1415   *stream << endl;
     1415  *stream << '\n';
    14161416
    14171417  for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
     
    14201420    for (int iTypeV2 = 0; iTypeV2 < header.nTypes(sys); iTypeV2++) {
    14211421      if (iTypeV2 > 0 && iTypeV2 % 5 == 0) {
    1422         *stream << endl;
     1422        *stream << '\n';
    14231423      }
    14241424      QString typeV2 = header.obsType(sys, iTypeV2);
     
    14281428      for (int ii = 0; ii < preferredAttribList.size(); ii++) {
    14291429        if (preferredAttribList[ii].indexOf("&") != -1) {
    1430           QStringList hlp = preferredAttribList[ii].split("&", QString::SkipEmptyParts);
     1430          QStringList hlp = preferredAttribList[ii].split("&", Qt::SkipEmptyParts);
    14311431          if (hlp.size() == 2 && hlp[0].contains(typeV2[1])) {
    14321432            preferredAttrib = hlp[1];
     
    14761476      }
    14771477    }
    1478     *stream << endl;
     1478    *stream << '\n';
    14791479  }
    14801480}
     
    15591559        }
    15601560      }
    1561       *stream << endl;
     1561      *stream << '\n';
    15621562    }
    15631563  }
     
    16771677  // ---------------------------------------------------
    16781678  if (reqcAction == "Edit/Concatenate") {
    1679     priorList = settings.value("reqcV2Priority").toString().split(" ", QString::SkipEmptyParts);
     1679    priorList = settings.value("reqcV2Priority").toString().split(" ", Qt::SkipEmptyParts);
    16801680  }
    16811681
     
    16831683  // ----------------------------
    16841684  else {
    1685     priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts);
     1685    priorList = settings.value("rnxV2Priority").toString().split(" ", Qt::SkipEmptyParts);
    16861686  }
    16871687
     
    16891689  for (int ii = 0; ii < priorList.size(); ii++) {
    16901690    if (priorList[ii].indexOf(":") != -1) {
    1691       QStringList hlp = priorList[ii].split(":", QString::SkipEmptyParts);
     1691      QStringList hlp = priorList[ii].split(":", Qt::SkipEmptyParts);
    16921692      if (hlp.size() == 2 && hlp[0].length() == 1 && hlp[0][0] == sys) {
    16931693        result.append(hlp[1]);
Note: See TracChangeset for help on using the changeset viewer.