Changeset 3740 in ntrip


Ignore:
Timestamp:
Mar 28, 2012, 12:15:46 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnc.pro

    r3733 r3740  
    4646          bnctides.h bncmap.h bncmapview.h bncantex.h                 \
    4747          bncephuser.h bncoutf.h bncclockrinex.h bncsp3.h             \
    48           bncbytescounter.h bncsslconfig.h                            \
     48          bncbytescounter.h bncsslconfig.h teqcdlg.h                  \
    4949          upload/bncrtnetdecoder.h upload/bncuploadcaster.h           \
    5050          upload/bncrtnetuploadcaster.h upload/bnccustomtrafo.h       \
     
    7878          bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp         \
    7979          bncephuser.cpp bncoutf.cpp bncclockrinex.cpp bncsp3.cpp     \
    80           bncbytescounter.cpp bncsslconfig.cpp                        \
     80          bncbytescounter.cpp bncsslconfig.cpp teqcdlg.cpp            \
    8181          upload/bncrtnetdecoder.cpp upload/bncuploadcaster.cpp       \
    8282          upload/bncrtnetuploadcaster.cpp upload/bnccustomtrafo.cpp   \
  • trunk/BNC/bncwindow.cpp

    r3739 r3740  
    6262#include "upload/bncephuploadcaster.h"
    6363#include "qtfilechooser.h"
     64#include "teqcdlg.h"
    6465#ifdef USE_POSTPROCESSING
    6566#  include "rinex/bncpostprocess.h"
     
    10031004
    10041005  teqcgroup->setLayout(teqcLayout);
     1006
     1007  connect(_teqcEditOptionButton, SIGNAL(clicked()),
     1008          this, SLOT(slotTeqcEditOption()));
    10051009
    10061010  // Combination
     
    23972401}
    23982402
     2403// Edit teqc-like editing options
     2404////////////////////////////////////////////////////////////////////////////
     2405void bncWindow::slotTeqcEditOption() {
     2406  teqcDlg* dlg = new teqcDlg(this);
     2407  dlg->move(this->pos().x()+50, this->pos().y()+50);
     2408  dlg->exec();
     2409  delete dlg;
     2410}
  • trunk/BNC/bncwindow.h

    r3738 r3740  
    9292    void slotSetUploadTrafo();
    9393    void slotEnablePostProcessing();
     94    void slotTeqcEditOption();
    9495
    9596  protected:
Note: See TracChangeset for help on using the changeset viewer.