Changeset 3740 in ntrip
- Timestamp:
- Mar 28, 2012, 12:15:46 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r3733 r3740 46 46 bnctides.h bncmap.h bncmapview.h bncantex.h \ 47 47 bncephuser.h bncoutf.h bncclockrinex.h bncsp3.h \ 48 bncbytescounter.h bncsslconfig.h 48 bncbytescounter.h bncsslconfig.h teqcdlg.h \ 49 49 upload/bncrtnetdecoder.h upload/bncuploadcaster.h \ 50 50 upload/bncrtnetuploadcaster.h upload/bnccustomtrafo.h \ … … 78 78 bnctides.cpp bncmap.cpp bncmapview.cpp bncantex.cpp \ 79 79 bncephuser.cpp bncoutf.cpp bncclockrinex.cpp bncsp3.cpp \ 80 bncbytescounter.cpp bncsslconfig.cpp 80 bncbytescounter.cpp bncsslconfig.cpp teqcdlg.cpp \ 81 81 upload/bncrtnetdecoder.cpp upload/bncuploadcaster.cpp \ 82 82 upload/bncrtnetuploadcaster.cpp upload/bnccustomtrafo.cpp \ -
trunk/BNC/bncwindow.cpp
r3739 r3740 62 62 #include "upload/bncephuploadcaster.h" 63 63 #include "qtfilechooser.h" 64 #include "teqcdlg.h" 64 65 #ifdef USE_POSTPROCESSING 65 66 # include "rinex/bncpostprocess.h" … … 1003 1004 1004 1005 teqcgroup->setLayout(teqcLayout); 1006 1007 connect(_teqcEditOptionButton, SIGNAL(clicked()), 1008 this, SLOT(slotTeqcEditOption())); 1005 1009 1006 1010 // Combination … … 2397 2401 } 2398 2402 2403 // Edit teqc-like editing options 2404 //////////////////////////////////////////////////////////////////////////// 2405 void 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 92 92 void slotSetUploadTrafo(); 93 93 void slotEnablePostProcessing(); 94 void slotTeqcEditOption(); 94 95 95 96 protected:
Note:
See TracChangeset
for help on using the changeset viewer.