Changeset 1173 in ntrip


Ignore:
Timestamp:
Oct 27, 2008, 4:20:52 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r1171 r1173  
    193193
    194194  getThread->start();
     195
     196  emit newGetThread(getThread);
    195197}
    196198
  • trunk/BNC/bnccaster.h

    r1170 r1173  
    4848
    4949 signals:
     50   void newGetThread(bncGetThread* thread);
    5051   void getThreadErrors();   
    5152   void newMessage(QByteArray msg);
  • trunk/BNC/bncwindow.cpp

    r1172 r1173  
    681681          this, SLOT(slotGetThreadErrors()));
    682682
     683  connect (_caster, SIGNAL(newGetThread(bncGetThread*)),
     684           this, SLOT(slotNewGetThread(bncGetThread*)));
     685
    683686  _caster->slotReadMountpoints();
    684687
     
    779782// Whats This Help
    780783void bncWindow::slotWhatsThis() {
    781 QWhatsThis::enterWhatsThisMode();
    782 }
    783 
     784  QWhatsThis::enterWhatsThisMode();
     785}
     786
     787//
     788////////////////////////////////////////////////////////////////////////////
     789void bncWindow::slotNewGetThread(bncGetThread* thread) {
     790//  connect(thread, SIGNAL(newBytes(QByteArray, double)),
     791//          (bncTableItem*) _mountPointsTable->item(iRow, 6),
     792//          SLOT(slotNewBytes(QByteArray, double)));
     793}
     794
     795//
     796////////////////////////////////////////////////////////////////////////////
    784797void bncWindow::CreateMenu() {
    785798  // Create Menus
     
    798811}
    799812
     813//
     814////////////////////////////////////////////////////////////////////////////
    800815void bncWindow::AddToolbar() {
    801816  // Tool (Command) Bar
     
    812827}
    813828
     829//
     830////////////////////////////////////////////////////////////////////////////
    814831bncAboutDlg::bncAboutDlg(QWidget* parent) :
    815832   QDialog(parent) {
     
    838855}
    839856
     857//
     858////////////////////////////////////////////////////////////////////////////
    840859bncAboutDlg::~bncAboutDlg() {
    841860};
    842861
     862//
     863////////////////////////////////////////////////////////////////////////////
    843864bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) :
    844865   QDialog(parent) {
     
    859880}
    860881
     882//
     883////////////////////////////////////////////////////////////////////////////
    861884bncFlowchartDlg::~bncFlowchartDlg() {
    862885};
  • trunk/BNC/bncwindow.h

    r1172 r1173  
    5858 
    5959  public slots: 
     60    void slotNewGetThread(bncGetThread* thread);
    6061
    6162  private slots:
Note: See TracChangeset for help on using the changeset viewer.