Changeset 4304 in ntrip


Ignore:
Timestamp:
Jun 23, 2012, 12:07:14 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r4278 r4304  
    25452545void bncWindow::slotFinishedPostProcessingPPP() {
    25462546  _runningPostProcessingPPP = false;
    2547   QMessageBox::information(this, "Information",
    2548                            "Post-Processing Thread Finished");
     2547  if (_reqcActionComboBox->currentText() != "Analyze") {
     2548    QMessageBox::information(this, "Information",
     2549                             "Post-Processing Thread Finished");
     2550  }
    25492551  _actStart->setText("Start");
    25502552  enableStartStop();
  • trunk/BNC/src/rinex/graphwin.cpp

    r4301 r4304  
    5454
    5555  int ww = QFontMetrics(font()).width('w');
     56  setMinimumSize(80*ww, 40*ww);
    5657
    57   _polarPlot = new t_polarPlot(this);
     58  // Multipath Plots
     59  // ---------------
     60  _plotMP1 = new t_polarPlot(this);
     61  _plotMP2 = new t_polarPlot(this);
    5862
    59   // Dialog Layout
    60   // -------------
    61   _buttonOK = new QPushButton(tr("OK / Save"), this);
     63  // Buttons
     64  // -------
     65  _buttonOK = new QPushButton(tr("OK"), this);
     66  _buttonOK->setMaximumWidth(10*ww);
    6267  connect(_buttonOK, SIGNAL(clicked()), this, SLOT(slotOK()));
     68
     69  // Layout
     70  // ------
     71  QHBoxLayout* plotLayout = new QHBoxLayout;
     72  plotLayout->addWidget(_plotMP1);
     73  plotLayout->addWidget(_plotMP2);
    6374
    6475  QHBoxLayout* buttonLayout = new QHBoxLayout;
     
    6677
    6778  QVBoxLayout* mainLayout = new QVBoxLayout(this);
    68   mainLayout->addWidget(_polarPlot);
     79  mainLayout->addLayout(plotLayout);
    6980  mainLayout->addLayout(buttonLayout);
    70 
    7181}
    7282
     
    8696////////////////////////////////////////////////////////////////////////////
    8797void t_graphWin::closeEvent(QCloseEvent* event) {
    88 
    89   int iRet = QMessageBox::question(this, "Close", "Close?",
    90                                    QMessageBox::Yes, QMessageBox::No,
    91                                    QMessageBox::Cancel);
    92 
    93   if      (iRet == QMessageBox::Cancel) {
    94     event->ignore();
    95     return;
    96   }
    97 
    9898  QDialog::closeEvent(event);
    9999}
  • trunk/BNC/src/rinex/graphwin.h

    r4301 r4304  
    4949  private:
    5050   QPushButton* _buttonOK;
    51    t_polarPlot* _polarPlot;
     51   t_polarPlot* _plotMP1;
     52   t_polarPlot* _plotMP2;
    5253};
    5354
Note: See TracChangeset for help on using the changeset viewer.