Ignore:
Timestamp:
Sep 15, 2013, 9:58:01 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5453 r5455  
    2929
    3030#include "monitor.h"
     31#include "dlgconf.h"
    3132#include "utils.h"
    3233#include "worldplot.h"
     
    5657  addToolBar(Qt::BottomToolBarArea, toolBar);
    5758
    58   QAction* actStartThrift = new QAction("Start Thrift", 0);
    59   toolBar->addAction(actStartThrift);
    60   connect(actStartThrift, SIGNAL(triggered()), this, SLOT(slotStartThrift()));
     59  _actConfig = new QAction("Config", 0);
     60  toolBar->addAction(_actConfig);
     61  connect(_actConfig, SIGNAL(triggered()), this, SLOT(slotConfig()));
    6162
    62   QAction* actStopThrift = new QAction("Stop Thrift", 0);
    63   toolBar->addAction(actStopThrift);
    64   connect(actStopThrift, SIGNAL(triggered()), this, SLOT(slotStopThrift()));
     63  _actStartThrift = new QAction("Start", 0);
     64  toolBar->addAction(_actStartThrift);
     65  connect(_actStartThrift, SIGNAL(triggered()), this, SLOT(slotStartThrift()));
     66
     67  _actStopThrift = new QAction("Stop", 0);
     68  toolBar->addAction(_actStopThrift);
     69  connect(_actStopThrift, SIGNAL(triggered()), this, SLOT(slotStopThrift()));
    6570
    6671  // Host and Port
     
    8893    delete _results;
    8994  }
     95}
     96
     97//
     98/////////////////////////////////////////////////////////////////////////////
     99void t_monitor::slotConfig() {
     100  t_dlgConf dlg(this);
     101  dlg.exec();
    90102}
    91103
Note: See TracChangeset for help on using the changeset viewer.