X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=mainwindow.cpp;h=04f852d92fe053f85b2be6815bc43a567dc6fe7f;hp=10ef301388536f8668de1deddc3d24d33c5f7864;hb=d4984fe7119c2fc9bf94b13cc38cc735887e377d;hpb=438440ea9d4631a18b5fa95b0aefec9894c39c9b diff --git a/mainwindow.cpp b/mainwindow.cpp index 10ef3013..04f852d9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -28,6 +28,7 @@ extern "C" { #include "mainwindow.h" #include "ui_mainwindow.h" +#include "samplingbar.h" #include "sigview.h" extern "C" { @@ -46,6 +47,9 @@ MainWindow::MainWindow(QWidget *parent) : { ui->setupUi(this); + _sampling_bar = new SamplingBar(this); + addToolBar(_sampling_bar); + view = new SigView(session, this); ui->verticalLayout->addWidget(view); }