X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsamplingbar.h;h=7034962c2a1a5593630815f632db53cd27ca155b;hp=446d98ed495fcf23e017f44c1ab98c3d7cf5706c;hb=dba73e734310f538bd19d709c95c5cbe7f453c0e;hpb=09f5d12376a4a9b1b1646fa79b53c81f33c1b862 diff --git a/pv/samplingbar.h b/pv/samplingbar.h index 446d98ed..7034962c 100644 --- a/pv/samplingbar.h +++ b/pv/samplingbar.h @@ -23,11 +23,14 @@ #include +#include + #include #include #include #include +struct st_dev_inst; class QAction; namespace pv { @@ -43,9 +46,12 @@ private: public: SamplingBar(QWidget *parent); + void set_device_list(const std::list &devices); + struct sr_dev_inst* get_selected_device() const; + void set_selected_device(struct sr_dev_inst *const sdi); + uint64_t get_record_length() const; - uint64_t get_sample_rate() const; void set_sampling(bool sampling); @@ -53,11 +59,13 @@ signals: void run_stop(); private: - void update_device_selector(); void update_sample_rate_selector(); + void update_sample_rate_selector_value(); + void commit_sample_rate(); private slots: void on_device_selected(); + void on_sample_rate_changed(); void configure(); private: