Changeset 399 in ntrip for trunk/BNC/bnctabledlg.cpp


Ignore:
Timestamp:
Feb 14, 2007, 2:10:12 PM (17 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnctabledlg.cpp

    r375 r399  
    9090  //  connect(_buttonSkl, SIGNAL(clicked()), this, SLOT(slotSkl()));
    9191
     92  _buttonWhatsThis = new QPushButton(tr("What's this?"), this);
     93  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
     94
    9295  _buttonGet = new QPushButton(tr("Get table"), this);
     96  _buttonGet->setDefault(true);
    9397  connect(_buttonGet, SIGNAL(clicked()), this, SLOT(slotGetTable()));
    9498 
     
    101105  QHBoxLayout* buttonLayout = new QHBoxLayout;
    102106  //  buttonLayout->addWidget(_buttonSkl);
     107  buttonLayout->addWidget(_buttonWhatsThis);
    103108  buttonLayout->addStretch(1);
    104109  buttonLayout->addWidget(_buttonGet);
     
    345350}
    346351
     352// Whats This Help
     353void bncTableDlg::slotWhatsThis() {
     354QWhatsThis::enterWhatsThisMode();
     355}
     356
     357
Note: See TracChangeset for help on using the changeset viewer.