]> sigrok.org Git - pulseview.git/blobdiff - samplingbar.h
Add initial NSIS file for building a win installer.
[pulseview.git] / samplingbar.h
index e7738656b168c55fb60b50308e267ee28af57cc3..695c5aa064dc543c747e9105f279ec6ea72db49b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the PulseView project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
@@ -34,10 +34,14 @@ class SamplingBar : public QToolBar
 {
        Q_OBJECT
 
+private:
+       static const uint64_t RecordLengths[11];
+
 public:
        SamplingBar(QWidget *parent);
 
        struct sr_dev_inst* get_selected_device() const;
+       uint64_t get_record_length() const;
        uint64_t get_sample_rate() const;
 
 signals:
@@ -53,6 +57,8 @@ private slots:
 private:
        QComboBox _device_selector;
 
+       QComboBox _record_length_selector;
+
        QComboBox _sample_rate_list;
        QAction *_sample_rate_list_action;
        QDoubleSpinBox _sample_rate_value;