]> sigrok.org Git - pulseview.git/blobdiff - mainwindow.cpp
Added initial sampling support
[pulseview.git] / mainwindow.cpp
index d85c0a40e46e0604690cb62ab6ea5eefec04d11a..50847e2ac1268108b48ee1a0945c28966a39fcda 100644 (file)
@@ -28,6 +28,8 @@ extern "C" {
 
 #include "mainwindow.h"
 #include "ui_mainwindow.h"
+#include "samplingbar.h"
+#include "sigview.h"
 
 extern "C" {
 /* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
@@ -44,6 +46,14 @@ MainWindow::MainWindow(QWidget *parent) :
        ui(new Ui::MainWindow)
 {
        ui->setupUi(this);
+
+       _sampling_bar = new SamplingBar(this);
+       connect(_sampling_bar, SIGNAL(run_stop()), this,
+               SLOT(run_stop()));
+       addToolBar(_sampling_bar);
+
+       view = new SigView(session, this);
+       ui->verticalLayout->addWidget(view);
 }
 
 MainWindow::~MainWindow()
@@ -64,3 +74,10 @@ void MainWindow::on_actionAbout_triggered()
        About dlg(this);
        dlg.exec();
 }
+
+void MainWindow::run_stop()
+{
+       session.start_capture(
+               _sampling_bar->get_selected_device(),
+               _sampling_bar->get_sample_rate());
+}