]> sigrok.org Git - pulseview.git/blame - pv/samplingbar.h
Added a binding for SR_CONF_SAMPLERATE
[pulseview.git] / pv / 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
640d091b
UH
21#ifndef PULSEVIEW_PV_SAMPLINGBAR_H
22#define PULSEVIEW_PV_SAMPLINGBAR_H
d4984fe7 23
dde1a563
JH
24#include <stdint.h>
25
6fb67b27 26#include <QComboBox>
dde1a563 27#include <QDoubleSpinBox>
d4984fe7 28#include <QToolBar>
dde1a563
JH
29#include <QToolButton>
30
31class QAction;
d4984fe7 32
51e77110
JH
33namespace pv {
34
d4984fe7
JH
35class SamplingBar : public QToolBar
36{
37 Q_OBJECT
38
215f9499 39private:
09f5d123
JH
40 static const uint64_t RecordLengths[20];
41 static const uint64_t DefaultRecordLength;
215f9499 42
d4984fe7
JH
43public:
44 SamplingBar(QWidget *parent);
6fb67b27
JH
45
46 struct sr_dev_inst* get_selected_device() const;
215f9499 47 uint64_t get_record_length() const;
dde1a563 48 uint64_t get_sample_rate() const;
6fb67b27 49
6ac96c2e
JH
50 void set_sampling(bool sampling);
51
274d4f13
JH
52signals:
53 void run_stop();
54
6fb67b27
JH
55private:
56 void update_device_selector();
dde1a563
JH
57 void update_sample_rate_selector();
58
59private slots:
60 void on_device_selected();
cdb50f67 61 void configure();
6fb67b27
JH
62
63private:
64 QComboBox _device_selector;
cdb50f67 65 QToolButton _configure_button;
dde1a563 66
215f9499
JH
67 QComboBox _record_length_selector;
68
dde1a563
JH
69 QComboBox _sample_rate_list;
70 QAction *_sample_rate_list_action;
71 QDoubleSpinBox _sample_rate_value;
72 QAction *_sample_rate_value_action;
274d4f13 73
f5798068
JH
74 QIcon _icon_green;
75 QIcon _icon_grey;
274d4f13 76 QToolButton _run_stop_button;
d4984fe7
JH
77};
78
51e77110
JH
79} // namespace pv
80
640d091b 81#endif // PULSEVIEW_PV_SAMPLINGBAR_H