]> sigrok.org Git - pulseview.git/blame - pv/toolbars/samplingbar.h
Adjust pv::toolbars::SamplingBar to GVariant-based sr_config_* functions
[pulseview.git] / pv / toolbars / samplingbar.h
CommitLineData
d4984fe7 1/*
b3f22de0 2 * This file is part of the PulseView project.
d4984fe7
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
f4c92e1c
JH
21#ifndef PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H
22#define PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H
d4984fe7 23
dde1a563
JH
24#include <stdint.h>
25
18203d86
JH
26#include <list>
27
6fb67b27 28#include <QComboBox>
dde1a563 29#include <QDoubleSpinBox>
d4984fe7 30#include <QToolBar>
dde1a563
JH
31#include <QToolButton>
32
18203d86 33struct st_dev_inst;
dde1a563 34class QAction;
d4984fe7 35
51e77110 36namespace pv {
f4c92e1c 37namespace toolbars {
51e77110 38
d4984fe7
JH
39class SamplingBar : public QToolBar
40{
41 Q_OBJECT
42
215f9499 43private:
09f5d123
JH
44 static const uint64_t RecordLengths[20];
45 static const uint64_t DefaultRecordLength;
215f9499 46
d4984fe7
JH
47public:
48 SamplingBar(QWidget *parent);
6fb67b27 49
18203d86
JH
50 void set_device_list(const std::list<struct sr_dev_inst*> &devices);
51
6fb67b27 52 struct sr_dev_inst* get_selected_device() const;
dba73e73 53 void set_selected_device(struct sr_dev_inst *const sdi);
18203d86 54
215f9499 55 uint64_t get_record_length() const;
6fb67b27 56
6ac96c2e
JH
57 void set_sampling(bool sampling);
58
274d4f13
JH
59signals:
60 void run_stop();
61
6fb67b27 62private:
dde1a563 63 void update_sample_rate_selector();
48888313
JH
64 void update_sample_rate_selector_value();
65 void commit_sample_rate();
dde1a563
JH
66
67private slots:
68 void on_device_selected();
48888313 69 void on_sample_rate_changed();
cdb50f67 70 void configure();
6fb67b27
JH
71
72private:
73 QComboBox _device_selector;
cdb50f67 74 QToolButton _configure_button;
dde1a563 75
215f9499
JH
76 QComboBox _record_length_selector;
77
dde1a563
JH
78 QComboBox _sample_rate_list;
79 QAction *_sample_rate_list_action;
80 QDoubleSpinBox _sample_rate_value;
81 QAction *_sample_rate_value_action;
274d4f13 82
f5798068
JH
83 QIcon _icon_green;
84 QIcon _icon_grey;
274d4f13 85 QToolButton _run_stop_button;
d4984fe7
JH
86};
87
f4c92e1c 88} // namespace toolbars
51e77110
JH
89} // namespace pv
90
f4c92e1c 91#endif // PULSEVIEW_PV_TOOLBARS_SAMPLINGBAR_H