Changeset 1780 in ntrip
- Timestamp:
- Apr 8, 2009, 12:07:58 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r1779 r1780 32 32 bncnetqueryrtp.h bncsettings.h latencychecker.h \ 33 33 bncipport.h bncnetqueryv0.h bncnetqueryudp.h \ 34 bncnetqueryudp0.h 34 bncnetqueryudp0.h bncudpport.h \ 35 35 bncserialport.h bncnetquerys.h \ 36 36 RTCM/GPSDecoder.h RTCM/RTCM2.h RTCM/RTCM2Decoder.h \ … … 54 54 bncnetqueryrtp.cpp bncsettings.cpp latencychecker.cpp \ 55 55 bncipport.cpp bncnetqueryv0.cpp bncnetqueryudp.cpp \ 56 bncnetqueryudp0.cpp 56 bncnetqueryudp0.cpp bncudpport.cpp \ 57 57 bncserialport.cpp bncnetquerys.cpp \ 58 58 RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp \ -
trunk/BNC/bncipport.cpp
r1736 r1780 141 141 + _ipLatLineEdit->text() + " " 142 142 + _ipLonLineEdit->text() + " " 143 + " noN");143 + "N"); 144 144 } else { 145 145 QMessageBox::warning(this, tr("Warning"), -
trunk/BNC/bncwindow.cpp
r1751 r1780 47 47 #include "bnctabledlg.h" 48 48 #include "bncipport.h" 49 #include "bncudpport.h" 49 50 #include "bncserialport.h" 50 51 #include "bnchlpdlg.h" … … 827 828 msgBox.setText("Add stream(s) coming from:"); 828 829 829 QPushButton *buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole); 830 QPushButton *buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole); 831 QPushButton *buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole); 832 QPushButton *buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole); 830 QPushButton* buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole); 831 QPushButton* buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole); 832 QPushButton* buttonUDP = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole); 833 QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole); 834 QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole); 833 835 834 836 msgBox.exec(); … … 847 849 ipp->exec(); 848 850 delete ipp; 851 } else if (msgBox.clickedButton() == buttonUDP) { 852 bncUdpPort* udp = new bncUdpPort(this); 853 connect(udp, SIGNAL(newMountPoints(QStringList*)), 854 this, SLOT(slotNewMountPoints(QStringList*))); 855 udp->exec(); 856 delete udp; 849 857 } else if (msgBox.clickedButton() == buttonSerial) { 850 858 bncSerialPort* sep = new bncSerialPort(this);
Note:
See TracChangeset
for help on using the changeset viewer.